资源简介
Android+木马远控1.3(完整免杀进程植入版)
代码片段和文件信息
public class decrypt {
private static String str= “004171601671161103119281841884088451531919111110970607105571585111180102809512110112412011515491145111660715170416513091201100191677451“;
public static String c(String s)
{
byte abyte0[];
int i j;
abyte0 = s.getBytes();
for ( i = 0 j = s.length() /2; i < j; i += 2 ){
byte byte0 = abyte0[i]; //从前往后取字
int l = (s.length() + -1) - i; //从后往前取字
byte byte1 = abyte0[l];
abyte0[i] = byte1; //将后面的字写到前面
abyte0[l] = byte0; //将前面的字写到后面
}
String as[];
String sss = new String(abyte0);
as = (new String(abyte0)).split(““);
String s1 = ““;
for ( i = 0; i < as.length; i += 2){
String s2 = String.valueOf(s1);
StringBuilder stringbuilder = new StringBuilder(s2);
char c1 = (char)Integer.parseInt(as[i]);
s1 = stringbuilder.append(c1).toString();
}
return s1;
}
public static void main(String args[]){
System.out.println(c(str));
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 314460 2012-05-08 22:16 Android Gamex木马分析报告.doc
文件 1247 2012-05-08 11:49 样本与解密代码\decrypt.java
文件 374 2012-05-07 21:33 样本与解密代码\decrypt_apk.py
文件 1174 2012-05-08 15:39 样本与解密代码\decrypt_url.py
文件 228340 2012-05-08 22:18 样本与解密代码\gamex.rar
文件 188 2012-05-08 20:40 样本与解密代码\icon.txt
文件 223579 2012-05-07 17:38 样本与解密代码\SD-Booster_1.5.2(原版).apk
目录 0 2012-05-08 22:18 样本与解密代码
----------- --------- ---------- ----- ----
769362 8
评论
共有 条评论