Exemplo n.º 1
0
 def domainmenu(self):
   os.system('clear')
   Logo().banner()
   print(" [{}!{}] {}Domain search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the domain module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}Subdomain Search{} - {}Get subdomains using AXFR techniques{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}Reset Target{} - {}Reset the domain to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.domainmenu()
   if gselect == 4:
    try:
     sys.exit(0)
    except Exception as noexit:
     sys.exit(0)
   else:
    try:
     if gselect != 4:
      if not bi.search_string or bi.search_string in ['',None]:
       bi.search_string = raw_input("[{}?{}] {}Whats the target's domain name?{} [ex: (victim.com|blah.net){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     bi.lookup = 'domain'
     print()
     if gselect == 1:
       SubDomainGrabber().get_info(bi.search_string)
     if gselect == 2:
       SubDomainGrabber().get_info(bi.search_string)
     if gselect == 3:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's domain name?{} [ex: (victim.com|blah.net){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
      self.domainmenu()
    except:
     self.domainmenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.domainmenu()
Exemplo n.º 2
0
 def profiler(self):
     os.system('clear')
     Logo().banner()
     fname = raw_input("\t[Whats the target's first name? - ex: Alice]: ")
     lname = raw_input("\t[Whats the target's last name? - ex: Smith]: ")
     bi.name = fname + " " + lname
     bi.agerange = raw_input(
         "\t[Whats the target's age range? - ex: 18-100]: ")
     bi.apprage = raw_input(
         "\t[Whats the target's suspected age? - ex: 18]: ")
     bi.state = raw_input(
         "\t[Whats state does the target's live in? - ex: (FL|Florida)]: ")
     bi.city = raw_input(
         "\t[Whats city does the target's live in? - ex: Orlando]: ")
     bi.zip = raw_input(
         "\t[Whats the zipcode the target's lives in? - ex: 12345]: ")
     bi.phone = raw_input(
         "\t[What is a known phone number for the target's? - ex: 1234567890]: "
     )
     bi.screenname = raw_input(
         "\t[What are the known aliasis of the target's? - ex: (Ac1dBurn|Zer0cool)]: "
     )
     bi.plate = raw_input(
         "\t[Does the target's have a known license plate? - ex: (ABC1234|XYZ123)]: "
     )
     bi.email = raw_input(
         "\t[What is the target's email address? - ex: [email protected]]: "
     )
     not raw_input("\nPress 'ENTER' key now to continue")
     self.intromenu()
Exemplo n.º 3
0
 def platemenu(self):
   os.system('clear')
   Logo().banner()
   print(" [{}!{}] {}ScreenName search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the email module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}Plate Search{} - {}Run known vehicle plates against a database{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}Reset Target{} - {}Reset the Phone to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.platemenu()
   if gselect == 4:
    try:
     sys.exit(0)
    except Exception as noexit:
     sys.exit(0)
   else:
    try:
     if gselect != 4:
      if not bi.search_string or bi.search_string in ['',None]:
       bi.search_string = raw_input("[{}?{}] {}Whats the target's plate number?{} [ex: (XYZ123|0U812){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     bi.lookup = 'plate'
     print()
     if gselect == 1:
       VinGrabber().get_info(bi.search_string)
     if gselect == 2:
       VinGrabber().get_info(bi.search_string)
     if gselect == 3:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's plate number?{} [ex: (XYZ123|0U812){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
      self.platemenu()
    except:
     self.platemenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.platemenu()
Exemplo n.º 4
0
 def intromenu(self):
     bi.search_string = None
     bi.lookup = None
     os.system('clear')
     Logo().banner()
     print(" [{}!{}] {}Lookup menu:{}".format(bc.CYLW, bc.CEND, bc.CBLU,
                                              bc.CEND))
     print(
         '\t[{}1{}] {}Email{} - {}Search targets by email address{}'.format(
             bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print(
         '\t[{}2{}] {}Name{} - {}Search targets by First Last name combination{}'
         .format(bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print('\t[{}3{}] {}Phone{} - {}Search targets by telephone number{}'.
           format(bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print('\t[{}4{}] {}ScreenName{} - {}Search targets by known alias{}'.
           format(bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print(
         '\t[{}5{}] {}Plate{} - {}Search targets by license plate{}'.format(
             bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print('\t[{}6{}] {}Profiler{} - {}Interactive Q&A for bulk lookups{}'.
           format(bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print('\t[{}7{}] {}Help{} - {}Details the application and use cases{}'.
           format(bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     print('\t[{}8{}] {}Exit{} - {}Terminate the application{}'.format(
         bc.CBLU, bc.CEND, bc.CRED, bc.CEND, bc.CYLW, bc.CEND))
     try:
         gselect = int(
             raw_input("[{}!{}] {}Select a number to continue:{} ".format(
                 bc.CYLW, bc.CEND, bc.CBLU, bc.CEND)))
     except Exception as failintro:
         print("Failed Intro: %s" % failintro)
         self.intromenu()
     if gselect == 8:
         try:
             sys.exit(0)
         except Exception as noexit:
             sys.exit(0)
     else:
         try:
             if gselect == 1:
                 self.emailmenu()
             if gselect == 2:
                 self.namemenu()
             if gselect == 3:
                 self.phonemenu()
             if gselect == 4:
                 self.snmenu()
             if gselect == 5:
                 self.platemenu()
             if gselect == 6:
                 self.profiler()
             if gselect == 7:
                 self.helpmenu()
         except:
             self.intromenu()
         self.intromenu()
Exemplo n.º 5
0
 def emailmenu(self):
   os.system('clear')
   Logo().banner()
   if bi.search_string != None:
    print(" [{}!{}] {}E-Mail search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   else:
    print(" [{}!{}] {}E-Mail search menu: Target info{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the email module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}LinkedIn{} - {}Check if user exposes information through LinkedIn{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}HaveIBeenPwned{} - {}Check email against known compromised networks{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}Myspace{} - {}Check if users account has a registered account{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}5{}] {}AdvancedBackgroundChecks{} - {}Run email through public page of paid access{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}6{}] {}Reset Target{} - {}Reset the Email to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}7{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.emailmenu()
   if gselect == 7:
    try:
     sys.exit(0)
    except Exception as noexit:
     sys.exit(0)
   else:
    try:
     if gselect != 7:
      if not bi.search_string or bi.search_string in ['',None]:
       #print("\n[{}PROFILE{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND))
       bi.search_string = raw_input("\n  [{}PROFILE{}] {}Whats the target's email address?{} [ex: [email protected]{}]: ".format(bc.CBLU,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     bi.lookup = "email"
     print()
     if gselect == 1:
      LinkedInGrabber().get_info(bi.search_string)
      MySpaceGrabber().get_info(bi.search_string)
      HaveIBeenPwwnedGrabber().get_info(bi.search_string)
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 2:
      LinkedInGrabber().get_info(bi.search_string)
     if gselect == 3:
      HaveIBeenPwwnedGrabber().get_info(bi.search_string)
     if gselect == 4:
      MySpaceGrabber().get_info(bi.search_string)
     if gselect == 5:
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 6:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's email address?{} [ex: [email protected]{}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
      self.emailmenu()
    except:
     self.emailmenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.emailmenu()
Exemplo n.º 6
0
    def helpmenu(self):
        try:
            os.system('clear')
            Logo().banner()
            print("\t[INFORMATION]::")
            print("""

This application is designed to query and parse 3rd party services in an automated fashion,
to increase productivity, while conducting a background investigation. This application
can be useful when trying to find hard to allocate targets. The following represent the types
of searches that can be performed.

\tEmail: 'Investigate with known email address'
\tName: 'Investigate with knwon First/Last name'
\tPhone: 'Investigate with known Phone Number'
\tScreenName: 'Investigate with known Screen Name'
\tPlate: 'Investigate with known License Plate'

Each of these catagories offers different modules that request 3rd party sites after the information
has been submitted by the user. for example the application may request a target email address.

Using these classifiers, can reveal additional information that can be utiized within the application.
These classifiers may reveal telephone, physicall address, or other useful data.

All modules included in the classifier may be run with the 'ALL' qualifier or individually. Additionally,
users can choose to reset the query string and continue using the same interface without having to restart
the application.

The following section will detail specifics about the modules offered for each classifier.

:: EMAIL ::
  Requires a user to supply a fully qualified Email address:

  -: Format: [email protected]

  This class of searches includes the following modules:

  -:  LinkedIn - Check if user exposes information through LinkedIn
  -:  HaveIBeenPwned - Check email against known compromised networks
  -:  Myspace - Check if users account has a registered account
  -:  WhoisMind - Check email to registered domains
  -:  AdvancedBackgroundChecks - Run email through public page of paid access




""")
            not raw_input("\nPress 'ENTER' key now to continue")
            self.intromenu()
        except Exception as helpfail:
            print(("Help failed: %s") & helpfail)
Exemplo n.º 7
0
 def phonemenu(self):
   os.system('clear')
   Logo().banner()
   print(" [{}!{}] {}Phone search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the phone module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}TruePeopleSearch{} - {}Run email through public page of paid access{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}WhoCalld{} - {}Reverse phone trace on given number{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}411{} - {}Reverse phone trace on given number{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}5{}] {}AdvancedBackgroundChecks{} - {}Run number through public page of paid access{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}6{}] {}Reset Target{} - {}Reset the Phone to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}7{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.phonemenu()
   if gselect == 7:
    try:
     sys.exit(0)
    except Exception as noexit:
     sys.exit(0)
   else:
    try:
     if gselect != 7:
      if not bi.search_string or bi.search_string in ['',None]:
       bi.search_string = raw_input("[{}?{}] {}Whats the target's phone number?{} [ex: 1234567890{}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     bi.lookup = 'phone'
     print()
     if gselect == 1:
      TruePeopleGrabber().get_info(bi.lookup,bi.search_string)
      WhoCallIdGrabber().get_info(bi.search_string)
      FourOneOneGrabber().get_info(bi.search_string)
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 2:
      TruePeopleGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 3:
      WhoCallIdGrabber().get_info(bi.search_string)
     if gselect == 4:
      FourOneOneGrabber().get_info(bi.search_string)
     if gselect == 5:
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 6:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's phone number?{} [ex: 1234567890{}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
      self.phonemenu()
    except:
     self.phonemenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.phonemenu()
Exemplo n.º 8
0
 def namemenu(self):
   #os.system('clear')
   Logo().banner()
   print(" [{}!{}] {}Name search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the name module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}Truth Finder{} - {}Run name through public page of paywall{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}True People{} - {}Run email through public page of paywall{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}AdvancedBackgroundChecks{} - {}Run email through public page of paywall{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}5{}] {}Reset Target{} - {}Reset the Email to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}6{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.namemenu()
   if gselect == 6:
    try:
     sys.exit(0)
    except Exception as noexit:
     sys.exit(0)
   else:
    try:
     if gselect != 6:
      if not bi.search_string or bi.search_string in ['',None]:
       bi.search_string = raw_input("[{}?{}] {}Whats the target's full name?{} [ex: Alice Smith{}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     bi.lookup = 'name'
     print()
     if gselect == 1:
      TruthFinderGrabber().get_info(bi.lookup,bi.search_string)
      TruePeopleGrabber().get_info(bi.lookup,bi.search_string)
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 2:
      TruthFinderGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 3:
      TruePeopleGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 4:
      AdvanceBackgroundGrabber().get_info(bi.lookup,bi.search_string)
     if gselect == 5:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's full name?{} [ex: Alice Smith{}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
      self.namemenu()
    except:
     self.namemenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.namemenu()
Exemplo n.º 9
0
 def snmenu(self):
   os.system('clear')
   Logo().banner()
   print(" [{}!{}] {}ScreenName search menu: Target info{} - {}{}".format(bc.CYLW,bc.CEND,bc.CBLU,bc.CYLW,bi.search_string,bc.CEND))
   print('\t[{}1{}] {}All{} - {}Run all modules associated to the email module group{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}2{}] {}Knowem{} - {}Run screenname through to determin registered sites{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}3{}] {}NameChk{} - {}Run screenname through to determin registered sites{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}4{}] {}Tinder{} - {}Run screenname and grab information if registered{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}5{}] {}Reset Target{} - {}Reset the Phone to new target address{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   print('\t[{}6{}] {}Back{} - {}Return to main menu{}'.format(bc.CBLU, bc.CEND,bc.CRED,bc.CEND,bc.CYLW,bc.CEND))
   try:
    gselect = int(raw_input(" [{}!{}] {}Select a number to continue:{} ".format(bc.CYLW,bc.CEND,bc.CBLU, bc.CEND)))
   except:
    self.snmenu()
   if gselect == 6:
    try:
     self.intromenu()
    except Exception as noexit:
     self.intromenu()
   else:
    try:
     bi.lookup = 'sn'
     if gselect != 6:
      if not bi.search_string or bi.search_string in ['',None]:
       bi.search_string = raw_input("[{}?{}] {}Whats the target's screenname?{} [ex: (Ac1dBurn|Zer0C00l){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
     print()
     if gselect == 1:
      KnowemGrabber().get_info(bi.search_string)
      NameChkGrabber().get_info(bi.search_string)
      TinderGrabber().get_info(bi.search_string)
     if gselect == 2:
      KnowemGrabber().get_info(bi.search_string)
     if gselect == 3:
      NameChkGrabber().get_info(bi.search_string)
     if gselect == 4:
      TinderGrabber().get_info(bi.search_string)
     if gselect == 5:
      bi.search_string = raw_input("[{}?{}] {}Whats the target's screenname?{} [ex: (Ac1dBurn|Zer0C00l){}]: ".format(bc.CRED,bc.CEND,bc.CRED,bc.CYLW,bc.CEND))
    except:
     self.snmenu()
    not raw_input("\nPress 'ENTER' key now to continue")
    self.snmenu()
Exemplo n.º 10
0
def signal_handler(signal, frame):
    print("")
    sys.exit(0)


signal.signal(signal.SIGINT, signal_handler)

bi.search_string = None
bi.lookup = None
bi.output = None
bi.outdata = dict()
bi.webproxy = None
bi.proxy = None
bi.debug = False

Logo().banner()

if __name__ == "__main__":  # If true, run main function of framework
    try:
        if str(bi.output).lower() == "y":
            bi.filename = raw_input(
                "[Please provide the filename for output? (somefile.txt|somefile.json)]: "
            )

            def writeout():
                import json
                try:
                    pg.write_file(json.dumps(bi.outdata), bi.filename)
                    print(("  [" + bc.CRED + "X" + bc.CEND + "] " + bc.CYLW +
                           " Output written to disk: ./%s\n" + bc.CEND) %
                          bi.filename)