├── .gitignore ├── ETH PACKET SNIFFER ├── PySniffer.py ├── README.md ├── extractor.py └── pysniff.png ├── LICENSE ├── NETWORK └── PROXY_TCP.py ├── README.md ├── S3BucketBuster ├── s3bucketsearcher.py └── test.txt ├── WHATSAPP_BOT ├── README.md └── bot.py ├── XXE ├── README.md └── blind_xxe_v1.py ├── dns-resolver ├── README.md ├── dnsres.py └── mass_dns.py └── ping └── simple_pinger.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/.gitignore -------------------------------------------------------------------------------- /ETH PACKET SNIFFER/PySniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/ETH PACKET SNIFFER/PySniffer.py -------------------------------------------------------------------------------- /ETH PACKET SNIFFER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/ETH PACKET SNIFFER/README.md -------------------------------------------------------------------------------- /ETH PACKET SNIFFER/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/ETH PACKET SNIFFER/extractor.py -------------------------------------------------------------------------------- /ETH PACKET SNIFFER/pysniff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/ETH PACKET SNIFFER/pysniff.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/LICENSE -------------------------------------------------------------------------------- /NETWORK/PROXY_TCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/NETWORK/PROXY_TCP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/README.md -------------------------------------------------------------------------------- /S3BucketBuster/s3bucketsearcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/S3BucketBuster/s3bucketsearcher.py -------------------------------------------------------------------------------- /S3BucketBuster/test.txt: -------------------------------------------------------------------------------- 1 | was 2 | impress 3 | none 4 | test 5 | ok 6 | -------------------------------------------------------------------------------- /WHATSAPP_BOT/README.md: -------------------------------------------------------------------------------- 1 | ##### Usage : pip install selenium && python bot.py 2 | -------------------------------------------------------------------------------- /WHATSAPP_BOT/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/WHATSAPP_BOT/bot.py -------------------------------------------------------------------------------- /XXE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/XXE/README.md -------------------------------------------------------------------------------- /XXE/blind_xxe_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/XXE/blind_xxe_v1.py -------------------------------------------------------------------------------- /dns-resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/dns-resolver/README.md -------------------------------------------------------------------------------- /dns-resolver/dnsres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/dns-resolver/dnsres.py -------------------------------------------------------------------------------- /dns-resolver/mass_dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/dns-resolver/mass_dns.py -------------------------------------------------------------------------------- /ping/simple_pinger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r3dxpl0it/Py4Sec/HEAD/ping/simple_pinger.py --------------------------------------------------------------------------------