小菜

导航

2020年5月15日 #

twrp 无限循环 unable to mount data

摘要: fastboot w 阅读全文

posted @ 2020-05-15 09:51 penbol 阅读(557) 评论(0) 推荐(0) 编辑

2020年4月27日 #

知网研学 卷缺失 问题

摘要: 在模板里面选中那一项,然后取消勾选必填。 阅读全文

posted @ 2020-04-27 16:00 penbol 阅读(972) 评论(0) 推荐(0) 编辑

2020年4月16日 #

cmder 配置socks代理

摘要: 注意是在bash模式下 export https_proxy=socks5://127.0.0.1:10808 export http_proxy=socks5://127.0.0.1:10808 阅读全文

posted @ 2020-04-16 21:29 penbol 阅读(693) 评论(0) 推荐(0) 编辑

2019年9月10日 #

burp swithOmega 配合抓https的包 爬坑

摘要: 其实证书导入教程按其他博客来接好, 重要的是SwithOmega 代理选项要选抓http的包,不要选https, 原理 浏览器还认为是HTTP的包,请求到BURP后做了HTTPS封装 我在胡扯 以后研究下https 阅读全文

posted @ 2019-09-10 17:10 penbol 阅读(254) 评论(0) 推荐(0) 编辑

2019年8月5日 #

进程同步

摘要: 生产者消费问题 信号量 semaphore full=0,empty=n; semaphore mutex = 1; item buf[n]; int in=0,out=0; produce(){ whiel(1){ wait(empty); wait(mutex); buf[in]=nextp; 阅读全文

posted @ 2019-08-05 22:06 penbol 阅读(106) 评论(0) 推荐(0) 编辑

2018年6月11日 #

临时

摘要: ~~~python from pwn import g_local = True ROP_SIZE = 20 LEAVE_RETN = 0x0804851D BUFFER = 0x804AE50 NEXT_ROP = BUFFER ROP_SIZE READ_ADDR = 0x080483A0 ST 阅读全文

posted @ 2018-06-11 23:01 penbol 阅读(156) 评论(0) 推荐(0) 编辑

2018年6月9日 #

不同版本glibc共存

摘要: ubuntu 1404 ~~~shell 105 tar jxvf glibc 2.23.tar.bz2 glibc 2.23/ 106 cd glibc 2.23/ 107 mkdir build 108 cd build/ 109 110 sudo apt get install gawk 11 阅读全文

posted @ 2018-06-09 11:56 penbol 阅读(1772) 评论(1) 推荐(0) 编辑

2018年6月8日 #

pwn加载题目给定的so

摘要: pwn加载题目给定的so ~~~python from pwn import import sys, os def change_ld(binary, ld): """ Force to use assigned new ld.so by changing the binary """ if not 阅读全文

posted @ 2018-06-08 23:34 penbol 阅读(2582) 评论(2) 推荐(0) 编辑

2018年6月4日 #

pwntools中gdb使用

摘要: pwntools中gdb使用 下断后请加 debug() r.send(payload) r.interactive() ~~~python def debug(addr = '0x080485B8'): raw_input('debug:') gdb.attach(r, "b " + addr) 阅读全文

posted @ 2018-06-04 20:56 penbol 阅读(6456) 评论(0) 推荐(1) 编辑

gdb给aslr下断 gdb给pic下断

摘要: gdb给aslr程序下断 即在内存中不断leak 最后比对文件头,找到模块基址 ~~~python from pwn import import sys, os import re wordSz = 4 hwordSz = 2 bits = 32 PIE = 0 mypid=0 context(ar 阅读全文

posted @ 2018-06-04 20:51 penbol 阅读(244) 评论(0) 推荐(0) 编辑