Exemplo n.º 1
0
 def do_6(self, args):
     #Check if computers from list have Bit9 and/or CB installed
     print colored.magenta("[+] Enter palth of text file: ")
     usercomputerfile=raw_input()
     if os.path.isfile(os.path.abspath(usercomputerfile)) == False:
         print colored.red("[-] "+usercomputerfile+" does not exist")
     else:  
         ComputerLookup(usercomputerfile)
     Launch.show_logo2()
Exemplo n.º 2
0
    def do_3(self, args):
    # """Go through your environments Fire Eye '[-] File INFO was identified by FireEye as malicious.' Alerts.  
    # Check if the hash is banned, check if it was seen in Carbon Black,
    # prompt user to ban hash and/or certificate"""

        print colored.magenta("[?] How many most recent alerts would you like to view?")
        limit=raw_input("10/20/30/40/etc. ")
        FireEyeEvents(limit)
        Launch.show_logo2()
Exemplo n.º 3
0
    def do_2(self, args):
    # """Go through your environments 'SRS Potential Risk File' Alerts.  
    # Check if the hash is banned, check if it was seen in Carbon Black,
    # prompt user to ban hash and/or certificate"""

        print colored.magenta("[?] How many most recent alerts would you like to view?")
        limit=raw_input("10/20/30/40/etc. ")
        PotentialRiskFileEvents(limit)
        Launch.show_logo2()
Exemplo n.º 4
0
    def do_4(self, args):
        #check your environment for a single hash or a text file of newline seperated hashes
        print colored.magenta("[?] Hash(1) or Text File(2) ?: ")
        userinput=int(raw_input())
        if userinput==1:
            print colored.magenta("[?] Paste in the MD5, SHA-1 or SHA256 hash:")
            hashuserinput=raw_input()
            HashLookup(hashuserinput.rstrip())

        if userinput==2:
            print colored.magenta("[+] Enter path of text file location: ")
            userfilepath=raw_input()
            if os.path.isfile(os.path.abspath(userfilepath)) == False:
                print colored.red("[-] "+userfilepath+" does not exist")
            else:
                for hashvalue in open(userfilepath):
                    HashLookup(hashvalue.rstrip())

        Launch.show_logo2()