摘要: 各位江湖大佬紧急通知 该博客已经废弃, 希望大家见谅... 最新博客: i0gan.cn 进入博客 2020-09-11 i0gan 阅读全文
posted @ 2020-09-11 19:31 i0gan 阅读(169) 评论(0) 推荐(0) 编辑
摘要: IDA 调试安卓 工具: Nox IDA 进入Nox\bin目录 cd C:\Program Files (x86)\Nox\bin adb连接模拟器 nox_adb.exe connect 127.0.0.1:62001 上传ida 监听文件 adb push 'C:\Users\b\Deskto 阅读全文
posted @ 2020-09-06 13:48 i0gan 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Android Re 入门 必备工具: IDA : 反编译.so文件 AndroidKiller: 反编译apk文件及再次编译为apk jd-gui : 将.jar文件反编译为java代码 dex2jar: 反编译.dex文件 apktool: 能够反编译及回编译apk 夜神模拟器: 运行apk文件 阅读全文
posted @ 2020-09-05 09:58 i0gan 阅读(610) 评论(0) 推荐(0) 编辑
摘要: House Of Orange 来源 2016 ctf HITCON 环境 libc: libc.2.23 Unbuntu16 难度 8 / 10 保护 简单描述 保护全开,有添加功能和编辑功能,只能添加4次,每次添加都会malloc三次分别储存不同的信息, 可以编辑三次,没有free函数,是经典的 阅读全文
posted @ 2020-05-01 23:45 i0gan 阅读(205) 评论(0) 推荐(0) 编辑
摘要: greeting 150 保护 漏洞 字符串漏洞 源代码 利用 由于程序中只有一个字符串漏洞, 执行字符串漏洞后结束,这时就需要覆盖fini_array为start函数进行再次执行程序同时修改strlen的got表为system plt地址. 简单介绍一下: fini_array, 在 函数前会调用 阅读全文
posted @ 2020-04-01 15:19 i0gan 阅读(470) 评论(0) 推荐(0) 编辑
摘要: Project name: LiQ (LiQ 即时通讯软件) Creation date: 2020 2 26 Update date: 2020 3 5 21:30 Version: 1.0 Complier: Qt 4.8.7 / Qt 5.9.9 (Clinet) and g++6.3.0 ( 阅读全文
posted @ 2020-03-05 22:17 i0gan 阅读(829) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include #include //forward_list 是c++11中引入的单项串列(singal linked list) //namespace std { //template > //class //} //特点: 不支持随机元素访问, 访问头部元素速度快 //"forward_list" 和自己手写的c-style signal linked list相比 //没 阅读全文
posted @ 2020-02-24 19:51 i0gan 阅读(213) 评论(0) 推荐(0) 编辑
摘要: ```cpp#include #include #include //list 是c++98中引入的双向串列(double linked list)//namespace std {//template>//class list;//}//特点: 不支持随机访问元素,访问头部和尾部元素快//任何位置插入删除元素都很快,常亮时间内完成//插入和删除不会造成迭代器的失效//对于异常支持好, 出现异常对... 阅读全文
posted @ 2020-02-24 19:47 i0gan 阅读(267) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include #include //deque是c++98中引入的动态数组(dynamic array) //namespace std { //template> //class deque; //} //特点:随机访问元素, 末端和头部添加删除元素效率高,中间删除和添加元素效率低 //而vector仅仅操作尾部效率高 //元素的访问和迭代比vector要慢,迭代器不能是普通的 阅读全文
posted @ 2020-02-24 19:46 i0gan 阅读(216) 评论(0) 推荐(0) 编辑
摘要: ```cpp #include #include #include //#include //c++ 98 static void vectorPart() { //vector 是c++98中引入的动态数组(dynamic array) //namespace std { //template> //就是用默认的alloctor了, // class vector; //} //特点随机访问元素 阅读全文
posted @ 2020-02-24 19:44 i0gan 阅读(691) 评论(0) 推荐(0) 编辑