Skip to content

Instantly share code, notes, and snippets.

View yesecurity's full-sized avatar

Yassine Nasri yesecurity

View GitHub Profile
@yesecurity
yesecurity / brute7.py
Created September 22, 2013 21:01
SecurityTube WAP_Challenge 7
import itertools , md5
listp = []
a = list(itertools.product(['x','y','z','1','2','3'], repeat = 6))
for e in a:
a = ''.join(e)
@yesecurity
yesecurity / brute6.py
Last active December 23, 2015 13:19
SecurityTube WAP_Challenge 6
from threading import Thread
from httplib2 import Http
import sys
import requests
import md5
import itertools
url = "http://pentesteracademylab.appspot.com/lab/webapp/digest2/1"
listp = []
@yesecurity
yesecurity / brute5.py
Last active December 23, 2015 09:19
SecurityTube WAP_Challenge 5
import sys
import requests
import md5
import itertools
from threading import Thread
from httplib2 import Http
url = "http://pentesteracademylab.appspot.com/lab/webapp/digest/1"
listp = []
@yesecurity
yesecurity / brute3.py
Last active December 20, 2020 00:52
SecurityTube WAP_Challenge 3
from threading import Thread
from httplib2 import Http
import requests
import base64
import itertools
url = "http://pentesteracademylab.appspot.com/lab/webapp/basicauth"
@yesecurity
yesecurity / brute2.py
Last active December 23, 2015 00:19
SecurityTube WAP_Challenge2
from threading import Thread
import itertools
import requests
locat = "http://pentesteracademylab.appspot.com/lab/webapp/auth/1/login"
listp = []
a = list(itertools.product(['m','n','o'], repeat = 5))
@yesecurity
yesecurity / brute1.py
Last active February 9, 2023 08:42
SecurityTube WAP_Challenge1
from threading import Thread
import itertools
import urllib
error = "Failed! Please try again!"
listp = []