Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (1)

Powered by Vanilla. Made with Bootstrap.
TuneFuzz Python MP3 Fuzzer
  • Xin
    Posts: 3,251
    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

    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()
    Xin
  • said:


    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'






    Made it a bit prettier :P


    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()
  • Xin
    Posts: 3,251
    Thanks :) il update it
    Xin