├── .github └── FUNDING.yml ├── Exploits ├── CS141-Pwn │ ├── CS141-Pwn.py │ └── Firmware │ │ ├── Original │ │ └── .deleteme │ │ └── Pwned │ │ └── .deleteme └── N204-Pwn │ ├── Firmware │ ├── Original │ │ └── .deleteme │ └── Pwned │ │ └── .deleteme │ └── N204-Pwn.py ├── LICENSE ├── README.md ├── Thunderstorm.png └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Exploits/CS141-Pwn/CS141-Pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/Exploits/CS141-Pwn/CS141-Pwn.py -------------------------------------------------------------------------------- /Exploits/CS141-Pwn/Firmware/Original/.deleteme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exploits/CS141-Pwn/Firmware/Pwned/.deleteme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exploits/N204-Pwn/Firmware/Original/.deleteme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exploits/N204-Pwn/Firmware/Pwned/.deleteme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Exploits/N204-Pwn/N204-Pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/Exploits/N204-Pwn/N204-Pwn.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/README.md -------------------------------------------------------------------------------- /Thunderstorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/Thunderstorm.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoelGMSec/Thunderstorm/HEAD/requirements.txt --------------------------------------------------------------------------------