mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2024-12-25 11:41:16 +07:00
30 lines
991 B
Markdown
30 lines
991 B
Markdown
# 6.1.22 pwn BCTF2016 bcloud
|
|
|
|
- [题目复现](#题目复现)
|
|
- [题目解析](#题目解析)
|
|
- [漏洞利用](#漏洞利用)
|
|
- [参考资料](#参考资料)
|
|
|
|
|
|
[下载文件](../src/writeup/6.1.22_pwn_bctf2016_bcloud)
|
|
|
|
## 题目复现
|
|
```
|
|
$ file bcloud
|
|
bcloud: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.24, BuildID[sha1]=96a3843007b1e982e7fa82fbd2e1f2cc598ee04e, stripped
|
|
$ checksec -f bcloud
|
|
RELRO STACK CANARY NX PIE RPATH RUNPATH FORTIFY Fortified Fortifiable FILE
|
|
Partial RELRO Canary found NX enabled No PIE No RPATH No RUNPATH Yes 0 4 bcloud
|
|
$ strings libc-2.19.so | grep "GNU C"
|
|
GNU C Library (Ubuntu EGLIBC 2.19-0ubuntu6.7) stable release version 2.19, by Roland McGrath et al.
|
|
Compiled by GNU CC version 4.8.2.
|
|
```
|
|
|
|
|
|
## 题目解析
|
|
|
|
## 漏洞利用
|
|
|
|
## 参考资料
|
|
- https://ctftime.org/task/2165
|