├── .gitignore ├── README.md ├── gac2500 └── exploit.py ├── gvc3202 └── exploit.py ├── gwn7000 └── exploit.py ├── gwn7610 └── exploit.py ├── gxp2200 └── exploit.py ├── gxv3240 └── exploit.py ├── gxv3275 └── exploit.py ├── gxv3370 └── exploit.py ├── gxv3611ir_hd └── exploit.py ├── ucm62xx └── exploit.py ├── unauth_csrf_poc.html └── wp820 └── exploit.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/README.md -------------------------------------------------------------------------------- /gac2500/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gac2500/exploit.py -------------------------------------------------------------------------------- /gvc3202/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gvc3202/exploit.py -------------------------------------------------------------------------------- /gwn7000/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gwn7000/exploit.py -------------------------------------------------------------------------------- /gwn7610/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gwn7610/exploit.py -------------------------------------------------------------------------------- /gxp2200/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gxp2200/exploit.py -------------------------------------------------------------------------------- /gxv3240/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gxv3240/exploit.py -------------------------------------------------------------------------------- /gxv3275/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gxv3275/exploit.py -------------------------------------------------------------------------------- /gxv3370/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gxv3370/exploit.py -------------------------------------------------------------------------------- /gxv3611ir_hd/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/gxv3611ir_hd/exploit.py -------------------------------------------------------------------------------- /ucm62xx/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/ucm62xx/exploit.py -------------------------------------------------------------------------------- /unauth_csrf_poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/unauth_csrf_poc.html -------------------------------------------------------------------------------- /wp820/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scarvell/grandstream_exploits/HEAD/wp820/exploit.py --------------------------------------------------------------------------------