- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for pwd (0.91 sec)
-
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
} else { // Other threads try to read password String pwd = auth.getPassword(); // Password might be null if already wiped assertTrue(pwd == null || pwd.equals("ConcurrentPass123!")); } } catch (InterruptedException e) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbSessionTest.java
} @Test void matchesBehavior() { // Two distinct auth instances NtlmPasswordAuthentication a1 = new NtlmPasswordAuthentication("DOM", "user", "pwd"); NtlmPasswordAuthentication a2 = new NtlmPasswordAuthentication("DOM", "user", "pwd"); SmbSession s1 = new SmbSession(addr, 445, inet, 0, a1); SmbSession s2 = new SmbSession(addr, 445, inet, 0, a2); // same auth instance => matchesRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/assemblies/files/fess
SCRIPT="$link" else SCRIPT=`dirname "$SCRIPT"`/"$link" fi done # determine fess home FESS_HOME=`dirname "$SCRIPT"`/.. # make FESS_HOME absolute FESS_HOME=`cd "$FESS_HOME"; pwd` # If an include wasn't specified in the environment, then search for one... if [ "x$FESS_INCLUDE" = "x" ]; then # Locations (in order) to use when searching for an include file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
*/ protected byte[] getNTHash() { MessageDigest md4 = Crypto.getMD4(); char[] pwd = getPasswordAsCharArray(); if (pwd == null || pwd.length == 0) { md4.update(Strings.getUNIBytes("")); return md4.digest(); } String tempStr = new String(pwd); try { md4.update(Strings.getUNIBytes(tempStr)); return md4.digest();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
// Patterns for sensitive data - compiled once and cached private static final Pattern PASSWORD_PATTERN = Pattern.compile( "(?i)(password|passwd|pwd|secret|token|key|credential|auth)([\"']?\\s*[:=]\\s*[\"']?)([^\"',\\s]+)", Pattern.CASE_INSENSITIVE); private static final Pattern IP_PATTERN = Pattern.compile("\\b(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\b");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0)