Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for setPath (0.03 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                if (responseData != null) {
                    dataMap.put("url", responseData.getUrl());
                }
                dataMap.put("content", "test content");
                resultData.setData(dataMap.toString().getBytes());
                return resultData;
            }
    
            @Override
            public String getName() {
                return "TestTransformer";
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     *
     * ```java
     * String attack = "http://example.com/static/images/../../../../../etc/passwd";
     * System.out.println(new URL(attack).getPath());
     * System.out.println(new URI(attack).getPath());
     * System.out.println(HttpUrl.parse(attack).encodedPath());
     * ```
     *
     * By canonicalizing the input paths, they are complicit in directory traversal attacks. Code that
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top