Files
theZoo/imports/muchmuchstrings.py
Yuval Nativ 2b63ab30c5 Update to version 0.5.0 Citadel
Now functioning arguments are working as they should.
2014-02-19 13:57:32 +02:00

43 lines
1.7 KiB
Python

#!/usr/bin/env python
#Malware DB - the most awesome free malware database on the air
#Copyright (C) 2014, Yuval Nativ, Lahad Ludar, 5Fingers
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <http://www.gnu.org/licenses/>.
from imports import globals
class banners:
def print_license(self):
print ""
print globals.vars.fulllicense
print ""
def versionbanner(self):
print ""
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
print "\t\t " + globals.vars.appname + ' v' + globals.vars.version
print "Built by:\t\t" + globals.vars.authors
print "Is licensed under:\t" + globals.vars.licensev
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
print globals.vars.fulllicense
print globals.vars.useage
def print_available_payloads(self, array):
answer = str(array[globals.vars.column_for_uid]) + "\t" + str(array[globals.vars.column_for_name]) + "\t" + str(array[globals.vars.column_for_version]) + "\t\t"
answer += str(array[globals.vars.column_for_location]) + "\t\t" + str(array[globals.vars.colomn_for_time])
print answer