Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-21-2013, 01:52 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Programming › Python v
« Previous 1 2 3 4 Next »

Cboff.py

Home General Computer Multimedia Business Lounge

Post Reply 
Tweet
Threaded Mode | Linear Mode
Cboff.py
02-22-2012, 08:53 AM
Post: #1
kiddies Away
Administrator
*******
Administrators
Posts: 1,224
Joined: Dec 2009
Reputation: 40
Cboff.py
Code:
#!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.

no description here. just try if you wanna know. !hmm
Find all posts by this user
Quote this message in a reply
02-22-2012, 08:54 AM
Post: #2
nanda Away
Wahyu Adi Prasetyo
**
Moderators
Posts: 2,012
Joined: Aug 2011
Reputation: 119
RE: Cboff.py
mantap pak..
Find all posts by this user
Quote this message in a reply
02-22-2012, 08:57 AM
Post: #3
badwolves1986 [RJ] Offline
Staf Registrasi DIC
RJ
Posts: 2,881
Joined: Oct 2010
Reputation: 91
RE: Cboff.py
widih bg kiddies turun dari tapa nya
mantap pak
Find all posts by this user
Quote this message in a reply
02-22-2012, 06:03 PM
Post: #4
ditatompel Offline
Administrator
*******
Administrators
Posts: 2,168
Joined: Dec 2010
Reputation: 367
RE: Cboff.py
Quote:This is a simple tool for making a file for checking buffer overflow
Wah... keren om.. smangat
Find all posts by this user
Quote this message in a reply
02-22-2012, 06:21 PM (This post was last modified: 02-22-2012 06:41 PM by yusufelirhab.)
Post: #5
yusufelirhab Offline
./Devilz 1st Cadet
Posts: 36
Joined: Oct 2011
Reputation: 0
RE: Cboff.py
(02-22-2012 08:53 AM)kiddies Wrote:  
Code:
#!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.

no description here. just try if you wanna know. !hmm



pas di coba ko ada error ya.....

aqwe@elc0rnr00t-NEO:~/script/python$ python kiddies.py
Traceback (most recent call last):
File "kiddies.py", line 14, in <module>
file = sys.argv[1]
IndexError: list index out of range
aqwe@elc0rnr00t-NEO:~/script/python$
Visit this user's website Find all posts by this user
Quote this message in a reply
02-22-2012, 07:56 PM
Post: #6
darkdante Offline
./Devilz Officer
Posts: 107
Joined: Apr 2011
Reputation: 6
RE: Cboff.py
wb om bro mantapmantapmantap awas jgn kena lagi ma rm rf antisec tapi kita yg harus merm rf kan antisec mantapmantapmantap
Find all posts by this user
Quote this message in a reply
02-22-2012, 10:55 PM (This post was last modified: 02-22-2012 11:00 PM by kiddies.)
Post: #7
kiddies Away
Administrator
*******
Administrators
Posts: 1,224
Joined: Dec 2009
Reputation: 40
RE: Cboff.py
(02-22-2012 06:21 PM)yusufelirhab Wrote:  
(02-22-2012 08:53 AM)kiddies Wrote:  
Code:
#!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.

no description here. just try if you wanna know. !hmm



pas di coba ko ada error ya.....

aqwe@elc0rnr00t-NEO:~/script/python$ python kiddies.py
Traceback (most recent call last):
File "kiddies.py", line 14, in <module>
file = sys.argv[1]
IndexError: list index out of range
aqwe@elc0rnr00t-NEO:~/script/python$


like this you..itu masih beta ane gak buat pesan kesalahannya....atau buat lemapran kalo error...cara penggunaannya

Code:
kiddies@antisec~$python Cbof.py test.m3u 1000000000000000000000000000

atau secara umumnya kaya gini
Code:
kiddies@antisec~$python Cbof.py <file with extension> <range buffer>

buat bro yang diatas ane...hehehe...yah memank harus rm -rf kan antisec...hehehe...
Find all posts by this user
Quote this message in a reply
02-24-2012, 02:04 AM
Post: #8
Fauzi Topan Offline
PacarNya Yuki Kato
Posts: 314
Joined: Nov 2011
Reputation: 55
RE: Cboff.py
keren sekali bang, tapi saya mau bertanya,

di kode ini
Code:
junk = '\x41' * int(sys.argv[2])
buffer = junk

File = open(file, 'w')
File.write(buffer)
kenapa tidak langsung aja pake
File.write(junk)
tapi abang assign junk ke buffer dulu baru di write
apa ada rahasia dibalik itu bang?
Visit this user's website Find all posts by this user
Quote this message in a reply
04-15-2012, 03:23 AM
Post: #9
Danzel Offline
DC Ambassadors
***
Posts: 128
Joined: Apr 2010
Reputation: 25
RE: Cboff.py
hey @kiddies . Hello man. Long time not see..

And nice code ketawa
Visit this user's website Find all posts by this user
Quote this message in a reply
06-23-2012, 05:09 PM
Post: #10
apeman Offline
./Devilz 1st Cadet
Posts: 7
Joined: Jun 2012
Reputation: 0
RE: Cboff.py
menurut saya, sebaiknya ditambahin
Code:
if len(sys.argv) > 1:
  isi programnya disini
else:
   print cara pake program
jadi biar yang nyoba jalanin script itu tau harus gimana masukin commandnya, tanpa harus baca isi script itu.
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-21-2013, 01:52 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE