Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
# => create a wordlist from original 41G stash via: | |
$ grep -rohP '(?<=:).*$' | uniq > breachcompilation.txt | |
# => compressed with: | |
$ 7z a breachcompilation.txt.7z breachcompilation.txt | |
# => size (rel): | |
## 4.1G compressed | |
## 9.0G uncompressed |
; This is a snippet of the original file in https://github.com/geyslan/SLAE/blob/master/1st.assignment/shell_bind_tcp.asm | |
global _start | |
section .text | |
_start: | |
; syscalls (/usr/include/asm/unistd_32.h) | |
; socketcall numbers (/usr/include/linux/net.h) |