-
-
[讨论]一个自定义的监控木马
-
发表于:
2014-8-14 23:44
8189
-
今天无聊在猪八戒搜搜看有什么好玩的apk,然后发现了这个:
http://task.zhubajie.com/4186571/
能盗取监听一堆玩意儿,然后发送到指定邮箱,测试apk记得禁止联网…
有兴趣的拿去玩
顺手搞了注册机,方便测
public static void main(String[] args) throws Exception {
String deviceId = "0000000000000000"; // 机器码
String result_date = "2099-12-01";
String key = deviceId + "19860501";
String result = cal(result_date, key);
System.out.println(result);
}
public static String cal(String data, String key) throws Exception
{
try
{
DESKeySpec dks = new DESKeySpec(key.getBytes());
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
Key secretKey = keyFactory.generateSecret(dks);
Cipher cipher = Cipher.getInstance("DES");
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] bytes = cipher.doFinal(data.getBytes());
return new BASE64Encoder().encode(bytes);
} catch (Exception e)
{
throw new Exception(e);
}
}
APK:
app3.apk
[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!