Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post breach pyinstaller hook #1424

Merged
merged 4 commits into from
Aug 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
- Typo "trough" -> "through" in telemetry and docstring.
- Crash when unexpected character encoding is used by ping command on German
language systems. #1175
- Malfunctioning timestomping PBA. #1405
- Malfunctioning shell startup script PBA. #1419

## [1.11.0] - 2021-08-13
### Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import subprocess
from pathlib import Path

from infection_monkey.utils.environment import is_windows_os

MODIFY_POWERSHELL_STARTUP_SCRIPT = Path(__file__).parent / "modify_powershell_startup_file.ps1"


def get_windows_commands_to_modify_shell_startup_files():
if not is_windows_os():
Expand All @@ -28,7 +31,6 @@ def get_windows_commands_to_modify_shell_startup_files():

return [
"powershell.exe",
"infection_monkey/post_breach/shell_startup_files/windows"
"/modify_powershell_startup_file.ps1",
str(MODIFY_POWERSHELL_STARTUP_SCRIPT),
"-startup_file_path {0}",
], STARTUP_FILES_PER_USER
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
TEMP_FILE = "monkey-timestomping-file.txt"
from pathlib import Path

TIMESTOMPING_SCRIPT = Path(__file__).parent / "timestomping.ps1"


def get_windows_timestomping_commands():
return "powershell.exe infection_monkey/post_breach/timestomping/windows/timestomping.ps1"
return f"powershell.exe {TIMESTOMPING_SCRIPT}"


# Commands' source: https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.006
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files("infection_monkey.post_breach", include_py_files=False)