Пример #1
0
def main():
	db_file = 'vfeed.db'
	files = [f for f in os.listdir(os.getcwd()) if os.path.isfile(f)]
	if db_file in files:
		print '\nFound vFeed database in working directory...continuing.\n\n'
	else:
		sys.exit('\nTROMMMEL quit. Please download & put the vFeed database in this working directory to continue.\n\n')
	
	if vss:
		indicators.specialized_vfeed_search(vss)

	elif user_search:
		print 'TROMMEL is doing a one-off keyword search specified by the user. Results will be printed to stdout.'
		time.sleep(7)
		#Enumerate dir passed by user
		for root, dirs, files in os.walk(path):
			for names in files:
				ff = os.path.join(root,names)
				#Ignore any symlinks
				if not os.path.islink(ff):
					#Ignore the /dev directory. Script has problems with files in this directory
					dev_kw = "/dev/"
					if not dev_kw in ff:
						indicators.user_search_kw(ff, user_search, bin_search)
	

	else:	
		#Date informtion
		yrmoday = datetime.now().strftime("%Y%m%d_%H%M%S")

		#Save file name and date information to file in working directory script
		trommel_output =  file(dir_output + output+'_TROMMEL_'+yrmoday,'w')

		trommel_vfeed_output = file(dir_output + output + "_TROMMEL_vFeed_Results_"+yrmoday, 'w')

		trommel_hash_ouput = file(dir_output + output + "_TROMMEL_Hash_Results_"+yrmoday, 'w')

		#Print information to terminal
		print "\nTROMMEL is working to sift through the directory of files.\n\nResults will be saved to '%s_TROMMEL_%s'.\n\nvFeed results will be saved to '%s_TROMMEL_vFeed_Results_%s'.\n" % (output, yrmoday,output,yrmoday)

		print "TROMMEL file hashes will be saved to '%s_TROMMEL_Hash_Results_%s'\n" % (output, yrmoday)

		#Title written to file
		trommel_output.write('''

	 :::==== :::====  :::====  :::=======  :::=======  :::===== :::     
	 :::==== :::  === :::  === ::: === === ::: === === :::      :::     
	   ===   =======  ===  === === === === === === === ======   ===     
	   ===   === ===  ===  === ===     === ===     === ===      ===     
	   ===   ===  ===  ======  ===     === ===     === ======== ========
																																					  

	''')
		#Title written to file
		trommel_vfeed_output.write('''

	 :::==== :::====  :::====  :::=======  :::=======  :::===== :::     
	 :::==== :::  === :::  === ::: === === ::: === === :::      :::     
	   ===   =======  ===  === === === === === === === ======   ===     
	   ===   === ===  ===  === ===     === ===     === ===      ===     
	   ===   ===  ===  ======  ===     === ===     === ======== ========
																																					  

	''')

		#Title written to file
		trommel_hash_ouput.write('''

	 :::==== :::====  :::====  :::=======  :::=======  :::===== :::     
	 :::==== :::  === :::  === ::: === === ::: === === :::      :::     
	   ===   =======  ===  === === === === === === === ======   ===     
	   ===   === ===  ===  === ===     === ===     === ===      ===     
	   ===   ===  ===  ======  ===     === ===     === ======== ========
																																					  

	''')


		#User given name and path to user given directory to search
		trommel_output.write("TROMMEL Results File Name: %s\nDirectory: %s\n" % (output,path))
		#User given name and path to user given directory to search
		trommel_vfeed_output.write("TROMMEL Results File Name: %s\nDirectory: %s\n" % (output,path))

		#Count number of files within given path directory
		total = 0
		for root, dirs, files in os.walk(path, followlinks=False):
			total += len(files)
		trommel_output.write("There are %d total files within the directory.\n\n" % total)
		trommel_vfeed_output.write("There are %d total files within the directory.\n\n" % total)
		trommel_hash_ouput.write("There are %d total files within the directory.\n\n" % total)

		#Disclaimer written to output file
		trommel_output.write("Results could be vulnerabilities. These results should be verified as false positives may exist.\n\n")
		trommel_vfeed_output.write("Results could be vulnerabilities. These results should be verified as false positives may exist.\n\n")

		#vFeed output file disclaimer
		trommel_vfeed_output.write("The following are results when pivoting specific indicators on vFeed's Community Database.\n\n")

		#Enumerate dir passed by user
		for root, dirs, files in os.walk(path):

			for names in files:
				ff = os.path.join(root,names)
	
				if '/bin/busybox' in ff:
					value = indicator_config.check_arch(ff, trommel_output)
					print "Based on the binary 'busybox' the instruction set architecture is %s.\n" % value	

				#Ignore any symlinks
				if not os.path.islink(ff):

					#Ignore the /dev directory. Script has problems with files in this directory
					dev_kw = "/dev/"
					if not dev_kw in ff:
			
						if path and output: 
							indicators.kw(ff, trommel_output, trommel_vfeed_output, names, bin_search)
				
						#Hash files and save to own output file
						try: 
							with open(ff,"rb") as fhash:
								bytes = fhash.read() # read entire file as bytes
								md5_hash = hashlib.md5(bytes).hexdigest()
								sha1_hash = hashlib.sha1(bytes).hexdigest()
								sha256_hash = hashlib.sha256(bytes).hexdigest()
								trommel_hash_ouput.write("File name: %s, Hashes: %s, %s, %s\n" % (ff, md5_hash, sha1_hash, sha256_hash))
						except:
							trommel_hash_ouput.write("The following file, %s, was not hashed." % ff)
