Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 152 for Secured (0.33 sec)

  1. docs/en/docs/advanced/security/http-basic-auth.md

    ```Python
    if not (credentials.username == "stanleyjobson") or not (credentials.password == "swordfish"):
        # Return some error
        ...
    ```
    
    But by using the `secrets.compare_digest()` it will be secure against a type of attacks called "timing attacks".
    
    ### Timing Attacks { #timing-attacks }
    
    But what's a "timing attack"?
    
    Let's imagine some attackers are trying to guess the username and password.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/TempFileCreator.java

            "Guava cannot securely create temporary files or directories under SDK versions before"
                + " Jelly Bean. You can create one yourself, either in the insecure default directory"
                + " or in a more secure directory, such as context.getCacheDir(). For more information,"
                + " see the Javadoc for Files.createTempDir().";
    
        @Override
        File createTempDir() {
          throw new IllegalStateException(MESSAGE);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. docs/en/data/topic_repos.yml

    - name: authx
      html_url: https://github.com/yezz123/authx
      stars: 978
      owner_login: yezz123
      owner_html_url: https://github.com/yezz123
    - name: secure
      html_url: https://github.com/TypeError/secure
      stars: 942
      owner_login: TypeError
      owner_html_url: https://github.com/TypeError
    - name: titiler
      html_url: https://github.com/developmentseed/titiler
      stars: 940
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java

            assertArrayEquals("password123".toCharArray(), (char[]) passwordValue, "Password content should match");
        }
    
        @Test
        @DisplayName("Test secure password wipe")
        void testSecureWipePassword() throws Exception {
            String testPassword = "testPassword123";
            authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", testPassword);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

                boolean result = response.verifySignature(buffer, 0, 100);
    
                assertTrue(result);
            }
    
            @Test
            @DisplayName("Should verify signature on error when secure negotiate required")
            void testVerifySignatureErrorWithSecureNegotiate() {
                byte[] buffer = new byte[100];
                response.setDigest(mockDigest);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         * This method searches for 'fess_ds++.xml' configuration files within JAR files
         * in the data store plugin directory and extracts component class names.
         *
         * <p>The method uses secure XML parsing features to prevent XXE attacks and
         * other XML-based vulnerabilities. Component class names are extracted from
         * the 'class' attribute of 'component' elements in the XML files.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        /** Local process ID for SMB messages */
        protected int localPid = -1;
        /** Local timezone for time calculations */
        protected TimeZone localTimeZone;
        /** Secure random generator for cryptographic operations */
        protected SecureRandom random;
        /** Whether to use command batching for improved performance */
        protected boolean useBatching = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmContext.java

                        this.auth.getUsername(), this.workstation, this.ntlmsspFlags);
            }
    
            // Use secure password handling
            String passwordString = null;
            if (this.auth.isGuest()) {
                passwordString = this.transportContext.getConfig().getGuestPassword();
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     * host platform (like Android). In July 2018 Android had 134 trusted root certificates for its HTTP
     * clients to trust.
     *
     * For example, in order to establish a secure connection to `https://www.squareup.com/`,
     * these three certificates are used.
     *
     * ```
     * www.squareup.com certificate:
     *
     * Common Name: www.squareup.com
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

     *
     *  * call ([callStart], [callEnd], [callFailed])
     *    * proxy selection ([proxySelectStart], [proxySelectEnd])
     *    * dns ([dnsStart], [dnsEnd])
     *    * connect ([connectStart], [connectEnd], [connectFailed])
     *      * secure connect ([secureConnectStart], [secureConnectEnd])
     *    * connection held ([connectionAcquired], [connectionReleased])
     *      * request ([requestFailed])
     *        * headers ([requestHeadersStart], [requestHeadersEnd])
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top