79421939

Date: 2025-02-07 19:16:45
Score: 0.5
Natty:
Report link

Use lib commons-crypto from org.apache.commons

import org.apache.commons.codec.digest.Crypt;

String crypt = Crypt.crypt("secret", "$1$xxxx");
System.out.println(crypt);

will return

$1$xxxx$aMkevjfEIpa35Bh3G4bAc.
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dmitry1405