Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: mport org.bukkit.command.CommandSender; //Any other imports can go here /* Example Template * By Adamki11s * Plugin Tutorial */ public class auth implements CommandExecutor{ public static void main(String[] args) { String password = "MyPassword123"; System.out.println("MD5 in hex: " + md5(password)); } public static String md5(String input) { String md5 = null; […]
↧