forked from Asuri-Team/pwn-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME
31 lines (21 loc) · 940 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
What is this?
=====================
Pwn-Sandbox is a sandbox tool for pwner to protect your own gamebox on AWD CTF Challenges.
What can this do?
=====================
1. Protect sensitive syscall like fork, execve, clone etc.
2. Record traffic from other teams.
How to use this?
=====================
Add "-orig" postfix to original binary name and change pwn-sandbox to original binary name.
Traffic and syscall will log into /tmp/.binaryname/ directory. timestamp-std is stdin/stdout log, timestamp-n is other fds' log, timestamp-syscall is syscall log.
How this thing work?
=====================
See ptrace(3) for more details.
Build from source.
=====================
autoreconf --install
./configure
make
make install (*Optional, this binary will not install to system dir.)
It is better to build with static link to prevent libc difference between gamebox and your own system. Use ./configure LDFLAGS=-static to enable it.