kiddies Posted February 28, 2012 Report Posted February 28, 2012 this application for makin file containing buffer size, i use this application in windows..#!usr/bin/python#Author : kiddies A.k.A peneter#Date : 22 Februari 2012#This is a simple tool for making a file for checking buffer overflow#in windows apps#special tanks: mywisdom, gunslinger, flyff666, petimati, ketek# wenkhairu, patriot, synlord, jimmy romantic# and you#Forum : devilzc0de, jasakom, antijasakom.#Inspirated : corelan, exploit-db, antisecimport sysfile = sys.argv[1]junk = '\x41' * int(sys.argv[2])buffer = junkFile = open(file, 'w')File.write(buffer)File.close()print 'File %s was successfully created' % file #Note:0day is 0day, every day is 0day.Thanks all Quote