It looks like you're new here. If you want to get involved, click one of these buttons!
#!/usr/bin/python
# TuneFuzz
# http://www.iexploit.org
# Xinapse
print(\"\"\"Welcome to TuneFuzz .1 by Xinapse.
http://iexploit.org/
\"\"\")
def main():
count = 100
buffer = \"\x41\" * count
for i in range(1,20):
count += 200
try:
f = open(\"exploit%d.mp3\" % count,'w')
f.write(buffer)
f.close()
print 'Exploit Created'
except:
print 'Error'
main()
Trying to find some 0days coded this to help me :) feel free to improve/edit and use.#!/usr/bin/python
# TuneFuzz
# http://www.iexploit.org
# Xinapse
count = 100
buffer = \"\x41\" * count
for i in range(1,20):
count = count + 200
try:
f = open(\"exploit%d.mp3\" % count,'w')
f.write(buffer)
f.close()
print 'Exploit Created'
except:
print 'Error'
print(\"\"\"Welcome to TuneFuzz .1 by Xinapse.
http://iexploit.org/
\"\"\")
def main():
count = 100
buffer = \"\x41\" * count
for i in range(1,20):
count += 200
try:
f = open(\"exploit%d.mp3\" % count,'w')
f.write(buffer)
f.close()
print 'Exploit Created'
except:
print 'Error'
main()