Removed unused import. Added kill file option.

This commit is contained in:
acepace 2016-07-18 23:43:17 +03:00
parent 5a9153858a
commit 6871a3da4f
3 changed files with 9 additions and 1 deletions

View File

@ -103,6 +103,12 @@ class Configuration(object):
dropper_target_path = r"C:\Windows\monkey.exe"
dropper_target_path_linux = '/bin/monkey'
###########################
# Kill file
###########################
kill_file_path_windows = os.path.expandvars("%temp%\~df4150.tmp")
kill_file_path_linux = '/tmp/user-4150'
###########################
# monkey config
###########################

View File

@ -35,6 +35,9 @@
"dropper_set_date": true,
"dropper_target_path": "C:\\Windows\\monkey.exe",
"dropper_target_path_linux": "/bin/monkey",
"kill_path_linux": "/tmp/user-4150",
"kill_path_windows": "%temp%\\~df4150.tmp",
"dropper_try_move_first": false,
"exploiter_classes": [
"SSHExploiter",

View File

@ -3,7 +3,6 @@ import sys
import socket
import struct
import array
import psutil
from random import randint
__author__ = 'hoffer'