We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb02cc commit bcd4ff1Copy full SHA for bcd4ff1
README.md
@@ -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