
pwn
freshfox
这个作者很懒,什么都没留下…
展开
-
iot 资料
https://www.shangyexinzhi.com/article/554561.html 谷歌云盘AttifyOS下载地址:https://drive.google.com/file/d/0Bz-2-OHt_4gQTkNYb21RRXBuNlE/view** 百度云盘AttifyOS下载地址:https://pan.baidu.com/s/1Vracsnlt5uNbdmfYK4dp8...原创 2020-04-27 08:49:48 · 453 阅读 · 0 评论 -
pwnable writeup (一)
collision: 源码自己找。 意思很简单,输入一个字符串,长度为20 ,4字节一组,加起来为hashcode。 前面4个 为 01010101, 最后一个为 0x1DD905E8 问题是怎么输入这个字符串。 使用python 大法。 另外注意大小字节序就可以了。 ./col `python -c 'print "\x01\x01\x01\x01\x01\x01\x...原创 2019-11-02 23:25:42 · 239 阅读 · 0 评论 -
pwn 几种保护方式
Arch: amd64-64-little -- RELRO会有Partial RELRO和FULL RELRO,如果开启FULL RELRO,意味着我们无法修改got表 RELRO: Full RELRO -- 重定向 Stack: No canary found -- 栈检查 NX: NX enabled ...原创 2019-10-28 14:39:48 · 1612 阅读 · 0 评论 -
pwn 常用工具
git clone https://github.com/longld/peda.git ~/peda echo "source ~/peda/peda.py">> ~/.gdbinit git clone https://github.com/pwndbg/pwndbg cd pwndbg ./setup.sh checksec -- 属于pwntools 里面的 p...原创 2019-10-27 00:30:31 · 1148 阅读 · 0 评论 -
pe结构分析-解析pe头(一)
// peFileAna.cpp : 定义控制台应用程序的入口点。 // // peFileAna.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "file.h" #include "malloc.h" #define in_file_name "d:\\user32.dll" #define out_file...原创 2019-09-28 21:40:08 · 753 阅读 · 0 评论 -
pe结构分析-解析导出表(一)
导出表函数地址查询规则: 1. 按照名称查找: 先找到名称, 然后对应同一索引的 AddressOfNameOrdinals 表中的记录 id , 那这个id 做索引查询AddressOfFunctions 表即可。 2. 按照 序号 查找: 序号- base 做为 AddressOfFunctions 表即可。 几点说明: 1. base 是序号开始的值。 2. ...原创 2019-09-29 10:42:22 · 372 阅读 · 0 评论 -
vs 设置文件对齐大小方法
/FILEALIGN:0x1000原创 2019-10-08 11:15:22 · 548 阅读 · 0 评论