Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for [xss] (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

            String malicious = "<a href=\"#\" onclick=\"alert('XSS')\">Click</a>";
            String result = markdownRenderer.render(malicious);
            // onclick attribute should be removed
            assertFalse(result.contains("onclick"));
        }
    
        @Test
        public void test_render_xss_javascriptProtocol() {
            String malicious = "[Click me](javascript:alert('XSS'))";
            String result = markdownRenderer.render(malicious);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

        }
    
        @Test
        public void test_escapeHtml_scriptTag() {
            assertEquals("&lt;script&gt;alert(&#39;xss&#39;)&lt;/script&gt;", chatClient.testEscapeHtml("<script>alert('xss')</script>"));
        }
    
        // ========== buildGoUrl tests ==========
    
        @Test
        public void test_buildGoUrl_basic() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

       * locally.
       *
       * @since 24.1
       */
      public static final String X_DOWNLOAD_OPTIONS = "X-Download-Options";
    
      /** The HTTP {@code X-XSS-Protection} header field name. */
      public static final String X_XSS_PROTECTION = "X-XSS-Protection";
    
      /**
       * The HTTP <a
       * href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control">{@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 24 14:36:23 GMT 2026
    - 35.6K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    * Update kubectl help for 1.2 resources ([#23305](https://github.com/kubernetes/kubernetes/pull/23305), [@janetkuo](https://github.com/janetkuo))
    * Removing URL query param from swagger UI to fix the XSS issue ([#23234](https://github.com/kubernetes/kubernetes/pull/23234), [@nikhiljindal](https://github.com/nikhiljindal))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Click Count (0)
Back to Top