java 第一次写的 cm
本帖最后由 Sound 于 2018-1-5 16:17 编辑用java写的第一个CM.
64位
32位
第一次打包exe 可能未把 jre打包进去,可能你需要java 环境
无花无壳,未加密求明文哈!
查毒:http://r.virscan.org/report/5ea40eea5e8ecc6454f411615fb277f1 public class MD5 {
public static final String MD5SALT = "52pojie";
public static final String RESULT = "8814d3e8eb82df65cea6ca0d044b744f";
public static String getSignature(String str, String salt) throws IOException {
try {
byte[] bytes = MessageDigest.getInstance("MD5").digest(str.concat(salt).getBytes("UTF-8"));
StringBuilder sign = new StringBuilder();
for (byte b : bytes) {
String hex = Integer.toHexString(b & 255);
if (hex.length() == 1) {
sign.append("0");
}
sign.append(hex);
}
return sign.toString();
} catch (GeneralSecurityException ex) {
throw new IOException(ex);
}
}
} Bad丶Boy 发表于 2017-12-23 09:36
java能写exe吗???
jar可以转成exe java能写exe吗??? big冰 发表于 2017-12-23 09:47
jar可以转成exe
又学到一个知识{:1_893:} zhouyang89925 发表于 2017-12-23 12:16
如何将java转出 EXE啊 我只知道 易语言可以
导出jar包 用exe4j转成exe 弄个32位的exe吧 ,你这个是64位的 beiying 发表于 2017-12-23 14:45
public class MD5 {
public static final String MD5SALT = "52pojie";
public static final Str ...
未加密所以能看到加密方式。求明文密码
页:
[1]
2