├── FilePointer.py ├── PoC ├── inp ├── orange │ ├── chall │ ├── chall.c │ ├── exploit.py │ └── libc.so.6 ├── read │ ├── .gdb_history │ ├── core │ ├── exploit_read.py │ ├── inp │ ├── peda-session-read.txt │ ├── read │ └── read.c └── write │ ├── .gdb_history │ ├── exploit.py │ ├── inp │ ├── write │ └── write.c ├── README.md ├── img ├── file_1.png ├── file_2.png └── file_3.png └── install.py /FilePointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/FilePointer.py -------------------------------------------------------------------------------- /PoC/inp: -------------------------------------------------------------------------------- 1 | qwerty 2 | -------------------------------------------------------------------------------- /PoC/orange/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/orange/chall -------------------------------------------------------------------------------- /PoC/orange/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/orange/chall.c -------------------------------------------------------------------------------- /PoC/orange/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/orange/exploit.py -------------------------------------------------------------------------------- /PoC/orange/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/orange/libc.so.6 -------------------------------------------------------------------------------- /PoC/read/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/.gdb_history -------------------------------------------------------------------------------- /PoC/read/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/core -------------------------------------------------------------------------------- /PoC/read/exploit_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/exploit_read.py -------------------------------------------------------------------------------- /PoC/read/inp: -------------------------------------------------------------------------------- 1 | qwerty 2 | -------------------------------------------------------------------------------- /PoC/read/peda-session-read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/peda-session-read.txt -------------------------------------------------------------------------------- /PoC/read/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/read -------------------------------------------------------------------------------- /PoC/read/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/read/read.c -------------------------------------------------------------------------------- /PoC/write/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/write/.gdb_history -------------------------------------------------------------------------------- /PoC/write/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/write/exploit.py -------------------------------------------------------------------------------- /PoC/write/inp: -------------------------------------------------------------------------------- 1 | qwerty 2 | -------------------------------------------------------------------------------- /PoC/write/write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/write/write -------------------------------------------------------------------------------- /PoC/write/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/PoC/write/write.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/README.md -------------------------------------------------------------------------------- /img/file_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/img/file_1.png -------------------------------------------------------------------------------- /img/file_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/img/file_2.png -------------------------------------------------------------------------------- /img/file_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/img/file_3.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vigneshsrao/File-xploit/HEAD/install.py --------------------------------------------------------------------------------