├── .gitignore ├── README.md ├── buffer-overflow.py ├── exploit-template.py └── screenshots ├── 1.png ├── 2.png └── 3.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | pattern.buf 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/README.md -------------------------------------------------------------------------------- /buffer-overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/buffer-overflow.py -------------------------------------------------------------------------------- /exploit-template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/exploit-template.py -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-c0d3r/buffer-overflow/HEAD/screenshots/3.png --------------------------------------------------------------------------------