├── .template ├── README.md ├── dist │ └── .gitkeep ├── exploit.py └── pictures │ └── .gitkeep ├── AllesCTF19 └── Kuchenblech1 │ ├── Kuchenblech1.md │ ├── panic_html.PNG │ └── shellphp.PNG ├── BambiCTF_2021 └── ringring │ ├── App │ ├── .dockerignore │ ├── Dockerfile │ ├── app.py │ ├── gunicorn.conf.py │ ├── requirements.txt │ ├── templates │ │ ├── home.html │ │ └── service.html │ └── utils │ │ ├── __init__.py │ │ ├── db_helper.py │ │ ├── invoices_connector.py │ │ └── utils.py │ ├── InvoiceApp │ ├── .dockerignore │ ├── Dockerfile │ ├── Pipfile │ ├── __init__.py │ ├── accounting │ │ ├── outstanding-invoices.log │ │ └── settled-invoices.log │ ├── app.py │ ├── gunicorn.conf.py │ ├── logger-config.yml │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ └── invoice_db_helper.py │ ├── InvoicePostgres │ ├── .dockerignore │ ├── Dockerfile │ ├── init_db.sql │ └── postgresql.conf │ ├── Postgres │ ├── .dockerignore │ ├── Dockerfile │ ├── init_db.sql │ └── postgresql.conf │ ├── README.md │ ├── RotatorCronJob │ ├── Dockerfile │ ├── cron.allow │ ├── entry.sh │ ├── log_rotator.cron │ └── rotate_files.sh │ ├── docker-compose.yml │ └── exploits │ ├── invoices_exploit.py │ └── session_exploit.py ├── CONFidenceCTF2020 └── HAHA Jail │ ├── README.md │ ├── images │ └── home.png │ └── source │ ├── hack.php │ └── index.php ├── CyberApocalypse2022 ├── BlinkerFluids │ ├── README.md │ ├── exploit.py │ ├── images │ │ ├── list.png │ │ ├── requests1.png │ │ └── requests2.png │ └── web_blinkerfluids.zip ├── Compressor │ ├── pictures │ │ ├── 1.PNG │ │ ├── 2.PNG │ │ ├── 3.PNG │ │ └── 4.PNG │ └── writeup.md ├── Kryptos Support │ ├── README.md │ └── images │ │ ├── flag.png │ │ ├── login.png │ │ └── support.png └── Puppeteer │ ├── README.md │ └── forensics_puppeteer.zip ├── DaVinciCTF_2021 ├── Art Gallery │ ├── README.md │ ├── dec.py │ ├── dec2.jpg │ ├── dist │ │ ├── artgallery.pcap.xz │ │ └── flag_sur_fond_de_soleil_couchant.jpg │ └── pictures │ │ ├── base64.png │ │ ├── helper.png │ │ └── useragent.png ├── Authentication │ └── README.md ├── Bootless RSA │ └── README.md ├── Da Vinci vs Pacioli │ └── README.md ├── Flipping_tables │ ├── README.md │ └── exploit.py ├── Format_me │ ├── README.md │ └── exploit.py ├── Kanagawa │ ├── README.md │ ├── dist │ │ └── kanagawa │ └── exploit.py ├── Members │ └── README.md ├── Numbers │ ├── README.md │ └── exploit.py ├── Quotebook │ ├── README.md │ ├── dist │ │ ├── libc.so.6 │ │ ├── quotebook │ │ └── source.c │ └── exploit.py ├── Read │ ├── README.md │ └── pictures │ │ ├── flag.png │ │ └── solved.bmp └── Rocca Pia │ ├── README.md │ ├── dist │ └── rocca_pia │ └── solve.py ├── DarkCON2021 ├── Easy-ROP │ ├── README.md │ ├── dist │ │ └── easy-rop │ └── exploit.py ├── Pixelify │ ├── README.md │ ├── dist │ │ └── Pixelify.zip │ ├── exploit.py │ └── pictures │ │ └── flag.png ├── Risk_Security_Analyst_Alice_Vs_Eve │ ├── README.md │ ├── chats │ │ ├── bob.txt │ │ ├── charlie.txt │ │ ├── dan.txt │ │ └── erin.txt │ ├── dist │ │ └── Risk_Security_Analyst_Alice_Vs_Eve.zip │ └── exploit.py ├── Rookies_Choice_4_you │ ├── README.md │ └── dist │ │ └── dist.zip ├── Take_It_Easy │ ├── README.md │ ├── dist │ │ └── TAKE_IT_EASY.zip │ └── exploit2.py ├── Tony_And_James │ ├── README.md │ ├── dist │ │ └── Tony_And_James1.zip │ └── exploit.py ├── Travel_to_the_home │ ├── README.md │ └── pictures │ │ ├── chall.jpg │ │ ├── map_complete.jpg │ │ ├── map_point1.jpg │ │ ├── map_point1_zoomed.jpg │ │ ├── map_point2.jpg │ │ └── trains.jpg └── WTF_PHP │ ├── README.md │ ├── exploit.php │ └── pictures │ ├── etc.png │ ├── home.png │ └── phpinfo.png ├── EkopartyCTF_2022 └── NULL │ ├── README.md │ └── images │ ├── flag.png │ └── jwe.png ├── LineCTF └── diveinternal │ ├── 50e392a63630e8643c67c87b49934501 │ └── index.php │ ├── README.md │ ├── dist │ └── diveInternal.zip │ ├── key_gen.py │ └── pictures │ ├── dbHash.jpg │ ├── download.jpg │ ├── flag.jpg │ ├── key.jpg │ └── rollback0.jpg ├── README.md ├── Reply-Cyber-Security-Challenge-2020 ├── coding-100 │ ├── README.md │ ├── dist │ │ └── coding-100.zip │ └── exploit │ │ ├── The Time Machine by H. G. Wells.txt │ │ ├── solve.py │ │ └── words.txt ├── coding-200 │ ├── README.md │ └── exploit │ │ ├── ForceLevel.py │ │ ├── automatize.sh │ │ └── brute.py ├── misc-100 │ ├── README.md │ ├── first_challenge.txt │ ├── qr.png │ └── third_challenge.txt └── web-100 │ └── README.md ├── VolgaCTF_2020 └── netcorp │ ├── README.md │ ├── ServeComplaintServlet.class │ ├── ServeComplaintServlet.java │ ├── ServeScreenshotServlet.class │ ├── ServeScreenshotServlet.java │ ├── index.html │ ├── shell.jsp │ ├── upload.html │ └── web.xml ├── angstromCTF_2020 ├── bop_it │ ├── README.md │ ├── bop_it │ ├── bop_it.c │ └── exploit.py ├── defund's script │ ├── README.md │ ├── flag_response.png │ ├── request.png │ └── src.php ├── keysar │ ├── README.md │ └── decrypt.png ├── msd │ ├── README.md │ ├── breathe.jpg │ ├── output.png │ ├── public.py │ └── solve.py ├── psk │ ├── README.md │ ├── transmission.wav │ └── win-psk.png ├── reasonably_strong_algorithm │ ├── README.md │ ├── rsa.txt │ └── solve.py ├── windows_of_opportunity │ ├── README.md │ ├── notepad.png │ └── windows_of_opportunity.exe ├── woooosh │ ├── README.md │ ├── index.js │ └── solve.js ├── ws1 │ ├── README.md │ └── recording.pcapng └── ws2 │ ├── README.md │ ├── flag.jpg │ ├── http-traffic.png │ └── recording.pcapng ├── angstromCTF_2021 ├── Secure Login │ ├── README.MD │ ├── login │ └── login.c ├── archaic │ └── README.md ├── exclusive_cipher │ ├── README.md │ └── exploit.py ├── fish │ ├── README.md │ ├── dist │ │ └── fish.png │ └── pictures │ │ └── screenshot.png ├── float_on │ ├── README.md │ ├── dist │ │ └── float_on.c │ └── pictures │ │ └── stages.png ├── follow_the_currents │ ├── README.md │ ├── dist │ │ ├── enc │ │ └── source.py │ └── exploit.py ├── home_rolled_crypto │ ├── README.md │ ├── dist │ │ └── source.py │ └── exploit.py ├── im_so_random │ ├── README.md │ ├── dist │ │ └── source.py │ └── exploit.py ├── infinity_gauntlet │ ├── README.md │ └── dist │ │ ├── exploit.py │ │ └── infinity_gauntlet ├── jailbreak │ ├── README.md │ └── dist │ │ ├── exploit.py │ │ ├── extract.py │ │ ├── jailbreak │ │ └── strings.txt ├── jar │ ├── README.md │ ├── dist │ │ ├── .gitkeep │ │ ├── Dockerfile │ │ ├── jar.py │ │ └── pickle.jpg │ ├── exploit.py │ └── pictures │ │ └── .gitkeep ├── nomnomnom │ ├── README.md │ ├── dist │ │ └── deploy.zip │ ├── exploit.py │ ├── getflag.py │ ├── pictures │ │ ├── flag.png │ │ ├── game.png │ │ └── xss.png │ └── report.py ├── oracle_of_blair │ ├── README.md │ ├── dist │ │ └── source.py │ ├── exploit.py │ └── images │ │ └── CBC_decryption.png ├── reaction_py │ ├── README.md │ ├── dist │ │ ├── server.py │ │ └── visit.js │ ├── exploit.py │ ├── index.php │ └── pictures │ │ ├── flag.png │ │ └── overview.png ├── revex │ └── README.md ├── sea_of_quills │ ├── README.md │ ├── dist │ │ ├── .gitkeep │ │ └── app.rb │ └── pictures │ │ ├── .gitkeep │ │ ├── flag.png │ │ └── table_names.png ├── sosig │ ├── README.md │ └── exploit.py ├── spoofy │ ├── README.md │ └── dist │ │ ├── .gitignore │ │ ├── Procfile │ │ ├── app.py │ │ └── requirements.txt └── substitution │ ├── README.md │ └── dist │ ├── chall.py │ ├── downloadValues.py │ └── dump.txt ├── corCTF_2021 ├── AliceInCeptionland │ ├── AliceInCeptionland.exe │ ├── README.md │ ├── images │ │ └── game.png │ └── solve2.py ├── Chainblock │ ├── README.md │ ├── chainblock │ ├── chainblock.c │ ├── exploit.py │ ├── ld-linux-x86-64.so.2 │ └── libc.so.6 ├── Cshell │ ├── Cshell │ ├── Cshell.c │ ├── README.md │ ├── images │ │ └── Cshell_heap_status.png │ └── solve.py ├── YeetCode │ ├── README.md │ ├── exploit.py │ └── yeetcode.tar.xz ├── babyrev │ ├── README.md │ ├── babyrev │ └── solve.py ├── devme │ ├── README.md │ └── images │ │ ├── form.png │ │ └── req.png ├── dividing_secrets │ ├── exploit.py │ └── writeup.md ├── smofogwar │ ├── README.md │ ├── dist │ │ └── smogofwar.zip │ └── pictures │ │ ├── chess.png │ │ └── solve.png ├── supercomputer │ ├── exploit.py │ └── writeup.md └── zoom_zoom_vision │ ├── README.md │ ├── solve.py │ └── zoom_zoom_vision.exe ├── cryptoCTF_2021 ├── Keybase │ ├── AES_CBC_decryption.png │ ├── exploit.py │ └── keybase.md ├── Rima │ ├── README.md │ ├── g.enc │ ├── h.enc │ ├── rima.py │ └── solve.py ├── farm │ ├── README.md │ ├── enc.txt │ ├── farm.py │ └── solve.py └── tiny_ecc │ ├── README.md │ ├── find_prime.py │ ├── mini_ecdsa.py │ ├── solve.py │ └── tiny_ecc.py ├── fwordCTF └── jailoo_warmup │ ├── README.md │ ├── encoder.py │ ├── images │ ├── flag.png │ └── site.png │ └── jailoo.php ├── hackcon ├── baby_b0f │ ├── README.md │ ├── baby_b0f │ ├── exploit.py │ └── main.png └── small_icon_much_wow │ ├── 2.jpeg │ ├── README.md │ ├── decoder.py │ └── stego.jpg ├── hacktivitycon_2021 ├── 2ez │ ├── 2ez │ ├── 2ez_fixed.jpg │ └── README.md ├── Bad Words │ ├── README.md │ └── images │ │ ├── shell.png │ │ ├── solution.png │ │ ├── tests.png │ │ └── tests2.png ├── Jed Sheeran │ ├── README.md │ └── images │ │ ├── description.png │ │ ├── search.png │ │ └── song.png ├── OPA Secrets │ └── README.md ├── Target Practice │ ├── README.md │ ├── images │ │ └── flag.png │ └── target_practice.gif ├── To Do │ ├── README.md │ ├── images │ │ ├── db.png │ │ ├── flag.png │ │ └── records.png │ ├── todo.apk │ └── todos.db ├── Triforce │ ├── AES_CBC.png │ ├── README.md │ ├── exploit.py │ └── server.py ├── Tzunami │ ├── README.md │ ├── images │ │ └── flag.png │ └── tsunami.wav ├── YABO │ ├── README.md │ ├── YABO │ └── exploit.py ├── dotbat │ ├── README.md │ ├── dotbat.mpga │ └── stage2.bat ├── pawned │ ├── README.md │ ├── exploit.py │ ├── images │ │ ├── arw.png │ │ └── heap_layout.png │ ├── libc-2.31.so │ └── pawned ├── phonetic │ ├── README.md │ ├── phonetic │ ├── phonetic_cleaned.php │ └── uuencoded.txt ├── reactor │ ├── README.md │ ├── brute.js │ ├── images │ │ ├── apk_screen.png │ │ └── decoded.png │ └── reactor.apk └── shelle-2 │ ├── Dockerfile │ ├── README.md │ ├── exploit.py │ ├── libc6_2.31-0ubuntu9_amd64.so │ └── shelle-2 ├── hxpCTF2020 └── Secure Program Config │ ├── README.md │ ├── Secure Program Config-f0a3e4f922071458.tar.xz │ ├── images │ ├── cheat.png │ ├── configuration.png │ ├── memory.png │ └── panel.png │ └── setup.exe ├── kksCTF_2020 ├── Blind Shell │ └── README.md ├── Encrypted Storage 1 │ ├── README.md │ ├── hexedit.png │ └── rockyou.png ├── Encrypted Storage 2 │ └── README.md ├── Lynx │ └── README.md ├── Red Green Blue Cadets │ ├── README.md │ ├── cadets.png │ └── stegsolve.png ├── bson │ └── README.md ├── cypherpunk │ ├── README.md │ ├── decrypt.sh │ ├── download.sh │ ├── extract.py │ ├── images │ │ ├── first_report.png │ │ ├── home.png │ │ └── upload.png │ ├── private │ └── public ├── fonction_spéciale │ └── README.md ├── happy_new_year │ ├── README.md │ ├── gift │ ├── images │ │ ├── entry.png │ │ ├── first_block.png │ │ ├── first_flag.png │ │ ├── first_shell.png │ │ ├── inbox.png │ │ ├── login.png │ │ ├── main.png │ │ ├── participants.png │ │ ├── payload_1.png │ │ ├── query_reconstruction.png │ │ ├── register.png │ │ ├── relax.png │ │ ├── second_block.png │ │ ├── secret_main.png │ │ ├── select_users.png │ │ ├── send_a_message.png │ │ ├── send_message_wrapper.png │ │ ├── server.png │ │ ├── show_parti_wrapper.png │ │ ├── third_block.png │ │ ├── third_flag.png │ │ ├── third_part.png │ │ ├── user_register.png │ │ ├── user_register_query.png │ │ └── vuln.png │ ├── secret │ └── src │ │ ├── Makefile │ │ ├── lib │ │ ├── md5.c │ │ ├── md5.h │ │ ├── server.c │ │ ├── server.h │ │ ├── sqlite_helper.c │ │ └── sqlite_helper.h │ │ └── main.c ├── hashfunction │ ├── README.md │ ├── brute.go.png │ ├── brute_force.go │ ├── post.png │ └── server.go └── motor_sounds │ ├── README.md │ ├── cura1.png │ ├── cura2.png │ ├── file.gcode │ └── gcode.png ├── knightctf ├── most_secure_calculator_1 │ ├── README.md │ └── pictures │ │ ├── 1.PNG │ │ ├── 2.PNG │ │ ├── 3.PNG │ │ └── 4.PNG ├── most_secure_calculator_2 │ ├── README.md │ └── pictures │ │ ├── 1.PNG │ │ └── 2.PNG └── my_php_site │ ├── README.md │ └── pictures │ └── 1.PNG ├── m0lecon2021 ├── Little-Alchemy │ ├── README.md │ └── dist │ │ ├── exploit.py │ │ └── littleAlchemy └── babysign │ ├── writeup.md │ └── writeup.py ├── mHackeCTF └── mhackeErp │ ├── README.txt │ ├── exploit.py │ ├── pictures │ ├── traffic.png │ └── wireshark.png │ └── traffic.txt ├── peaCTF └── EducatedGuess │ ├── generateObject.php │ ├── query.php │ ├── solve.py │ └── writeup.md ├── redpwnCTF ├── crypt │ ├── README.md │ └── index.html ├── dunce_crypto │ └── README.md ├── easycipher │ ├── README.md │ ├── deobfuscated.js │ └── index.html ├── generic_crackme │ ├── README.md │ ├── check.png │ ├── decoder.py │ ├── generic_crackme │ ├── inc.png │ └── main.png ├── generic_crackme_redux │ ├── README.md │ ├── check.png │ ├── flag.txt │ ├── generic_crackme_redux │ └── main.png ├── genericpyjail │ ├── README.md │ └── blacklist.txt ├── ghast │ ├── README.md │ └── ghast.js ├── he_sed_she_sed │ └── README.md ├── red-pwn-is │ └── writeup.md ├── rot26 │ ├── README.md │ ├── exploit.py │ ├── rot26 │ └── rot26.c ├── super_hash │ ├── README.md │ └── solve.php ├── tux_trivia_show │ ├── README.md │ └── solve.py └── zipline │ ├── README.md │ ├── air.png │ ├── exploit.py │ ├── function_list.png │ ├── i_got_u.png │ ├── main.png │ ├── zipline │ └── zipline.png └── zer0ptsCTF_2021 └── Not Beginner's Stack ├── README.md ├── exploit.py └── not_beginners_stack ├── .gdb_history ├── FOR_BEGINNERS.md ├── chall ├── main.S └── payload.txt /.template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/.template/README.md -------------------------------------------------------------------------------- /.template/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.template/exploit.py: -------------------------------------------------------------------------------- 1 | # Write the exploit if you have one -------------------------------------------------------------------------------- /.template/pictures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AllesCTF19/Kuchenblech1/Kuchenblech1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/AllesCTF19/Kuchenblech1/Kuchenblech1.md -------------------------------------------------------------------------------- /AllesCTF19/Kuchenblech1/panic_html.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/AllesCTF19/Kuchenblech1/panic_html.PNG -------------------------------------------------------------------------------- /AllesCTF19/Kuchenblech1/shellphp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/AllesCTF19/Kuchenblech1/shellphp.PNG -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/.dockerignore -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/Dockerfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/app.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/gunicorn.conf.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/requirements.txt -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/templates/home.html -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/templates/service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/templates/service.html -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/utils/__init__.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/utils/db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/utils/db_helper.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/utils/invoices_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/utils/invoices_connector.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/App/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/App/utils/utils.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/.dockerignore -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/Dockerfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/Pipfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/accounting/outstanding-invoices.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/accounting/outstanding-invoices.log -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/accounting/settled-invoices.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/accounting/settled-invoices.log -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/app.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/gunicorn.conf.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/logger-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/logger-config.yml -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/requirements.txt -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoiceApp/utils/invoice_db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoiceApp/utils/invoice_db_helper.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoicePostgres/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoicePostgres/.dockerignore -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoicePostgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoicePostgres/Dockerfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoicePostgres/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoicePostgres/init_db.sql -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/InvoicePostgres/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/InvoicePostgres/postgresql.conf -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/Postgres/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/Postgres/.dockerignore -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/Postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/Postgres/Dockerfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/Postgres/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/Postgres/init_db.sql -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/Postgres/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/Postgres/postgresql.conf -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/README.md -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/RotatorCronJob/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/RotatorCronJob/Dockerfile -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/RotatorCronJob/cron.allow: -------------------------------------------------------------------------------- 1 | hotelguest 2 | root 3 | -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/RotatorCronJob/entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/RotatorCronJob/entry.sh -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/RotatorCronJob/log_rotator.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/RotatorCronJob/log_rotator.cron -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/RotatorCronJob/rotate_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/RotatorCronJob/rotate_files.sh -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/docker-compose.yml -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/exploits/invoices_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/exploits/invoices_exploit.py -------------------------------------------------------------------------------- /BambiCTF_2021/ringring/exploits/session_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/BambiCTF_2021/ringring/exploits/session_exploit.py -------------------------------------------------------------------------------- /CONFidenceCTF2020/HAHA Jail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CONFidenceCTF2020/HAHA Jail/README.md -------------------------------------------------------------------------------- /CONFidenceCTF2020/HAHA Jail/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CONFidenceCTF2020/HAHA Jail/images/home.png -------------------------------------------------------------------------------- /CONFidenceCTF2020/HAHA Jail/source/hack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CONFidenceCTF2020/HAHA Jail/source/hack.php -------------------------------------------------------------------------------- /CONFidenceCTF2020/HAHA Jail/source/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CONFidenceCTF2020/HAHA Jail/source/index.php -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/README.md -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/exploit.py -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/images/list.png -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/images/requests1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/images/requests1.png -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/images/requests2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/images/requests2.png -------------------------------------------------------------------------------- /CyberApocalypse2022/BlinkerFluids/web_blinkerfluids.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/BlinkerFluids/web_blinkerfluids.zip -------------------------------------------------------------------------------- /CyberApocalypse2022/Compressor/pictures/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Compressor/pictures/1.PNG -------------------------------------------------------------------------------- /CyberApocalypse2022/Compressor/pictures/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Compressor/pictures/2.PNG -------------------------------------------------------------------------------- /CyberApocalypse2022/Compressor/pictures/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Compressor/pictures/3.PNG -------------------------------------------------------------------------------- /CyberApocalypse2022/Compressor/pictures/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Compressor/pictures/4.PNG -------------------------------------------------------------------------------- /CyberApocalypse2022/Compressor/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Compressor/writeup.md -------------------------------------------------------------------------------- /CyberApocalypse2022/Kryptos Support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Kryptos Support/README.md -------------------------------------------------------------------------------- /CyberApocalypse2022/Kryptos Support/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Kryptos Support/images/flag.png -------------------------------------------------------------------------------- /CyberApocalypse2022/Kryptos Support/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Kryptos Support/images/login.png -------------------------------------------------------------------------------- /CyberApocalypse2022/Kryptos Support/images/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Kryptos Support/images/support.png -------------------------------------------------------------------------------- /CyberApocalypse2022/Puppeteer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Puppeteer/README.md -------------------------------------------------------------------------------- /CyberApocalypse2022/Puppeteer/forensics_puppeteer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/CyberApocalypse2022/Puppeteer/forensics_puppeteer.zip -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/dec.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/dec2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/dec2.jpg -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/dist/artgallery.pcap.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/dist/artgallery.pcap.xz -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/dist/flag_sur_fond_de_soleil_couchant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/dist/flag_sur_fond_de_soleil_couchant.jpg -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/pictures/base64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/pictures/base64.png -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/pictures/helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/pictures/helper.png -------------------------------------------------------------------------------- /DaVinciCTF_2021/Art Gallery/pictures/useragent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Art Gallery/pictures/useragent.png -------------------------------------------------------------------------------- /DaVinciCTF_2021/Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Authentication/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Bootless RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Bootless RSA/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Da Vinci vs Pacioli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Da Vinci vs Pacioli/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Flipping_tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Flipping_tables/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Flipping_tables/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Flipping_tables/exploit.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Format_me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Format_me/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Format_me/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Format_me/exploit.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Kanagawa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Kanagawa/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Kanagawa/dist/kanagawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Kanagawa/dist/kanagawa -------------------------------------------------------------------------------- /DaVinciCTF_2021/Kanagawa/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Kanagawa/exploit.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Members/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Members/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Numbers/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Numbers/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Numbers/exploit.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Quotebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Quotebook/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Quotebook/dist/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Quotebook/dist/libc.so.6 -------------------------------------------------------------------------------- /DaVinciCTF_2021/Quotebook/dist/quotebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Quotebook/dist/quotebook -------------------------------------------------------------------------------- /DaVinciCTF_2021/Quotebook/dist/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Quotebook/dist/source.c -------------------------------------------------------------------------------- /DaVinciCTF_2021/Quotebook/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Quotebook/exploit.py -------------------------------------------------------------------------------- /DaVinciCTF_2021/Read/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Read/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Read/pictures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Read/pictures/flag.png -------------------------------------------------------------------------------- /DaVinciCTF_2021/Read/pictures/solved.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Read/pictures/solved.bmp -------------------------------------------------------------------------------- /DaVinciCTF_2021/Rocca Pia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Rocca Pia/README.md -------------------------------------------------------------------------------- /DaVinciCTF_2021/Rocca Pia/dist/rocca_pia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Rocca Pia/dist/rocca_pia -------------------------------------------------------------------------------- /DaVinciCTF_2021/Rocca Pia/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DaVinciCTF_2021/Rocca Pia/solve.py -------------------------------------------------------------------------------- /DarkCON2021/Easy-ROP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Easy-ROP/README.md -------------------------------------------------------------------------------- /DarkCON2021/Easy-ROP/dist/easy-rop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Easy-ROP/dist/easy-rop -------------------------------------------------------------------------------- /DarkCON2021/Easy-ROP/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Easy-ROP/exploit.py -------------------------------------------------------------------------------- /DarkCON2021/Pixelify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Pixelify/README.md -------------------------------------------------------------------------------- /DarkCON2021/Pixelify/dist/Pixelify.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Pixelify/dist/Pixelify.zip -------------------------------------------------------------------------------- /DarkCON2021/Pixelify/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Pixelify/exploit.py -------------------------------------------------------------------------------- /DarkCON2021/Pixelify/pictures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Pixelify/pictures/flag.png -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/README.md -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/bob.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/bob.txt -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/charlie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/charlie.txt -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/dan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/dan.txt -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/erin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/chats/erin.txt -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/dist/Risk_Security_Analyst_Alice_Vs_Eve.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/dist/Risk_Security_Analyst_Alice_Vs_Eve.zip -------------------------------------------------------------------------------- /DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Risk_Security_Analyst_Alice_Vs_Eve/exploit.py -------------------------------------------------------------------------------- /DarkCON2021/Rookies_Choice_4_you/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Rookies_Choice_4_you/README.md -------------------------------------------------------------------------------- /DarkCON2021/Rookies_Choice_4_you/dist/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Rookies_Choice_4_you/dist/dist.zip -------------------------------------------------------------------------------- /DarkCON2021/Take_It_Easy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Take_It_Easy/README.md -------------------------------------------------------------------------------- /DarkCON2021/Take_It_Easy/dist/TAKE_IT_EASY.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Take_It_Easy/dist/TAKE_IT_EASY.zip -------------------------------------------------------------------------------- /DarkCON2021/Take_It_Easy/exploit2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Take_It_Easy/exploit2.py -------------------------------------------------------------------------------- /DarkCON2021/Tony_And_James/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Tony_And_James/README.md -------------------------------------------------------------------------------- /DarkCON2021/Tony_And_James/dist/Tony_And_James1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Tony_And_James/dist/Tony_And_James1.zip -------------------------------------------------------------------------------- /DarkCON2021/Tony_And_James/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Tony_And_James/exploit.py -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/README.md -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/chall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/chall.jpg -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/map_complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/map_complete.jpg -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/map_point1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/map_point1.jpg -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/map_point1_zoomed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/map_point1_zoomed.jpg -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/map_point2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/map_point2.jpg -------------------------------------------------------------------------------- /DarkCON2021/Travel_to_the_home/pictures/trains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/Travel_to_the_home/pictures/trains.jpg -------------------------------------------------------------------------------- /DarkCON2021/WTF_PHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/WTF_PHP/README.md -------------------------------------------------------------------------------- /DarkCON2021/WTF_PHP/exploit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/WTF_PHP/exploit.php -------------------------------------------------------------------------------- /DarkCON2021/WTF_PHP/pictures/etc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/WTF_PHP/pictures/etc.png -------------------------------------------------------------------------------- /DarkCON2021/WTF_PHP/pictures/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/WTF_PHP/pictures/home.png -------------------------------------------------------------------------------- /DarkCON2021/WTF_PHP/pictures/phpinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/DarkCON2021/WTF_PHP/pictures/phpinfo.png -------------------------------------------------------------------------------- /EkopartyCTF_2022/NULL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/EkopartyCTF_2022/NULL/README.md -------------------------------------------------------------------------------- /EkopartyCTF_2022/NULL/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/EkopartyCTF_2022/NULL/images/flag.png -------------------------------------------------------------------------------- /EkopartyCTF_2022/NULL/images/jwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/EkopartyCTF_2022/NULL/images/jwe.png -------------------------------------------------------------------------------- /LineCTF/diveinternal/50e392a63630e8643c67c87b49934501/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LineCTF/diveinternal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/README.md -------------------------------------------------------------------------------- /LineCTF/diveinternal/dist/diveInternal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/dist/diveInternal.zip -------------------------------------------------------------------------------- /LineCTF/diveinternal/key_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/key_gen.py -------------------------------------------------------------------------------- /LineCTF/diveinternal/pictures/dbHash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/pictures/dbHash.jpg -------------------------------------------------------------------------------- /LineCTF/diveinternal/pictures/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/pictures/download.jpg -------------------------------------------------------------------------------- /LineCTF/diveinternal/pictures/flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/pictures/flag.jpg -------------------------------------------------------------------------------- /LineCTF/diveinternal/pictures/key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/pictures/key.jpg -------------------------------------------------------------------------------- /LineCTF/diveinternal/pictures/rollback0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/LineCTF/diveinternal/pictures/rollback0.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/README.md -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-100/README.md -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-100/dist/coding-100.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-100/dist/coding-100.zip -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-100/exploit/The Time Machine by H. G. Wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-100/exploit/The Time Machine by H. G. Wells.txt -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-100/exploit/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-100/exploit/solve.py -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-100/exploit/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-100/exploit/words.txt -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-200/README.md -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-200/exploit/ForceLevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-200/exploit/ForceLevel.py -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-200/exploit/automatize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-200/exploit/automatize.sh -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/coding-200/exploit/brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/coding-200/exploit/brute.py -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/misc-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/misc-100/README.md -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/misc-100/first_challenge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/misc-100/first_challenge.txt -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/misc-100/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/misc-100/qr.png -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/misc-100/third_challenge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/misc-100/third_challenge.txt -------------------------------------------------------------------------------- /Reply-Cyber-Security-Challenge-2020/web-100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/Reply-Cyber-Security-Challenge-2020/web-100/README.md -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/README.md -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/ServeComplaintServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/ServeComplaintServlet.class -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/ServeComplaintServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/ServeComplaintServlet.java -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/ServeScreenshotServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/ServeScreenshotServlet.class -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/ServeScreenshotServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/ServeScreenshotServlet.java -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/index.html -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/shell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/shell.jsp -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/upload.html -------------------------------------------------------------------------------- /VolgaCTF_2020/netcorp/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/VolgaCTF_2020/netcorp/web.xml -------------------------------------------------------------------------------- /angstromCTF_2020/bop_it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/bop_it/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/bop_it/bop_it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/bop_it/bop_it -------------------------------------------------------------------------------- /angstromCTF_2020/bop_it/bop_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/bop_it/bop_it.c -------------------------------------------------------------------------------- /angstromCTF_2020/bop_it/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/bop_it/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2020/defund's script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/defund's script/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/defund's script/flag_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/defund's script/flag_response.png -------------------------------------------------------------------------------- /angstromCTF_2020/defund's script/request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/defund's script/request.png -------------------------------------------------------------------------------- /angstromCTF_2020/defund's script/src.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/defund's script/src.php -------------------------------------------------------------------------------- /angstromCTF_2020/keysar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/keysar/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/keysar/decrypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/keysar/decrypt.png -------------------------------------------------------------------------------- /angstromCTF_2020/msd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/msd/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/msd/breathe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/msd/breathe.jpg -------------------------------------------------------------------------------- /angstromCTF_2020/msd/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/msd/output.png -------------------------------------------------------------------------------- /angstromCTF_2020/msd/public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/msd/public.py -------------------------------------------------------------------------------- /angstromCTF_2020/msd/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/msd/solve.py -------------------------------------------------------------------------------- /angstromCTF_2020/psk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/psk/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/psk/transmission.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/psk/transmission.wav -------------------------------------------------------------------------------- /angstromCTF_2020/psk/win-psk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/psk/win-psk.png -------------------------------------------------------------------------------- /angstromCTF_2020/reasonably_strong_algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/reasonably_strong_algorithm/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/reasonably_strong_algorithm/rsa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/reasonably_strong_algorithm/rsa.txt -------------------------------------------------------------------------------- /angstromCTF_2020/reasonably_strong_algorithm/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/reasonably_strong_algorithm/solve.py -------------------------------------------------------------------------------- /angstromCTF_2020/windows_of_opportunity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/windows_of_opportunity/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/windows_of_opportunity/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/windows_of_opportunity/notepad.png -------------------------------------------------------------------------------- /angstromCTF_2020/windows_of_opportunity/windows_of_opportunity.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/windows_of_opportunity/windows_of_opportunity.exe -------------------------------------------------------------------------------- /angstromCTF_2020/woooosh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/woooosh/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/woooosh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/woooosh/index.js -------------------------------------------------------------------------------- /angstromCTF_2020/woooosh/solve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/woooosh/solve.js -------------------------------------------------------------------------------- /angstromCTF_2020/ws1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws1/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/ws1/recording.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws1/recording.pcapng -------------------------------------------------------------------------------- /angstromCTF_2020/ws2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws2/README.md -------------------------------------------------------------------------------- /angstromCTF_2020/ws2/flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws2/flag.jpg -------------------------------------------------------------------------------- /angstromCTF_2020/ws2/http-traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws2/http-traffic.png -------------------------------------------------------------------------------- /angstromCTF_2020/ws2/recording.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2020/ws2/recording.pcapng -------------------------------------------------------------------------------- /angstromCTF_2021/Secure Login/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/Secure Login/README.MD -------------------------------------------------------------------------------- /angstromCTF_2021/Secure Login/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/Secure Login/login -------------------------------------------------------------------------------- /angstromCTF_2021/Secure Login/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/Secure Login/login.c -------------------------------------------------------------------------------- /angstromCTF_2021/archaic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/archaic/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/exclusive_cipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/exclusive_cipher/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/exclusive_cipher/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/exclusive_cipher/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/fish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/fish/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/fish/dist/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/fish/dist/fish.png -------------------------------------------------------------------------------- /angstromCTF_2021/fish/pictures/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/fish/pictures/screenshot.png -------------------------------------------------------------------------------- /angstromCTF_2021/float_on/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/float_on/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/float_on/dist/float_on.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/float_on/dist/float_on.c -------------------------------------------------------------------------------- /angstromCTF_2021/float_on/pictures/stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/float_on/pictures/stages.png -------------------------------------------------------------------------------- /angstromCTF_2021/follow_the_currents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/follow_the_currents/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/follow_the_currents/dist/enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/follow_the_currents/dist/enc -------------------------------------------------------------------------------- /angstromCTF_2021/follow_the_currents/dist/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/follow_the_currents/dist/source.py -------------------------------------------------------------------------------- /angstromCTF_2021/follow_the_currents/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/follow_the_currents/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/home_rolled_crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/home_rolled_crypto/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/home_rolled_crypto/dist/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/home_rolled_crypto/dist/source.py -------------------------------------------------------------------------------- /angstromCTF_2021/home_rolled_crypto/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/home_rolled_crypto/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/im_so_random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/im_so_random/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/im_so_random/dist/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/im_so_random/dist/source.py -------------------------------------------------------------------------------- /angstromCTF_2021/im_so_random/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/im_so_random/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/infinity_gauntlet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/infinity_gauntlet/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/infinity_gauntlet/dist/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/infinity_gauntlet/dist/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/infinity_gauntlet/dist/infinity_gauntlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/infinity_gauntlet/dist/infinity_gauntlet -------------------------------------------------------------------------------- /angstromCTF_2021/jailbreak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jailbreak/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/jailbreak/dist/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jailbreak/dist/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/jailbreak/dist/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jailbreak/dist/extract.py -------------------------------------------------------------------------------- /angstromCTF_2021/jailbreak/dist/jailbreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jailbreak/dist/jailbreak -------------------------------------------------------------------------------- /angstromCTF_2021/jailbreak/dist/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jailbreak/dist/strings.txt -------------------------------------------------------------------------------- /angstromCTF_2021/jar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jar/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/jar/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angstromCTF_2021/jar/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jar/dist/Dockerfile -------------------------------------------------------------------------------- /angstromCTF_2021/jar/dist/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jar/dist/jar.py -------------------------------------------------------------------------------- /angstromCTF_2021/jar/dist/pickle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jar/dist/pickle.jpg -------------------------------------------------------------------------------- /angstromCTF_2021/jar/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/jar/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/jar/pictures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/dist/deploy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/dist/deploy.zip -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/getflag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/getflag.py -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/pictures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/pictures/flag.png -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/pictures/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/pictures/game.png -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/pictures/xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/pictures/xss.png -------------------------------------------------------------------------------- /angstromCTF_2021/nomnomnom/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/nomnomnom/report.py -------------------------------------------------------------------------------- /angstromCTF_2021/oracle_of_blair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/oracle_of_blair/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/oracle_of_blair/dist/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/oracle_of_blair/dist/source.py -------------------------------------------------------------------------------- /angstromCTF_2021/oracle_of_blair/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/oracle_of_blair/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/oracle_of_blair/images/CBC_decryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/oracle_of_blair/images/CBC_decryption.png -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/dist/server.py -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/dist/visit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/dist/visit.js -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/index.php -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/pictures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/pictures/flag.png -------------------------------------------------------------------------------- /angstromCTF_2021/reaction_py/pictures/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/reaction_py/pictures/overview.png -------------------------------------------------------------------------------- /angstromCTF_2021/revex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/revex/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sea_of_quills/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/dist/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sea_of_quills/dist/app.rb -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/pictures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/pictures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sea_of_quills/pictures/flag.png -------------------------------------------------------------------------------- /angstromCTF_2021/sea_of_quills/pictures/table_names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sea_of_quills/pictures/table_names.png -------------------------------------------------------------------------------- /angstromCTF_2021/sosig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sosig/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/sosig/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/sosig/exploit.py -------------------------------------------------------------------------------- /angstromCTF_2021/spoofy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/spoofy/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/spoofy/dist/.gitignore: -------------------------------------------------------------------------------- 1 | win_env/* -------------------------------------------------------------------------------- /angstromCTF_2021/spoofy/dist/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /angstromCTF_2021/spoofy/dist/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/spoofy/dist/app.py -------------------------------------------------------------------------------- /angstromCTF_2021/spoofy/dist/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/spoofy/dist/requirements.txt -------------------------------------------------------------------------------- /angstromCTF_2021/substitution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/substitution/README.md -------------------------------------------------------------------------------- /angstromCTF_2021/substitution/dist/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/substitution/dist/chall.py -------------------------------------------------------------------------------- /angstromCTF_2021/substitution/dist/downloadValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/substitution/dist/downloadValues.py -------------------------------------------------------------------------------- /angstromCTF_2021/substitution/dist/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/angstromCTF_2021/substitution/dist/dump.txt -------------------------------------------------------------------------------- /corCTF_2021/AliceInCeptionland/AliceInCeptionland.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/AliceInCeptionland/AliceInCeptionland.exe -------------------------------------------------------------------------------- /corCTF_2021/AliceInCeptionland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/AliceInCeptionland/README.md -------------------------------------------------------------------------------- /corCTF_2021/AliceInCeptionland/images/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/AliceInCeptionland/images/game.png -------------------------------------------------------------------------------- /corCTF_2021/AliceInCeptionland/solve2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/AliceInCeptionland/solve2.py -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/README.md -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/chainblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/chainblock -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/chainblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/chainblock.c -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/exploit.py -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /corCTF_2021/Chainblock/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Chainblock/libc.so.6 -------------------------------------------------------------------------------- /corCTF_2021/Cshell/Cshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Cshell/Cshell -------------------------------------------------------------------------------- /corCTF_2021/Cshell/Cshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Cshell/Cshell.c -------------------------------------------------------------------------------- /corCTF_2021/Cshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Cshell/README.md -------------------------------------------------------------------------------- /corCTF_2021/Cshell/images/Cshell_heap_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Cshell/images/Cshell_heap_status.png -------------------------------------------------------------------------------- /corCTF_2021/Cshell/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/Cshell/solve.py -------------------------------------------------------------------------------- /corCTF_2021/YeetCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/YeetCode/README.md -------------------------------------------------------------------------------- /corCTF_2021/YeetCode/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/YeetCode/exploit.py -------------------------------------------------------------------------------- /corCTF_2021/YeetCode/yeetcode.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/YeetCode/yeetcode.tar.xz -------------------------------------------------------------------------------- /corCTF_2021/babyrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/babyrev/README.md -------------------------------------------------------------------------------- /corCTF_2021/babyrev/babyrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/babyrev/babyrev -------------------------------------------------------------------------------- /corCTF_2021/babyrev/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/babyrev/solve.py -------------------------------------------------------------------------------- /corCTF_2021/devme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/devme/README.md -------------------------------------------------------------------------------- /corCTF_2021/devme/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/devme/images/form.png -------------------------------------------------------------------------------- /corCTF_2021/devme/images/req.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/devme/images/req.png -------------------------------------------------------------------------------- /corCTF_2021/dividing_secrets/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/dividing_secrets/exploit.py -------------------------------------------------------------------------------- /corCTF_2021/dividing_secrets/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/dividing_secrets/writeup.md -------------------------------------------------------------------------------- /corCTF_2021/smofogwar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/smofogwar/README.md -------------------------------------------------------------------------------- /corCTF_2021/smofogwar/dist/smogofwar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/smofogwar/dist/smogofwar.zip -------------------------------------------------------------------------------- /corCTF_2021/smofogwar/pictures/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/smofogwar/pictures/chess.png -------------------------------------------------------------------------------- /corCTF_2021/smofogwar/pictures/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/smofogwar/pictures/solve.png -------------------------------------------------------------------------------- /corCTF_2021/supercomputer/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/supercomputer/exploit.py -------------------------------------------------------------------------------- /corCTF_2021/supercomputer/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/supercomputer/writeup.md -------------------------------------------------------------------------------- /corCTF_2021/zoom_zoom_vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/zoom_zoom_vision/README.md -------------------------------------------------------------------------------- /corCTF_2021/zoom_zoom_vision/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/zoom_zoom_vision/solve.py -------------------------------------------------------------------------------- /corCTF_2021/zoom_zoom_vision/zoom_zoom_vision.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/corCTF_2021/zoom_zoom_vision/zoom_zoom_vision.exe -------------------------------------------------------------------------------- /cryptoCTF_2021/Keybase/AES_CBC_decryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Keybase/AES_CBC_decryption.png -------------------------------------------------------------------------------- /cryptoCTF_2021/Keybase/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Keybase/exploit.py -------------------------------------------------------------------------------- /cryptoCTF_2021/Keybase/keybase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Keybase/keybase.md -------------------------------------------------------------------------------- /cryptoCTF_2021/Rima/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Rima/README.md -------------------------------------------------------------------------------- /cryptoCTF_2021/Rima/g.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Rima/g.enc -------------------------------------------------------------------------------- /cryptoCTF_2021/Rima/h.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Rima/h.enc -------------------------------------------------------------------------------- /cryptoCTF_2021/Rima/rima.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Rima/rima.py -------------------------------------------------------------------------------- /cryptoCTF_2021/Rima/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/Rima/solve.py -------------------------------------------------------------------------------- /cryptoCTF_2021/farm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/farm/README.md -------------------------------------------------------------------------------- /cryptoCTF_2021/farm/enc.txt: -------------------------------------------------------------------------------- 1 | enc = 805c9GMYuD5RefTmabUNfS9N9YrkwbAbdZE0df91uCEytcoy9FDSbZ8Ay8jj 2 | -------------------------------------------------------------------------------- /cryptoCTF_2021/farm/farm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/farm/farm.py -------------------------------------------------------------------------------- /cryptoCTF_2021/farm/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/farm/solve.py -------------------------------------------------------------------------------- /cryptoCTF_2021/tiny_ecc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/tiny_ecc/README.md -------------------------------------------------------------------------------- /cryptoCTF_2021/tiny_ecc/find_prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/tiny_ecc/find_prime.py -------------------------------------------------------------------------------- /cryptoCTF_2021/tiny_ecc/mini_ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/tiny_ecc/mini_ecdsa.py -------------------------------------------------------------------------------- /cryptoCTF_2021/tiny_ecc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/tiny_ecc/solve.py -------------------------------------------------------------------------------- /cryptoCTF_2021/tiny_ecc/tiny_ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/cryptoCTF_2021/tiny_ecc/tiny_ecc.py -------------------------------------------------------------------------------- /fwordCTF/jailoo_warmup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/fwordCTF/jailoo_warmup/README.md -------------------------------------------------------------------------------- /fwordCTF/jailoo_warmup/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/fwordCTF/jailoo_warmup/encoder.py -------------------------------------------------------------------------------- /fwordCTF/jailoo_warmup/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/fwordCTF/jailoo_warmup/images/flag.png -------------------------------------------------------------------------------- /fwordCTF/jailoo_warmup/images/site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/fwordCTF/jailoo_warmup/images/site.png -------------------------------------------------------------------------------- /fwordCTF/jailoo_warmup/jailoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/fwordCTF/jailoo_warmup/jailoo.php -------------------------------------------------------------------------------- /hackcon/baby_b0f/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/baby_b0f/README.md -------------------------------------------------------------------------------- /hackcon/baby_b0f/baby_b0f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/baby_b0f/baby_b0f -------------------------------------------------------------------------------- /hackcon/baby_b0f/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/baby_b0f/exploit.py -------------------------------------------------------------------------------- /hackcon/baby_b0f/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/baby_b0f/main.png -------------------------------------------------------------------------------- /hackcon/small_icon_much_wow/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/small_icon_much_wow/2.jpeg -------------------------------------------------------------------------------- /hackcon/small_icon_much_wow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/small_icon_much_wow/README.md -------------------------------------------------------------------------------- /hackcon/small_icon_much_wow/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/small_icon_much_wow/decoder.py -------------------------------------------------------------------------------- /hackcon/small_icon_much_wow/stego.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hackcon/small_icon_much_wow/stego.jpg -------------------------------------------------------------------------------- /hacktivitycon_2021/2ez/2ez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/2ez/2ez -------------------------------------------------------------------------------- /hacktivitycon_2021/2ez/2ez_fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/2ez/2ez_fixed.jpg -------------------------------------------------------------------------------- /hacktivitycon_2021/2ez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/2ez/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Bad Words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Bad Words/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Bad Words/images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Bad Words/images/shell.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Bad Words/images/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Bad Words/images/solution.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Bad Words/images/tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Bad Words/images/tests.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Bad Words/images/tests2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Bad Words/images/tests2.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Jed Sheeran/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Jed Sheeran/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Jed Sheeran/images/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Jed Sheeran/images/description.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Jed Sheeran/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Jed Sheeran/images/search.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Jed Sheeran/images/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Jed Sheeran/images/song.png -------------------------------------------------------------------------------- /hacktivitycon_2021/OPA Secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/OPA Secrets/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Target Practice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Target Practice/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Target Practice/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Target Practice/images/flag.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Target Practice/target_practice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Target Practice/target_practice.gif -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/images/db.png -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/images/flag.png -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/images/records.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/images/records.png -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/todo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/todo.apk -------------------------------------------------------------------------------- /hacktivitycon_2021/To Do/todos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/To Do/todos.db -------------------------------------------------------------------------------- /hacktivitycon_2021/Triforce/AES_CBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Triforce/AES_CBC.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Triforce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Triforce/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Triforce/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Triforce/exploit.py -------------------------------------------------------------------------------- /hacktivitycon_2021/Triforce/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Triforce/server.py -------------------------------------------------------------------------------- /hacktivitycon_2021/Tzunami/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Tzunami/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/Tzunami/images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Tzunami/images/flag.png -------------------------------------------------------------------------------- /hacktivitycon_2021/Tzunami/tsunami.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/Tzunami/tsunami.wav -------------------------------------------------------------------------------- /hacktivitycon_2021/YABO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/YABO/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/YABO/YABO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/YABO/YABO -------------------------------------------------------------------------------- /hacktivitycon_2021/YABO/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/YABO/exploit.py -------------------------------------------------------------------------------- /hacktivitycon_2021/dotbat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/dotbat/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/dotbat/dotbat.mpga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/dotbat/dotbat.mpga -------------------------------------------------------------------------------- /hacktivitycon_2021/dotbat/stage2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/dotbat/stage2.bat -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/exploit.py -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/images/arw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/images/arw.png -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/images/heap_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/images/heap_layout.png -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/libc-2.31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/libc-2.31.so -------------------------------------------------------------------------------- /hacktivitycon_2021/pawned/pawned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/pawned/pawned -------------------------------------------------------------------------------- /hacktivitycon_2021/phonetic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/phonetic/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/phonetic/phonetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/phonetic/phonetic -------------------------------------------------------------------------------- /hacktivitycon_2021/phonetic/phonetic_cleaned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/phonetic/phonetic_cleaned.php -------------------------------------------------------------------------------- /hacktivitycon_2021/phonetic/uuencoded.txt: -------------------------------------------------------------------------------- 1 | begin 644 uuencode.uu 2 | F9FQA9WLY8C5C-#,Q,V0Q,CDU.#,U-&)E-C(X-&9C9#8S9&0R-GT` 3 | ` 4 | end 5 | END -------------------------------------------------------------------------------- /hacktivitycon_2021/reactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/reactor/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/reactor/brute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/reactor/brute.js -------------------------------------------------------------------------------- /hacktivitycon_2021/reactor/images/apk_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/reactor/images/apk_screen.png -------------------------------------------------------------------------------- /hacktivitycon_2021/reactor/images/decoded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/reactor/images/decoded.png -------------------------------------------------------------------------------- /hacktivitycon_2021/reactor/reactor.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/reactor/reactor.apk -------------------------------------------------------------------------------- /hacktivitycon_2021/shelle-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/shelle-2/Dockerfile -------------------------------------------------------------------------------- /hacktivitycon_2021/shelle-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/shelle-2/README.md -------------------------------------------------------------------------------- /hacktivitycon_2021/shelle-2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/shelle-2/exploit.py -------------------------------------------------------------------------------- /hacktivitycon_2021/shelle-2/libc6_2.31-0ubuntu9_amd64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/shelle-2/libc6_2.31-0ubuntu9_amd64.so -------------------------------------------------------------------------------- /hacktivitycon_2021/shelle-2/shelle-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hacktivitycon_2021/shelle-2/shelle-2 -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/README.md -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/Secure Program Config-f0a3e4f922071458.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/Secure Program Config-f0a3e4f922071458.tar.xz -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/images/cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/images/cheat.png -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/images/configuration.png -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/images/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/images/memory.png -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/images/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/images/panel.png -------------------------------------------------------------------------------- /hxpCTF2020/Secure Program Config/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/hxpCTF2020/Secure Program Config/setup.exe -------------------------------------------------------------------------------- /kksCTF_2020/Blind Shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Blind Shell/README.md -------------------------------------------------------------------------------- /kksCTF_2020/Encrypted Storage 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Encrypted Storage 1/README.md -------------------------------------------------------------------------------- /kksCTF_2020/Encrypted Storage 1/hexedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Encrypted Storage 1/hexedit.png -------------------------------------------------------------------------------- /kksCTF_2020/Encrypted Storage 1/rockyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Encrypted Storage 1/rockyou.png -------------------------------------------------------------------------------- /kksCTF_2020/Encrypted Storage 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Encrypted Storage 2/README.md -------------------------------------------------------------------------------- /kksCTF_2020/Lynx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Lynx/README.md -------------------------------------------------------------------------------- /kksCTF_2020/Red Green Blue Cadets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Red Green Blue Cadets/README.md -------------------------------------------------------------------------------- /kksCTF_2020/Red Green Blue Cadets/cadets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Red Green Blue Cadets/cadets.png -------------------------------------------------------------------------------- /kksCTF_2020/Red Green Blue Cadets/stegsolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/Red Green Blue Cadets/stegsolve.png -------------------------------------------------------------------------------- /kksCTF_2020/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/bson/README.md -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/README.md -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/decrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/decrypt.sh -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/download.sh -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/extract.py -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/images/first_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/images/first_report.png -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/images/home.png -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/images/upload.png -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/private -------------------------------------------------------------------------------- /kksCTF_2020/cypherpunk/public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/cypherpunk/public -------------------------------------------------------------------------------- /kksCTF_2020/fonction_spéciale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/fonction_spéciale/README.md -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/README.md -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/gift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/gift -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/entry.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/first_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/first_block.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/first_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/first_flag.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/first_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/first_shell.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/inbox.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/login.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/main.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/participants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/participants.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/payload_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/payload_1.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/query_reconstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/query_reconstruction.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/register.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/relax.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/second_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/second_block.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/secret_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/secret_main.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/select_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/select_users.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/send_a_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/send_a_message.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/send_message_wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/send_message_wrapper.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/server.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/show_parti_wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/show_parti_wrapper.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/third_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/third_block.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/third_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/third_flag.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/third_part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/third_part.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/user_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/user_register.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/user_register_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/user_register_query.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/images/vuln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/images/vuln.png -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/secret -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/Makefile -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/md5.c -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/md5.h -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/server.c -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/server.h -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/sqlite_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/sqlite_helper.c -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/lib/sqlite_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/lib/sqlite_helper.h -------------------------------------------------------------------------------- /kksCTF_2020/happy_new_year/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/happy_new_year/src/main.c -------------------------------------------------------------------------------- /kksCTF_2020/hashfunction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/hashfunction/README.md -------------------------------------------------------------------------------- /kksCTF_2020/hashfunction/brute.go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/hashfunction/brute.go.png -------------------------------------------------------------------------------- /kksCTF_2020/hashfunction/brute_force.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/hashfunction/brute_force.go -------------------------------------------------------------------------------- /kksCTF_2020/hashfunction/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/hashfunction/post.png -------------------------------------------------------------------------------- /kksCTF_2020/hashfunction/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/hashfunction/server.go -------------------------------------------------------------------------------- /kksCTF_2020/motor_sounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/motor_sounds/README.md -------------------------------------------------------------------------------- /kksCTF_2020/motor_sounds/cura1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/motor_sounds/cura1.png -------------------------------------------------------------------------------- /kksCTF_2020/motor_sounds/cura2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/motor_sounds/cura2.png -------------------------------------------------------------------------------- /kksCTF_2020/motor_sounds/file.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/motor_sounds/file.gcode -------------------------------------------------------------------------------- /kksCTF_2020/motor_sounds/gcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/kksCTF_2020/motor_sounds/gcode.png -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_1/README.md -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_1/pictures/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_1/pictures/1.PNG -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_1/pictures/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_1/pictures/2.PNG -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_1/pictures/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_1/pictures/3.PNG -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_1/pictures/4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_1/pictures/4.PNG -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_2/README.md -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_2/pictures/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_2/pictures/1.PNG -------------------------------------------------------------------------------- /knightctf/most_secure_calculator_2/pictures/2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/most_secure_calculator_2/pictures/2.PNG -------------------------------------------------------------------------------- /knightctf/my_php_site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/my_php_site/README.md -------------------------------------------------------------------------------- /knightctf/my_php_site/pictures/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/knightctf/my_php_site/pictures/1.PNG -------------------------------------------------------------------------------- /m0lecon2021/Little-Alchemy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/m0lecon2021/Little-Alchemy/README.md -------------------------------------------------------------------------------- /m0lecon2021/Little-Alchemy/dist/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/m0lecon2021/Little-Alchemy/dist/exploit.py -------------------------------------------------------------------------------- /m0lecon2021/Little-Alchemy/dist/littleAlchemy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/m0lecon2021/Little-Alchemy/dist/littleAlchemy -------------------------------------------------------------------------------- /m0lecon2021/babysign/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/m0lecon2021/babysign/writeup.md -------------------------------------------------------------------------------- /m0lecon2021/babysign/writeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/m0lecon2021/babysign/writeup.py -------------------------------------------------------------------------------- /mHackeCTF/mhackeErp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/mHackeCTF/mhackeErp/README.txt -------------------------------------------------------------------------------- /mHackeCTF/mhackeErp/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/mHackeCTF/mhackeErp/exploit.py -------------------------------------------------------------------------------- /mHackeCTF/mhackeErp/pictures/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/mHackeCTF/mhackeErp/pictures/traffic.png -------------------------------------------------------------------------------- /mHackeCTF/mhackeErp/pictures/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/mHackeCTF/mhackeErp/pictures/wireshark.png -------------------------------------------------------------------------------- /mHackeCTF/mhackeErp/traffic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/mHackeCTF/mhackeErp/traffic.txt -------------------------------------------------------------------------------- /peaCTF/EducatedGuess/generateObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/peaCTF/EducatedGuess/generateObject.php -------------------------------------------------------------------------------- /peaCTF/EducatedGuess/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/peaCTF/EducatedGuess/query.php -------------------------------------------------------------------------------- /peaCTF/EducatedGuess/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/peaCTF/EducatedGuess/solve.py -------------------------------------------------------------------------------- /peaCTF/EducatedGuess/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/peaCTF/EducatedGuess/writeup.md -------------------------------------------------------------------------------- /redpwnCTF/crypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/crypt/README.md -------------------------------------------------------------------------------- /redpwnCTF/crypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/crypt/index.html -------------------------------------------------------------------------------- /redpwnCTF/dunce_crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/dunce_crypto/README.md -------------------------------------------------------------------------------- /redpwnCTF/easycipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/easycipher/README.md -------------------------------------------------------------------------------- /redpwnCTF/easycipher/deobfuscated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/easycipher/deobfuscated.js -------------------------------------------------------------------------------- /redpwnCTF/easycipher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/easycipher/index.html -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/README.md -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/check.png -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/decoder.py -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/generic_crackme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/generic_crackme -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/inc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/inc.png -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme/main.png -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme_redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme_redux/README.md -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme_redux/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme_redux/check.png -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme_redux/flag.txt: -------------------------------------------------------------------------------- 1 | flag{70517} 2 | -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme_redux/generic_crackme_redux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme_redux/generic_crackme_redux -------------------------------------------------------------------------------- /redpwnCTF/generic_crackme_redux/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/generic_crackme_redux/main.png -------------------------------------------------------------------------------- /redpwnCTF/genericpyjail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/genericpyjail/README.md -------------------------------------------------------------------------------- /redpwnCTF/genericpyjail/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/genericpyjail/blacklist.txt -------------------------------------------------------------------------------- /redpwnCTF/ghast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/ghast/README.md -------------------------------------------------------------------------------- /redpwnCTF/ghast/ghast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/ghast/ghast.js -------------------------------------------------------------------------------- /redpwnCTF/he_sed_she_sed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/he_sed_she_sed/README.md -------------------------------------------------------------------------------- /redpwnCTF/red-pwn-is/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/red-pwn-is/writeup.md -------------------------------------------------------------------------------- /redpwnCTF/rot26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/rot26/README.md -------------------------------------------------------------------------------- /redpwnCTF/rot26/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/rot26/exploit.py -------------------------------------------------------------------------------- /redpwnCTF/rot26/rot26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/rot26/rot26 -------------------------------------------------------------------------------- /redpwnCTF/rot26/rot26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/rot26/rot26.c -------------------------------------------------------------------------------- /redpwnCTF/super_hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/super_hash/README.md -------------------------------------------------------------------------------- /redpwnCTF/super_hash/solve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/super_hash/solve.php -------------------------------------------------------------------------------- /redpwnCTF/tux_trivia_show/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/tux_trivia_show/README.md -------------------------------------------------------------------------------- /redpwnCTF/tux_trivia_show/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/tux_trivia_show/solve.py -------------------------------------------------------------------------------- /redpwnCTF/zipline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/README.md -------------------------------------------------------------------------------- /redpwnCTF/zipline/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/air.png -------------------------------------------------------------------------------- /redpwnCTF/zipline/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/exploit.py -------------------------------------------------------------------------------- /redpwnCTF/zipline/function_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/function_list.png -------------------------------------------------------------------------------- /redpwnCTF/zipline/i_got_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/i_got_u.png -------------------------------------------------------------------------------- /redpwnCTF/zipline/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/main.png -------------------------------------------------------------------------------- /redpwnCTF/zipline/zipline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/zipline -------------------------------------------------------------------------------- /redpwnCTF/zipline/zipline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/redpwnCTF/zipline/zipline.png -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/README.md -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/exploit.py -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/.gdb_history -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/FOR_BEGINNERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/FOR_BEGINNERS.md -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/chall -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/main.S -------------------------------------------------------------------------------- /zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tstici/writeups/HEAD/zer0ptsCTF_2021/Not Beginner's Stack/not_beginners_stack/payload.txt --------------------------------------------------------------------------------