Пример #2
0
def main():
    db_file = 'vfeed.db'
    files = [f for f in os.listdir(os.getcwd()) if os.path.isfile(f)]
    if db_file in files:
        print 'Found vFeed database in working directory...continuing.'
    else:
        sys.exit(
            'TROMMMEL quit. Please download & put the vFeed database in this working directory to continue.'
        )

    if user_search:
        print 'TROMMEL is doing a one-off keyword search specified by the user. Results will be printed to stdout.'
        time.sleep(7)
        #Enumerate dir passed by user
        for root, dirs, files in os.walk(path):
            for names in files:
                ff = os.path.join(root, names)
                #Ignore any symlinks
                if not os.path.islink(ff):
                    #Ignore the /dev directory. Script has problems with files in this directory
                    dev_kw = "/dev/"
                    if not dev_kw in ff:
                        indicators.user_search_kw(ff, user_search, bin_search)

    else:

        #Date informtion
        yrmoday = datetime.now().strftime("%Y%m%d_%H%M%S")

        #Save file name and date information to file in working directory script
        trommel_output = file(output + '_TROMMEL_' + yrmoday, 'wt')

        #Print information to terminal
        print "\nTROMMEL is working to sift through the directory of files.\nResults will be saved to '%s_TROMMEL_%s'\n" % (
            output, yrmoday)

        #Title written to file
        trommel_output.write('''

	 :::==== :::====  :::====  :::=======  :::=======  :::===== :::     
	 :::==== :::  === :::  === ::: === === ::: === === :::      :::     
	   ===   =======  ===  === === === === === === === ======   ===     
	   ===   === ===  ===  === ===     === ===     === ===      ===     
	   ===   ===  ===  ======  ===     === ===     === ======== ========
																																							  

	''')

        #User given name and path to user given directory to search
        trommel_output.write("TROMMEL Results File Name: %s\nDirectory: %s\n" %
                             (output, path))

        #Count number of files within given path directory
        total = 0
        for root, dirs, files in os.walk(path, followlinks=False):
            total += len(files)
        trommel_output.write(
            "There are %d total files within the directory.\n\n" % total)

        #Disclaimer written to output file
        trommel_output.write(
            "Results could be vulnerabilities. These results should be verified as false positives may exist.\n\n"
        )

        #Enumerate dir passed by user
        for root, dirs, files in os.walk(path):

            for names in files:
                ff = os.path.join(root, names)

                if '/bin/busybox' in ff:
                    value = indicator_config.check_arch(ff, trommel_output)
                    print "Based on the binary 'busybox' the instruction set architecture is %s.\n" % value

                #Ignore any symlinks
                if not os.path.islink(ff):

                    #Ignore the /dev directory. Script has problems with files in this directory
                    dev_kw = "/dev/"
                    if not dev_kw in ff:

                        if path and output:
                            indicators.kw(ff, trommel_output, names,
                                          bin_search)