├── BufferOverflow ├── overflow-exe ├── overflow.c ├── overflow2-exe ├── overflow2.c ├── run └── run2 ├── Constructs ├── constructs-exe ├── constructs.c └── run ├── HelloWorld ├── .fuse_hidden0000007300000005 ├── hello ├── hello.c └── run ├── SecurityTube ├── LinuxBufferOverflowPrimer │ ├── .exe │ ├── .fuse_hidden0002f9520000001f │ ├── .fuse_hidden0002f95300000020 │ ├── .fuse_hidden0002f95500000021 │ ├── .fuse_hidden0002f95d00000023 │ ├── .fuse_hidden0002f95e00000024 │ ├── .fuse_hidden0002f96100000025 │ ├── .fuse_hidden0002f96200000026 │ ├── overflow-3.exe │ ├── overflow-4.exe │ ├── overflow-5.exe │ ├── overflow.c │ ├── overflow.exe │ └── run ├── LinuxBufferOverflowPrimer7 │ ├── ExploitMe.c │ ├── ExploitMe.exe │ ├── HackYou.c │ ├── HackYou.exe │ └── run ├── RemoteBufferOverflow │ ├── Server-Memcpy.exe │ └── exploit.py ├── RemoteBufferOverflow3 │ ├── Server-Strcpy.exe │ └── exploit.py └── RemoteBufferOverflow4 │ ├── exploit.py │ └── minishare-1.4.1.exe ├── Shellcodes ├── Exit │ ├── exit │ ├── exit.asm │ ├── exit.o │ ├── run │ ├── shellcode │ └── shellcode.c ├── Message │ ├── message │ ├── message.asm │ ├── message.o │ ├── run │ ├── shellcode │ └── shellcode.c └── Test │ ├── .fuse_hidden0000013f00000003 │ ├── run │ ├── shellcode1 │ └── shellcode1.c └── commit /BufferOverflow/overflow-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/overflow-exe -------------------------------------------------------------------------------- /BufferOverflow/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/overflow.c -------------------------------------------------------------------------------- /BufferOverflow/overflow2-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/overflow2-exe -------------------------------------------------------------------------------- /BufferOverflow/overflow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/overflow2.c -------------------------------------------------------------------------------- /BufferOverflow/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/run -------------------------------------------------------------------------------- /BufferOverflow/run2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/BufferOverflow/run2 -------------------------------------------------------------------------------- /Constructs/constructs-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Constructs/constructs-exe -------------------------------------------------------------------------------- /Constructs/constructs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Constructs/constructs.c -------------------------------------------------------------------------------- /Constructs/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Constructs/run -------------------------------------------------------------------------------- /HelloWorld/.fuse_hidden0000007300000005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/HelloWorld/.fuse_hidden0000007300000005 -------------------------------------------------------------------------------- /HelloWorld/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/HelloWorld/hello -------------------------------------------------------------------------------- /HelloWorld/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/HelloWorld/hello.c -------------------------------------------------------------------------------- /HelloWorld/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/HelloWorld/run -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f9520000001f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f9520000001f -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95300000020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95300000020 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95500000021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95500000021 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95d00000023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95d00000023 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95e00000024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f95e00000024 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f96100000025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f96100000025 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f96200000026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/.fuse_hidden0002f96200000026 -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/overflow-3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/overflow-3.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/overflow-4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/overflow-4.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/overflow-5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/overflow-5.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/overflow.c -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/overflow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/overflow.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer/run -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer7/ExploitMe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer7/ExploitMe.c -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer7/ExploitMe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer7/ExploitMe.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer7/HackYou.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer7/HackYou.c -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer7/HackYou.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer7/HackYou.exe -------------------------------------------------------------------------------- /SecurityTube/LinuxBufferOverflowPrimer7/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/LinuxBufferOverflowPrimer7/run -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow/Server-Memcpy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow/Server-Memcpy.exe -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow/exploit.py -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow3/Server-Strcpy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow3/Server-Strcpy.exe -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow3/exploit.py -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow4/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow4/exploit.py -------------------------------------------------------------------------------- /SecurityTube/RemoteBufferOverflow4/minishare-1.4.1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/SecurityTube/RemoteBufferOverflow4/minishare-1.4.1.exe -------------------------------------------------------------------------------- /Shellcodes/Exit/exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/exit -------------------------------------------------------------------------------- /Shellcodes/Exit/exit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/exit.asm -------------------------------------------------------------------------------- /Shellcodes/Exit/exit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/exit.o -------------------------------------------------------------------------------- /Shellcodes/Exit/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/run -------------------------------------------------------------------------------- /Shellcodes/Exit/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/shellcode -------------------------------------------------------------------------------- /Shellcodes/Exit/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Exit/shellcode.c -------------------------------------------------------------------------------- /Shellcodes/Message/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/message -------------------------------------------------------------------------------- /Shellcodes/Message/message.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/message.asm -------------------------------------------------------------------------------- /Shellcodes/Message/message.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/message.o -------------------------------------------------------------------------------- /Shellcodes/Message/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/run -------------------------------------------------------------------------------- /Shellcodes/Message/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/shellcode -------------------------------------------------------------------------------- /Shellcodes/Message/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Message/shellcode.c -------------------------------------------------------------------------------- /Shellcodes/Test/.fuse_hidden0000013f00000003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Test/.fuse_hidden0000013f00000003 -------------------------------------------------------------------------------- /Shellcodes/Test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Test/run -------------------------------------------------------------------------------- /Shellcodes/Test/shellcode1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Test/shellcode1 -------------------------------------------------------------------------------- /Shellcodes/Test/shellcode1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/Shellcodes/Test/shellcode1.c -------------------------------------------------------------------------------- /commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantvydasb/c-playground/HEAD/commit --------------------------------------------------------------------------------