2025年12月17日
摘要: Frida-0x3 解法一 Java.perform(function (){ var a = Java.use("com.ad2001.frida0x3.Checker"); a.code.value = 512; }) 解法二 Java.perform(function(){ var Check 阅读全文
posted @ 2025-12-17 19:37 hellv 阅读(1) 评论(0) 推荐(0)
2025年11月12日
摘要: 一、IDEA简介 IDEA(International Data Encryption Algorithm)在密码学中属于数据块加密算法(Block Cipher)类。IDEA使用长度为128bit的密钥,数据块大小为64bit。 IDEA加密是由8个相似圈和一个输出变换组成的迭代算法。IDEA的每 阅读全文
posted @ 2025-11-12 17:20 hellv 阅读(3) 评论(0) 推荐(0)
2025年8月27日
摘要: 1. eval eval() 是一个全局函数,用于执行字符串形式的JavaScript代码。 let code = "console.log('Hello from eval!')"; eval(code); // 输出: Hello from eval! let x = 10; let y = 2 阅读全文
posted @ 2025-08-27 01:26 hellv 阅读(22) 评论(0) 推荐(0)
2025年8月23日
摘要: 根据波峰波谷转化成010的二进制格式“110011011011001100001110011111110111010111011000010101110101010110011011101011101110110111011110011111101” 然后你会发现他的位数不够在每组前面+0然后转化为 阅读全文
posted @ 2025-08-23 19:29 hellv 阅读(9) 评论(0) 推荐(0)
2025年8月22日
摘要: from z3 import * a1=[Int(f"a1{i}")for i in range(16)] s=Solver() s.add(-202850 *a1[0] == -34078800) s.add( 182136 * a1[0]- 75396 * a1[1] == 18610884 ) 阅读全文
posted @ 2025-08-22 21:40 hellv 阅读(79) 评论(0) 推荐(0)
2025年8月20日
摘要: sub_400F8E函数 int v17; // [rsp+98h] [rbp-28h] char v18; // [rsp+9Fh] [rbp-21h] int v19; // [rsp+A0h] [rbp-20h] unsigned __int8 v20; // [rsp+A6h] [rbp-1 阅读全文
posted @ 2025-08-20 10:10 hellv 阅读(6) 评论(0) 推荐(0)
2025年8月17日
摘要: main函数代码 void __fastcall __noreturn main(int a1, char **a2, char **a3) { size_t v3; // rsi int i; // [rsp+3Ch] [rbp-54h] char s[36]; // [rsp+40h] [rbp 阅读全文
posted @ 2025-08-17 16:30 hellv 阅读(17) 评论(0) 推荐(0)
摘要: main函数代码 void __fastcall __noreturn main(int a1, char **a2, char **a3) { size_t v3; // rsi int i; // [rsp+3Ch] [rbp-54h] char s[36]; // [rsp+40h] [rbp 阅读全文
posted @ 2025-08-17 16:01 hellv 阅读(2) 评论(0) 推荐(0)