forked from p15670423/monkey
Removed unused import. Added kill file option.
This commit is contained in:
parent
5a9153858a
commit
6871a3da4f
|
@ -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
|
||||
###########################
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -3,7 +3,6 @@ import sys
|
|||
import socket
|
||||
import struct
|
||||
import array
|
||||
import psutil
|
||||
from random import randint
|
||||
|
||||
__author__ = 'hoffer'
|
||||
|
|
Loading…
Reference in New Issue