Skip to content

Commit bcd4ff1

Browse files
authored
Create README.md
1 parent 7cb02cc commit bcd4ff1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# launch-bash-without-aslr
2+
Shell script to launch a Bash instance, from which all child processes will have ASLR disabled.
3+
4+
This script is useful for testing CTF problems in an environment without ASLR. Can also be useful for exploit development.
5+
6+
Runs on Linux.
7+
8+
## Example Usage
9+
10+
```
11+
user@computer:~$ ./launch-bash-without-aslr.sh
12+
==== ASLR disabled for this session ====
13+
no-aslr $ echo "Look ma, no ASLR!"
14+
Look ma, no ASLR!
15+
no-aslr $ exit
16+
exit
17+
==== ASLR re-enabled ====
18+
user@computer:~$
19+
```

0 commit comments

Comments
 (0)