This commit is contained in:
Terrtia 2018-05-09 13:03:46 +02:00
parent 3841c159a0
commit 142c1dc9b0
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0
3 changed files with 7 additions and 4 deletions

View file

@ -146,8 +146,6 @@ function launching_scripts {
sleep 0.1 sleep 0.1
screen -S "Script_AIL" -X screen -t "Base64" bash -c './Base64.py; read x' screen -S "Script_AIL" -X screen -t "Base64" bash -c './Base64.py; read x'
sleep 0.1 sleep 0.1
screen -S "Script_AIL" -X screen -t "DbDump" bash -c './DbDump.py; read x'
sleep 0.1
screen -S "Script_AIL" -X screen -t "Bitcoin" bash -c './Bitcoin.py; read x' screen -S "Script_AIL" -X screen -t "Bitcoin" bash -c './Bitcoin.py; read x'
sleep 0.1 sleep 0.1
screen -S "Script_AIL" -X screen -t "Phone" bash -c './Phone.py; read x' screen -S "Script_AIL" -X screen -t "Phone" bash -c './Phone.py; read x'

View file

@ -67,7 +67,7 @@ maximum_month_range = 3
#The value where two pastes are considerate duplicate for ssdeep. #The value where two pastes are considerate duplicate for ssdeep.
threshold_duplicate_ssdeep = 50 threshold_duplicate_ssdeep = 50
#The value where two pastes are considerate duplicate for tlsh. #The value where two pastes are considerate duplicate for tlsh.
threshold_duplicate_tlsh = 100 threshold_duplicate_tlsh = 52
#Minimum size of the paste considered #Minimum size of the paste considered
min_paste_size = 0.3 min_paste_size = 0.3
@ -147,6 +147,11 @@ db = 3
host = localhost host = localhost
db = 1 db = 1
[ARDB_Tags]
host = localhost
port = 6382
db = 6
[Url] [Url]
cc_critical = DE cc_critical = DE

View file

@ -37,7 +37,7 @@ def createModuleFolder(modulename):
def main(): def main():
rep1 = raw_input('New module name: ') rep1 = input('New module name: ')
createModuleFolder(rep1) createModuleFolder(rep1)
if __name__ == '__main__': if __name__ == '__main__':