-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ed31b7
commit 0e46c43
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
# Screenshooter | ||
|
||
## This tool was created to take full screenshots of the user's desktop(s) when beacon doesn't want to work. Update: Can now do video but the file size of the application is huge (35mb). Working on a fix (which is why this is in dev). | ||
## This tool was created to take full screenshots of the user's desktop(s) when beacon doesn't want to work. Update: Can now record video of the desktop as well for X amount of time (default is 10s). This MUST be done by dropping the exe to the system first and will not work through execute-assembly. | ||
|
||
To use, run the file and it will create a screenshot and save it in the current user's AppData\Roaming directory with a timestamped name. You can also pass it a flag for the location/filename where you want it saved. For some examples: | ||
|
||
## Usage | ||
|
||
The application takes in 0-3 flags as input. These flags *need* to be in the correct order to work! See the examples below. If you want a screen recording, you must specify "record" as the first positional argument. You can then either specify the path, the path and how long to record, or the just how long to record. The length of the recording is in seconds. | ||
The application takes in 0-3 flags as input. These flags *need* to be in the correct order to work (caveat is record functionality)! See the examples below. If you want a screen recording, you must specify "record" as the first positional argument. You can then either specify the path, the path and how long to record, or just how long to record. The length of the recording is in seconds. | ||
|
||
``` | ||
Screenshooter.exe | ||
Screenshooter.exe C:\Users\Public\Documents\ | ||
Screenshooter.exe C:\Users\Public\Documents\screenshot.png | ||
- To record the screen(s): | ||
- To record the screen(s) (must drop on system first and then use the execute command in beacon): | ||
Screenshooter.exe record | ||
Screenshooter.exe record c:\users\test\desktop\vid.avi | ||
Screenshooter.exe record c:\users\test\desktop\vid.avi 30 | ||
``` | ||
Screenshooter.exe record 30 | ||
Screenshooter.exe record c:\users\test\desktop\vid.mp4 | ||
Screenshooter.exe record c:\users\test\desktop\vid.mp4 30 | ||
``` |