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, antisec import sys file = sys.argv[1] junk = '\x41' * int(sys.argv[2]) buffer = junk File = 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