summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2021-08-22Add Makefile for shellcode templatesMalfurious1-0/+17
The shell*.asm files are considered the default programs and the expected use-case for utilizing the templates is to edit these files to implement the desired shellcode. I figure that literal shellcode makes the most sense of what to expect by default. 'make all' will assemble and link the shellcode (so it can actually be directly executed via the output elf files), and feed the disassembly into shelltool for use elsewhere. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-22Refactor genhex into shelltoolMalfurious2-33/+30
For convenience, I've rewritten my old shellcode parser program in Python. It is moved to the shellcode templates dir and renamed to shelltool. As a new feature, shelltool will now check the result for NULL bytes and newline bytes that may cause problems in an exploit. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-22Add sys_exit shellcode templatesMalfurious2-0/+16
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-22Add generic /bin/sh shellcode templatesMalfurious2-0/+29
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-21Add writeup for RaRCTF 2021 / Boring Flag CheckerMalfurious1-0/+236
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-16Add writeup for RaRCTF 2021 / Not That SimpleMalfurious1-0/+214
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-15Commit notes from RaRCTF 2021Malfurious3-0/+17
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-15Update documentation on x86 architectureMalfurious3-19/+107
Some new links are added from the latest CTF. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-11Merge tag 'pull-duso-metasploit-writeups' of ↵Malfurious9-0/+379
https://github.com/Dusoleil/lib-des-gnux Dusoleil's Writeups for the Metasploit Community CTF 2020 * tag 'pull-duso-metasploit-writeups' of https://github.com/Dusoleil/lib-des-gnux: Dusoleil's Writeups from Metasploit Community CTF 2020
2021-08-11Add notes on Python requests libraryMalfurious1-0/+26
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-11Commit PHP request logging scriptMalfurious1-0/+49
Taken from github, see comment in file. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-10Commit brainfuck toolsMalfurious4-0/+435
The foremost tool in this collection is the brainfuck debugger. It was written to assist with the 'boring flag checker' problem from RaRCTF 2021, but has good potential for general-purpose use. The compiler and decompiler are much more niche, given brainfuck is not typically a compiled language. They are from the same CTF and, although highly problem-specific, are kept around for posterity. A hello world program is saved under templates as a quick sanity check for the tools as well as for reference purposes, should it become useful. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-10RaRCTF 2021 resultsMalfurious1-0/+1
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-07Dusoleil's Writeups from Metasploit Community CTF 2020dusoleil9-0/+379
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-05Commit some forensics linksMalfurious2-0/+4
AperiSolve is a tool I stumbled upon a while back and have been meaning to bookmark here. CyberChef reported by dusoleil. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-05Add writeup for ImaginaryCTF 2021 / RoolangMalfurious2-0/+584
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-03Merge tag 'pull-duso-imaginary-writeups' of ↵Malfurious34-0/+1822
https://github.com/Dusoleil/lib-des-gnux Writeups and other tools/docs from ImaginaryCTF from Dusoleil. * tag 'pull-duso-imaginary-writeups' of https://github.com/Dusoleil/lib-des-gnux: Adding Initial Commit of the Sploit Tool Adding Various Docs Adding Various Small Tools Git Ignore __pycache__ for All Tools Writeups from Imaginary CTF 2021
2021-08-03Adding Initial Commit of the Sploit Tooldusoleil8-0/+330
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-03Adding Various Docsdusoleil3-0/+183
Adding a short list of pwn links, a note about python support for complex numbers, and a short SSTI guide. Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-01Adding Various Small Toolsdusoleil3-0/+87
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-01Git Ignore __pycache__ for All Toolsdusoleil1-0/+1
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-01Writeups from Imaginary CTF 2021dusoleil19-0/+1221
Adding Dusoleil's writeups from Imaginary CTF 2021 Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2021-08-01Rename automation directory to templatesMalfurious1-0/+0
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Add gdb cheat sheetMalfurious1-0/+101
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Document various low-level C IO characteristicsMalfurious1-0/+29
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Elaborate on test v cmpMalfurious1-4/+7
cmp instruction did not have an example. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Fix typosMalfurious1-2/+2
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Add writeup for ImaginaryCTF 2021 / SpeedrunMalfurious1-0/+380
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01ImaginaryCTF 2021 resultsMalfurious1-0/+2
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Add PHP memesMalfurious1-0/+0
Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Add sections to the README fileMalfurious1-0/+19
The wishlist is a collection of things I want to add to the repository (either can't find them easily, or tools that need to be written). The quick reference is for random one-liner things that don't easily fit anywhere else in the folder structure. Signed-off-by: Malfurious <m@lfurio.us>
2021-08-01Add a collection of common wordlistsMalfurious7-0/+1615490
Signed-off-by: Malfurious <m@lfurio.us>
2021-07-23Change README to plaintext only fileMalfurious1-1/+2
The intened way to view this file is directly via plaintext, so remove the intent of having any specific markdown within the document. Signed-off-by: Malfurious <m@lfurio.us>
2020-12-21Add libpng skeleton fileMalfurious1-0/+176
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-21Add Java serialization documentationMalfurious1-0/+41
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-21Add netcat-based port scannerMalfurious1-0/+2
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-21Create tools directoryMalfurious3-0/+0
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-20Create RE documentation directoryMalfurious3-0/+33
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-20Add Metasploit 2020 CTF resultsMalfurious1-0/+2
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-04Commit genhex programMalfurious1-0/+33
This is a utility program from my shellcoding repository. It uses the dissassembly output from objdump to auto-format a payload from an assembled object file. Signed-off-by: Malfurious <m@lfurio.us>
2020-12-04Finish filling out USB scancodes tableMalfurious1-2/+110
Signed-off-by: Malfurious <m@lfurio.us>
2020-12-03Add WIP USB PCAP documentationMalfurious1-0/+27
This was leftover in my working directory from the last ctf.... Signed-off-by: Malfurious <m@lfurio.us>
2019-05-05Import CTF scores historyMalf Furious1-0/+10
This data is imported from the wiki and includes the results from CSA CTF 2019, which, at the time of this writing, has just concluded. Signed-off-by: Malf Furious <m@lfurio.us>
2019-05-05Import IceCTF 2018/Hot or Not writeup from the wikiMalf Furious6-0/+617
Signed-off-by: Malf Furious <m@lfurio.us>
2019-05-05Import IceCTF 2018/Lost in the Forest writeup from the wikiMalf Furious1-0/+66
Signed-off-by: Malf Furious <m@lfurio.us>
2019-05-05Import IceCTF 2018/Modern Picasso writeup from the wikiMalf Furious3-0/+22
Signed-off-by: Malf Furious <m@lfurio.us>
2019-05-05Import Meepwn 2018/Esor writeup from the wikiMalf Furious1-0/+105
F. Signed-off-by: Malf Furious <m@lfurio.us>
2019-04-27More robust hexbin programMalf Furious1-5/+1
Removed the intermediate char buffer, just scanf() stdin directly. This handles newlines and arbitrary formatting/whitespace much better than the previous version. Signed-off-by: Malf Furious <m@lfurio.us>
2018-10-10Last time I'm writing this damn programMalf Furious1-0/+28
2018-10-10Add READMEMalf Furious1-0/+4