上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页
摘要: 1 试玩 apk # 安装APK到真机 adb install AliCrackme_1.apk 打开apk,投石问路,输入123试一下 2 将apk 拖入androidKiller,得到反编译的smali文件项目 smali目录地址在androidkiller目录下的projects/AliCra 阅读全文
posted @ 2022-03-20 14:58 明月照江江 阅读(254) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> class aclass{ private: int m; char c; public: aclass(int i, char ch) { printf("Constructor called.\n"); this->m = i; this->c = ch; 阅读全文
posted @ 2022-03-19 12:27 明月照江江 阅读(41) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int switch1(int a, int b, int i){ switch (i){ case 1: return a + b; break; case 2: return a - b; break; case 3: return a * b; break 阅读全文
posted @ 2022-03-19 11:59 明月照江江 阅读(58) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int dowhile(int n){ int i = 1; int s = 0; do{ s += i; }while(i++ < n); return s; } int whiledo(int n){ int i = 1; int s = 0; while( 阅读全文
posted @ 2022-03-19 11:40 明月照江江 阅读(41) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> void if1(int n){ //if else语句 if(n < 10){ printf("the number less than 10\n"); } else { printf("the number greater than or equal to 阅读全文
posted @ 2022-03-19 11:13 明月照江江 阅读(48) 评论(0) 推荐(0) 编辑
摘要: C源码 #include <stdio.h> int nums[5] = {1, 2, 3, 4, 5}; int for1(int n){ //普通for循环 int i = 0; int s = 0; for (i = 0; i < n; i++){ s += i * 2; } return s 阅读全文
posted @ 2022-03-19 10:30 明月照江江 阅读(47) 评论(0) 推荐(0) 编辑
摘要: JAVA 源码 ... String str1 = packedSwitch(1); ... private String packedSwitch(int i) { String str = null; switch (i) { case 0: str = "she is a baby"; bre 阅读全文
posted @ 2022-03-18 17:30 明月照江江 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1.首先将crackme0502 拖入模拟器。打开应用,随意输出字符串 2. 将APK 拖入AndroidKiller 反编译 3.先查看androidmanifest.xml <?xml version="1.0" encoding="utf-8" standalone="no"?> <manif 阅读全文
posted @ 2022-03-18 15:31 明月照江江 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 编写Hello.smali文件 .class public LHelloWorld; .super Ljava/lang/Object; .method public static main([Ljava/lang/String;)V .registers 4 .parameter .prologu 阅读全文
posted @ 2022-03-12 16:09 明月照江江 阅读(37) 评论(0) 推荐(0) 编辑
摘要: logging.level.com.dsmp.server.core.pgsqldao=debug com.dsmp.server.core.pgsqldao 为包名 阅读全文
posted @ 2022-03-11 13:56 明月照江江 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页