├── 013-race-conditions-basics ├── output.txt └── test.cpp ├── 015-advance-format-string ├── NetSock.cpp ├── NetSock.h ├── a.out ├── asdf.c ├── pwnbase.py ├── server.cpp └── test.c ├── 016-ctf-tasks-starblind-index ├── index │ ├── README.md │ ├── carve_out_blocks.py │ ├── extract_macho.py │ └── xor_flag.py └── starblind │ ├── bruteforce.py │ ├── sb.js │ └── starblind.html ├── 017-fuzzing-basics ├── asdf.c ├── crash.samples.43 ├── crash.samples.43.txt ├── detect.gdb ├── fuzzer.py ├── input.sample └── test.sample ├── 019-genetic-fuzzing ├── README.md ├── asdf.c ├── cov │ └── note.txt ├── detect.gdb ├── fuzzer.py └── input.sample ├── 024-z3 ├── README.md ├── crackme.cc ├── crackme.exe ├── solver_asm.py ├── solver_decompiled.py └── solver_example.py ├── 025-blind-rop ├── prestream_version │ ├── dump - Copy.2 │ ├── dump.2 │ ├── dump.3 │ ├── notes │ ├── pwnbase - Copy (2).py │ ├── pwnbase - Copy (3).py │ ├── pwnbase - Copy - Copy.py │ ├── pwnbase - Copy.py │ └── pwnbase.py ├── stream_version │ ├── notes │ ├── pwnbase - Copy.py │ ├── pwnbase.py │ └── test.asm └── test_binary │ ├── a.out │ └── source │ ├── NetSock.cpp │ ├── NetSock.h │ ├── build.sh │ └── server.cpp ├── 026-root-me-org ├── README.md ├── asdf ├── asdf.php └── asdf.py ├── 032-missions-solutions ├── notes ├── pwnbase - Copy.py ├── pwnbase.py ├── server.py └── solver.py ├── 033-elf-packer ├── hello ├── hello.c ├── hello.packed ├── loader ├── loader.nasm └── packer.py ├── 034-chip8-vm-part1 ├── Makefile └── chip8.cc ├── 035-chip8-vm-part2 ├── Makefile └── chip8.cc ├── 036-chip8-vm-part3 ├── Makefile └── chip8.cc ├── 037-chip8-vm-debugger-part1 ├── Makefile └── chip8.cc ├── 038-chip8-vm-debugger-part2 ├── Cowgod's Chip-8 Technical Reference.url ├── Makefile ├── chip8 - Copy.cc └── chip8.cc ├── 039-anti-re-vm ├── Makefile ├── app.cc ├── app.exe ├── dis.py ├── gen.py ├── keycheck ├── keycheck.o ├── keycheck.vasm └── vm.inc ├── 041-fuzzing-network-apps ├── NetSock.cpp ├── NetSock.h ├── go.sh ├── serv.cpp └── serv_harness.cpp ├── 042-spectre-meltdown └── sp1.c ├── 048-use-after-free ├── Makefile ├── library.cpp ├── pwnbase.py └── test.cc ├── 049-soundnet ├── README.md ├── soundnet_livestream.py └── soundnet_prelivestream.py ├── 051-genetic-memcpy ├── go.py └── initial ├── 052-xss-basics ├── asdf.php ├── captcha.png ├── notes └── test.php ├── 053-zip-file-format └── README.md ├── 054-serialize ├── asdf.bin ├── asdf.c ├── php │ ├── test.php │ └── test2.php └── python │ ├── evil.pickle │ ├── pwnbase.py │ ├── target.py │ ├── test.py │ ├── yyy.py │ └── yyy.pyc ├── 055-efail ├── ASN.1 JavaScript decoder.url ├── HOWTO- Programming S-MIME in Python with M2Crypto.url ├── How do I create a valid email certificate for Outlook S-MIME with openssl- - Information Security Stack Exchange.url ├── Issue Your Own Self-Signed S-MIME Certs with OpenSSL.url ├── cert_passwords.txt ├── pop3.py ├── sender_example_com │ ├── ca.crt │ ├── ca.key │ ├── smime.crt │ ├── smime.csr │ ├── smime.p12 │ ├── smime.pem │ └── smime_nodes.pem ├── smtp.py └── tester_example_com │ ├── ca.crt │ ├── ca.key │ ├── smime.cer │ ├── smime.crt │ ├── smime.csr │ ├── smime.p12 │ └── smime.pem ├── 056-hash-ext ├── asdf.py ├── index.php └── md5 │ ├── calc_md5.c │ ├── md5.c │ └── md5.h ├── 057-beginners-quest ├── admin_ui │ ├── go.py │ ├── notes │ └── pwnbase.py ├── filter_env │ ├── a.out │ ├── asdf.c │ ├── asdf.so.gz │ └── dump ├── firmware │ └── notes ├── floppy │ ├── driver.txt │ └── www.com ├── floppy2 │ ├── ASDF │ ├── notes │ └── www.com ├── fridge_todo_list │ └── pwnbase.py ├── gatekeeper │ └── notes ├── holey_beep │ └── notes ├── js_safe │ ├── asdf │ └── js_safe_1.html ├── letter │ └── asdf ├── media-db │ └── notes ├── moar │ └── notes ├── motd │ ├── notes │ └── pwnbase.py ├── ocr_is_cool │ ├── notes.txt │ └── notes2.txt ├── poerty │ └── note ├── router-ui │ └── notes └── security_by_obscurity │ ├── passwd.txt │ └── passwd.zip ├── 059-gctf-2018-better-zip └── go.py ├── 061-nanomites-windows ├── debuggee.cc ├── debuggee.h ├── debugger.cc ├── debugger.h ├── go.bat └── nano.cc ├── 062-nanomites-linux ├── debuggee.cc ├── debuggee.h ├── debugger.cc ├── debugger.h ├── go.sh └── nano.cc ├── 065-tooooo └── pwnbase.py ├── 070-snes_backup ├── README.md ├── conv.py └── dump_snes.ino ├── 072-irc-bot ├── config.py ├── consts.py ├── irc.py └── pacynka.py ├── 077-srop ├── broken.c ├── maps.txt ├── pwnbase.py ├── regs.txt └── test.c ├── 105-dwitter ├── c.js ├── notes.js ├── output.js └── test.js └── README.md /013-race-conditions-basics/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/013-race-conditions-basics/output.txt -------------------------------------------------------------------------------- /013-race-conditions-basics/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/013-race-conditions-basics/test.cpp -------------------------------------------------------------------------------- /015-advance-format-string/NetSock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/NetSock.cpp -------------------------------------------------------------------------------- /015-advance-format-string/NetSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/NetSock.h -------------------------------------------------------------------------------- /015-advance-format-string/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/a.out -------------------------------------------------------------------------------- /015-advance-format-string/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/asdf.c -------------------------------------------------------------------------------- /015-advance-format-string/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/pwnbase.py -------------------------------------------------------------------------------- /015-advance-format-string/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/server.cpp -------------------------------------------------------------------------------- /015-advance-format-string/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/015-advance-format-string/test.c -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/index/README.md -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/index/carve_out_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/index/carve_out_blocks.py -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/index/extract_macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/index/extract_macho.py -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/index/xor_flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/index/xor_flag.py -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/starblind/bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/starblind/bruteforce.py -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/starblind/sb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/starblind/sb.js -------------------------------------------------------------------------------- /016-ctf-tasks-starblind-index/starblind/starblind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/016-ctf-tasks-starblind-index/starblind/starblind.html -------------------------------------------------------------------------------- /017-fuzzing-basics/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/asdf.c -------------------------------------------------------------------------------- /017-fuzzing-basics/crash.samples.43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/crash.samples.43 -------------------------------------------------------------------------------- /017-fuzzing-basics/crash.samples.43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/crash.samples.43.txt -------------------------------------------------------------------------------- /017-fuzzing-basics/detect.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/detect.gdb -------------------------------------------------------------------------------- /017-fuzzing-basics/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/fuzzer.py -------------------------------------------------------------------------------- /017-fuzzing-basics/input.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/input.sample -------------------------------------------------------------------------------- /017-fuzzing-basics/test.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/017-fuzzing-basics/test.sample -------------------------------------------------------------------------------- /019-genetic-fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/README.md -------------------------------------------------------------------------------- /019-genetic-fuzzing/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/asdf.c -------------------------------------------------------------------------------- /019-genetic-fuzzing/cov/note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/cov/note.txt -------------------------------------------------------------------------------- /019-genetic-fuzzing/detect.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/detect.gdb -------------------------------------------------------------------------------- /019-genetic-fuzzing/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/fuzzer.py -------------------------------------------------------------------------------- /019-genetic-fuzzing/input.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/019-genetic-fuzzing/input.sample -------------------------------------------------------------------------------- /024-z3/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/Z3Prover/z3 2 | -------------------------------------------------------------------------------- /024-z3/crackme.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/024-z3/crackme.cc -------------------------------------------------------------------------------- /024-z3/crackme.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/024-z3/crackme.exe -------------------------------------------------------------------------------- /024-z3/solver_asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/024-z3/solver_asm.py -------------------------------------------------------------------------------- /024-z3/solver_decompiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/024-z3/solver_decompiled.py -------------------------------------------------------------------------------- /024-z3/solver_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/024-z3/solver_example.py -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/dump - Copy.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/dump - Copy.2 -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/dump.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/dump.2 -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/dump.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/dump.3 -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/notes -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/pwnbase - Copy (2).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/pwnbase - Copy (2).py -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/pwnbase - Copy (3).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/pwnbase - Copy (3).py -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/pwnbase - Copy - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/pwnbase - Copy - Copy.py -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/pwnbase - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/pwnbase - Copy.py -------------------------------------------------------------------------------- /025-blind-rop/prestream_version/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/prestream_version/pwnbase.py -------------------------------------------------------------------------------- /025-blind-rop/stream_version/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/stream_version/notes -------------------------------------------------------------------------------- /025-blind-rop/stream_version/pwnbase - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/stream_version/pwnbase - Copy.py -------------------------------------------------------------------------------- /025-blind-rop/stream_version/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/stream_version/pwnbase.py -------------------------------------------------------------------------------- /025-blind-rop/stream_version/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/stream_version/test.asm -------------------------------------------------------------------------------- /025-blind-rop/test_binary/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/test_binary/a.out -------------------------------------------------------------------------------- /025-blind-rop/test_binary/source/NetSock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/test_binary/source/NetSock.cpp -------------------------------------------------------------------------------- /025-blind-rop/test_binary/source/NetSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/test_binary/source/NetSock.h -------------------------------------------------------------------------------- /025-blind-rop/test_binary/source/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/test_binary/source/build.sh -------------------------------------------------------------------------------- /025-blind-rop/test_binary/source/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/025-blind-rop/test_binary/source/server.cpp -------------------------------------------------------------------------------- /026-root-me-org/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/026-root-me-org/README.md -------------------------------------------------------------------------------- /026-root-me-org/asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/026-root-me-org/asdf -------------------------------------------------------------------------------- /026-root-me-org/asdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/026-root-me-org/asdf.php -------------------------------------------------------------------------------- /026-root-me-org/asdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/026-root-me-org/asdf.py -------------------------------------------------------------------------------- /032-missions-solutions/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/032-missions-solutions/notes -------------------------------------------------------------------------------- /032-missions-solutions/pwnbase - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/032-missions-solutions/pwnbase - Copy.py -------------------------------------------------------------------------------- /032-missions-solutions/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/032-missions-solutions/pwnbase.py -------------------------------------------------------------------------------- /032-missions-solutions/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/032-missions-solutions/server.py -------------------------------------------------------------------------------- /032-missions-solutions/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/032-missions-solutions/solver.py -------------------------------------------------------------------------------- /033-elf-packer/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/hello -------------------------------------------------------------------------------- /033-elf-packer/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/hello.c -------------------------------------------------------------------------------- /033-elf-packer/hello.packed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/hello.packed -------------------------------------------------------------------------------- /033-elf-packer/loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/loader -------------------------------------------------------------------------------- /033-elf-packer/loader.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/loader.nasm -------------------------------------------------------------------------------- /033-elf-packer/packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/033-elf-packer/packer.py -------------------------------------------------------------------------------- /034-chip8-vm-part1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/034-chip8-vm-part1/Makefile -------------------------------------------------------------------------------- /034-chip8-vm-part1/chip8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/034-chip8-vm-part1/chip8.cc -------------------------------------------------------------------------------- /035-chip8-vm-part2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/035-chip8-vm-part2/Makefile -------------------------------------------------------------------------------- /035-chip8-vm-part2/chip8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/035-chip8-vm-part2/chip8.cc -------------------------------------------------------------------------------- /036-chip8-vm-part3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/036-chip8-vm-part3/Makefile -------------------------------------------------------------------------------- /036-chip8-vm-part3/chip8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/036-chip8-vm-part3/chip8.cc -------------------------------------------------------------------------------- /037-chip8-vm-debugger-part1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/037-chip8-vm-debugger-part1/Makefile -------------------------------------------------------------------------------- /037-chip8-vm-debugger-part1/chip8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/037-chip8-vm-debugger-part1/chip8.cc -------------------------------------------------------------------------------- /038-chip8-vm-debugger-part2/Cowgod's Chip-8 Technical Reference.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/038-chip8-vm-debugger-part2/Cowgod's Chip-8 Technical Reference.url -------------------------------------------------------------------------------- /038-chip8-vm-debugger-part2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/038-chip8-vm-debugger-part2/Makefile -------------------------------------------------------------------------------- /038-chip8-vm-debugger-part2/chip8 - Copy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/038-chip8-vm-debugger-part2/chip8 - Copy.cc -------------------------------------------------------------------------------- /038-chip8-vm-debugger-part2/chip8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/038-chip8-vm-debugger-part2/chip8.cc -------------------------------------------------------------------------------- /039-anti-re-vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/Makefile -------------------------------------------------------------------------------- /039-anti-re-vm/app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/app.cc -------------------------------------------------------------------------------- /039-anti-re-vm/app.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/app.exe -------------------------------------------------------------------------------- /039-anti-re-vm/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/dis.py -------------------------------------------------------------------------------- /039-anti-re-vm/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/gen.py -------------------------------------------------------------------------------- /039-anti-re-vm/keycheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/keycheck -------------------------------------------------------------------------------- /039-anti-re-vm/keycheck.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/keycheck.o -------------------------------------------------------------------------------- /039-anti-re-vm/keycheck.vasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/keycheck.vasm -------------------------------------------------------------------------------- /039-anti-re-vm/vm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/039-anti-re-vm/vm.inc -------------------------------------------------------------------------------- /041-fuzzing-network-apps/NetSock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/041-fuzzing-network-apps/NetSock.cpp -------------------------------------------------------------------------------- /041-fuzzing-network-apps/NetSock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/041-fuzzing-network-apps/NetSock.h -------------------------------------------------------------------------------- /041-fuzzing-network-apps/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/041-fuzzing-network-apps/go.sh -------------------------------------------------------------------------------- /041-fuzzing-network-apps/serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/041-fuzzing-network-apps/serv.cpp -------------------------------------------------------------------------------- /041-fuzzing-network-apps/serv_harness.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/041-fuzzing-network-apps/serv_harness.cpp -------------------------------------------------------------------------------- /042-spectre-meltdown/sp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/042-spectre-meltdown/sp1.c -------------------------------------------------------------------------------- /048-use-after-free/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/048-use-after-free/Makefile -------------------------------------------------------------------------------- /048-use-after-free/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/048-use-after-free/library.cpp -------------------------------------------------------------------------------- /048-use-after-free/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/048-use-after-free/pwnbase.py -------------------------------------------------------------------------------- /048-use-after-free/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/048-use-after-free/test.cc -------------------------------------------------------------------------------- /049-soundnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/049-soundnet/README.md -------------------------------------------------------------------------------- /049-soundnet/soundnet_livestream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/049-soundnet/soundnet_livestream.py -------------------------------------------------------------------------------- /049-soundnet/soundnet_prelivestream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/049-soundnet/soundnet_prelivestream.py -------------------------------------------------------------------------------- /051-genetic-memcpy/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/051-genetic-memcpy/go.py -------------------------------------------------------------------------------- /051-genetic-memcpy/initial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/051-genetic-memcpy/initial -------------------------------------------------------------------------------- /052-xss-basics/asdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/052-xss-basics/asdf.php -------------------------------------------------------------------------------- /052-xss-basics/captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/052-xss-basics/captcha.png -------------------------------------------------------------------------------- /052-xss-basics/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/052-xss-basics/notes -------------------------------------------------------------------------------- /052-xss-basics/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/052-xss-basics/test.php -------------------------------------------------------------------------------- /053-zip-file-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/053-zip-file-format/README.md -------------------------------------------------------------------------------- /054-serialize/asdf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/asdf.bin -------------------------------------------------------------------------------- /054-serialize/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/asdf.c -------------------------------------------------------------------------------- /054-serialize/php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/php/test.php -------------------------------------------------------------------------------- /054-serialize/php/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/php/test2.php -------------------------------------------------------------------------------- /054-serialize/python/evil.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/python/evil.pickle -------------------------------------------------------------------------------- /054-serialize/python/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/python/pwnbase.py -------------------------------------------------------------------------------- /054-serialize/python/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/python/target.py -------------------------------------------------------------------------------- /054-serialize/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/python/test.py -------------------------------------------------------------------------------- /054-serialize/python/yyy.py: -------------------------------------------------------------------------------- 1 | print "Asdf" 2 | -------------------------------------------------------------------------------- /054-serialize/python/yyy.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/054-serialize/python/yyy.pyc -------------------------------------------------------------------------------- /055-efail/ASN.1 JavaScript decoder.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://lapo.it/asn1js/ 3 | -------------------------------------------------------------------------------- /055-efail/HOWTO- Programming S-MIME in Python with M2Crypto.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/HOWTO- Programming S-MIME in Python with M2Crypto.url -------------------------------------------------------------------------------- /055-efail/How do I create a valid email certificate for Outlook S-MIME with openssl- - Information Security Stack Exchange.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/How do I create a valid email certificate for Outlook S-MIME with openssl- - Information Security Stack Exchange.url -------------------------------------------------------------------------------- /055-efail/Issue Your Own Self-Signed S-MIME Certs with OpenSSL.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://gist.github.com/richieforeman/3166387 3 | -------------------------------------------------------------------------------- /055-efail/cert_passwords.txt: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /055-efail/pop3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/pop3.py -------------------------------------------------------------------------------- /055-efail/sender_example_com/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/ca.crt -------------------------------------------------------------------------------- /055-efail/sender_example_com/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/ca.key -------------------------------------------------------------------------------- /055-efail/sender_example_com/smime.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/smime.crt -------------------------------------------------------------------------------- /055-efail/sender_example_com/smime.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/smime.csr -------------------------------------------------------------------------------- /055-efail/sender_example_com/smime.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/smime.p12 -------------------------------------------------------------------------------- /055-efail/sender_example_com/smime.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/smime.pem -------------------------------------------------------------------------------- /055-efail/sender_example_com/smime_nodes.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/sender_example_com/smime_nodes.pem -------------------------------------------------------------------------------- /055-efail/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/smtp.py -------------------------------------------------------------------------------- /055-efail/tester_example_com/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/ca.crt -------------------------------------------------------------------------------- /055-efail/tester_example_com/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/ca.key -------------------------------------------------------------------------------- /055-efail/tester_example_com/smime.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/smime.cer -------------------------------------------------------------------------------- /055-efail/tester_example_com/smime.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/smime.crt -------------------------------------------------------------------------------- /055-efail/tester_example_com/smime.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/smime.csr -------------------------------------------------------------------------------- /055-efail/tester_example_com/smime.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/smime.p12 -------------------------------------------------------------------------------- /055-efail/tester_example_com/smime.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/055-efail/tester_example_com/smime.pem -------------------------------------------------------------------------------- /056-hash-ext/asdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/056-hash-ext/asdf.py -------------------------------------------------------------------------------- /056-hash-ext/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/056-hash-ext/index.php -------------------------------------------------------------------------------- /056-hash-ext/md5/calc_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/056-hash-ext/md5/calc_md5.c -------------------------------------------------------------------------------- /056-hash-ext/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/056-hash-ext/md5/md5.c -------------------------------------------------------------------------------- /056-hash-ext/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/056-hash-ext/md5/md5.h -------------------------------------------------------------------------------- /057-beginners-quest/admin_ui/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/admin_ui/go.py -------------------------------------------------------------------------------- /057-beginners-quest/admin_ui/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/admin_ui/notes -------------------------------------------------------------------------------- /057-beginners-quest/admin_ui/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/admin_ui/pwnbase.py -------------------------------------------------------------------------------- /057-beginners-quest/filter_env/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/filter_env/a.out -------------------------------------------------------------------------------- /057-beginners-quest/filter_env/asdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/filter_env/asdf.c -------------------------------------------------------------------------------- /057-beginners-quest/filter_env/asdf.so.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/filter_env/asdf.so.gz -------------------------------------------------------------------------------- /057-beginners-quest/filter_env/dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/filter_env/dump -------------------------------------------------------------------------------- /057-beginners-quest/firmware/notes: -------------------------------------------------------------------------------- 1 | mount -o loop diskimagefile ./somedirectory 2 | -------------------------------------------------------------------------------- /057-beginners-quest/floppy/driver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/floppy/driver.txt -------------------------------------------------------------------------------- /057-beginners-quest/floppy/www.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/floppy/www.com -------------------------------------------------------------------------------- /057-beginners-quest/floppy2/ASDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/floppy2/ASDF -------------------------------------------------------------------------------- /057-beginners-quest/floppy2/notes: -------------------------------------------------------------------------------- 1 | CTF{g00do1dDOS-FTW} 2 | 3 | 4 | -------------------------------------------------------------------------------- /057-beginners-quest/floppy2/www.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/floppy2/www.com -------------------------------------------------------------------------------- /057-beginners-quest/fridge_todo_list/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/fridge_todo_list/pwnbase.py -------------------------------------------------------------------------------- /057-beginners-quest/gatekeeper/notes: -------------------------------------------------------------------------------- 1 | nothing... 2 | -------------------------------------------------------------------------------- /057-beginners-quest/holey_beep/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/holey_beep/notes -------------------------------------------------------------------------------- /057-beginners-quest/js_safe/asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/js_safe/asdf -------------------------------------------------------------------------------- /057-beginners-quest/js_safe/js_safe_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/js_safe/js_safe_1.html -------------------------------------------------------------------------------- /057-beginners-quest/letter/asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/letter/asdf -------------------------------------------------------------------------------- /057-beginners-quest/media-db/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/media-db/notes -------------------------------------------------------------------------------- /057-beginners-quest/moar/notes: -------------------------------------------------------------------------------- 1 | nothing... 2 | -------------------------------------------------------------------------------- /057-beginners-quest/motd/notes: -------------------------------------------------------------------------------- 1 | 3000AcGS.. -------------------------------------------------------------------------------- /057-beginners-quest/motd/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/motd/pwnbase.py -------------------------------------------------------------------------------- /057-beginners-quest/ocr_is_cool/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/ocr_is_cool/notes.txt -------------------------------------------------------------------------------- /057-beginners-quest/ocr_is_cool/notes2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/ocr_is_cool/notes2.txt -------------------------------------------------------------------------------- /057-beginners-quest/poerty/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/poerty/note -------------------------------------------------------------------------------- /057-beginners-quest/router-ui/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/router-ui/notes -------------------------------------------------------------------------------- /057-beginners-quest/security_by_obscurity/passwd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/security_by_obscurity/passwd.txt -------------------------------------------------------------------------------- /057-beginners-quest/security_by_obscurity/passwd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/057-beginners-quest/security_by_obscurity/passwd.zip -------------------------------------------------------------------------------- /059-gctf-2018-better-zip/go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/059-gctf-2018-better-zip/go.py -------------------------------------------------------------------------------- /061-nanomites-windows/debuggee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/061-nanomites-windows/debuggee.cc -------------------------------------------------------------------------------- /061-nanomites-windows/debuggee.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | int Debuggee(); 3 | 4 | -------------------------------------------------------------------------------- /061-nanomites-windows/debugger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/061-nanomites-windows/debugger.cc -------------------------------------------------------------------------------- /061-nanomites-windows/debugger.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | int Debugger(); 3 | -------------------------------------------------------------------------------- /061-nanomites-windows/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/061-nanomites-windows/go.bat -------------------------------------------------------------------------------- /061-nanomites-windows/nano.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/061-nanomites-windows/nano.cc -------------------------------------------------------------------------------- /062-nanomites-linux/debuggee.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/062-nanomites-linux/debuggee.cc -------------------------------------------------------------------------------- /062-nanomites-linux/debuggee.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | int Debuggee(); 3 | 4 | -------------------------------------------------------------------------------- /062-nanomites-linux/debugger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/062-nanomites-linux/debugger.cc -------------------------------------------------------------------------------- /062-nanomites-linux/debugger.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | int Debugger(); 3 | -------------------------------------------------------------------------------- /062-nanomites-linux/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/062-nanomites-linux/go.sh -------------------------------------------------------------------------------- /062-nanomites-linux/nano.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/062-nanomites-linux/nano.cc -------------------------------------------------------------------------------- /065-tooooo/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/065-tooooo/pwnbase.py -------------------------------------------------------------------------------- /070-snes_backup/README.md: -------------------------------------------------------------------------------- 1 | Shift-registers I've used: 2 | sn74hc595n 3 | 4 | SNES game: Axelay (Konami) 5 | -------------------------------------------------------------------------------- /070-snes_backup/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/070-snes_backup/conv.py -------------------------------------------------------------------------------- /070-snes_backup/dump_snes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/070-snes_backup/dump_snes.ino -------------------------------------------------------------------------------- /072-irc-bot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/072-irc-bot/config.py -------------------------------------------------------------------------------- /072-irc-bot/consts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | USER_LEVEL_ADMIN = 1337 4 | -------------------------------------------------------------------------------- /072-irc-bot/irc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/072-irc-bot/irc.py -------------------------------------------------------------------------------- /072-irc-bot/pacynka.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import config 3 | 4 | 5 | -------------------------------------------------------------------------------- /077-srop/broken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/077-srop/broken.c -------------------------------------------------------------------------------- /077-srop/maps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/077-srop/maps.txt -------------------------------------------------------------------------------- /077-srop/pwnbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/077-srop/pwnbase.py -------------------------------------------------------------------------------- /077-srop/regs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/077-srop/regs.txt -------------------------------------------------------------------------------- /077-srop/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/077-srop/test.c -------------------------------------------------------------------------------- /105-dwitter/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/105-dwitter/c.js -------------------------------------------------------------------------------- /105-dwitter/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/105-dwitter/notes.js -------------------------------------------------------------------------------- /105-dwitter/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/105-dwitter/output.js -------------------------------------------------------------------------------- /105-dwitter/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/105-dwitter/test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gynvael/stream-en/HEAD/README.md --------------------------------------------------------------------------------