forked from p15670423/monkey
Added custom post breach values to example.conf
This commit is contained in:
parent
1c3e69cbb9
commit
266933abb4
|
@ -98,4 +98,8 @@
|
||||||
"victims_max_exploit": 7,
|
"victims_max_exploit": 7,
|
||||||
"victims_max_find": 30,
|
"victims_max_find": 30,
|
||||||
"post_breach_actions" : []
|
"post_breach_actions" : []
|
||||||
|
custom_PBA_linux_cmd = ""
|
||||||
|
custom_PBA_windows_cmd = ""
|
||||||
|
PBA_linux_filename = None
|
||||||
|
PBA_windows_filename = None
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ __author__ = 'VakarisZ'
|
||||||
DIR_CHANGE_WINDOWS = 'cd %s & '
|
DIR_CHANGE_WINDOWS = 'cd %s & '
|
||||||
DIR_CHANGE_LINUX = 'cd %s ; '
|
DIR_CHANGE_LINUX = 'cd %s ; '
|
||||||
|
|
||||||
|
|
||||||
class PostBreach(object):
|
class PostBreach(object):
|
||||||
"""
|
"""
|
||||||
This class handles post breach actions execution
|
This class handles post breach actions execution
|
||||||
|
|
Loading…
Reference in New Issue