From fad60dcccdafb7f32bd9f7e5b7b73a7aebb7269b Mon Sep 17 00:00:00 2001 From: Ninegd4 Date: Sat, 28 Dec 2024 21:58:48 -0500 Subject: [PATCH 1/2] Create Chromebook-Auto-Subscribe It opens Google, subscribes to the channel you link, and writes a thank you on a Google doc. All you have to change is the part that says with your YouTube account link --- .../library/prank/Chromebook-Auto-Subscribe | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 payloads/library/prank/Chromebook-Auto-Subscribe diff --git a/payloads/library/prank/Chromebook-Auto-Subscribe b/payloads/library/prank/Chromebook-Auto-Subscribe new file mode 100644 index 000000000..982b295b8 --- /dev/null +++ b/payloads/library/prank/Chromebook-Auto-Subscribe @@ -0,0 +1,76 @@ +REM #################################### +REM # | +REM # Title : Thank's for the sub! | +REM # Author : Alex P | +REM # Version : 1.4 | +REM # Category : Prank | +REM # Target : Chromebook | +REM # | +REM #################################### + +DELAY 1000 +GUI r +DELAY 500 +STRING chrome +ENTER +DELAY 2000 + +REM Open YouTube channel link +CTRL t +DELAY 500 +STRING +ENTER +DELAY 5000 REM 5 seconds to load the YouTube channel + +REM Use TAB to navigate to the Subscribe button (14 TAB presses) +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 +TAB +DELAY 50 + +REM Press Enter to Subscribe (ensure it's 100% on the Subscribe button) +ENTER +DELAY 1000 + +REM Go back to Google +ALT LEFT +DELAY 2000 + +REM Clear the search bar +CTRL k +DELAY 500 +BACKSPACE +DELAY 500 + +REM Open Google Docs +STRING https://docs.google.com/document/create +ENTER +DELAY 3000 REM Wait for Google Docs to load + +REM Type full message in Google Docs +STRING Thanks for the sub! +ENTER From ff9e7b902d04613ad4e359f29d78d496f1364438 Mon Sep 17 00:00:00 2001 From: Ninegd4 Date: Mon, 30 Dec 2024 07:43:09 -0500 Subject: [PATCH 2/2] Create Chromebook-Auto-Subscribe My payload works for chromebooks, (Chromebook tested) -It auto subscribes to the YouTube account linked -Others can use it by installing it, changing the name to inject.bin, and dragging that file in to the USB rubber ducky SD card. -The only configuration needed is for whoever is using it to change the part that says example.com to the actual YouTube account link. -Have fun with it --- .../execution/Chromebook-Auto-Subscribe | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 payloads/library/execution/Chromebook-Auto-Subscribe diff --git a/payloads/library/execution/Chromebook-Auto-Subscribe b/payloads/library/execution/Chromebook-Auto-Subscribe new file mode 100644 index 000000000..d70a36ead --- /dev/null +++ b/payloads/library/execution/Chromebook-Auto-Subscribe @@ -0,0 +1,46 @@ +REM #################################### +REM # | +REM # Title : Thank's for the sub! | +REM # Author : Alex P | +REM # Version : 1.4 | +REM # Category : Prank | +REM # Target : Chromebook | +REM # | +REM #################################### + +DELAY 1000 +GUI r +DELAY 500 +STRINGLN chrome +DELAY 2000 +REM Open YouTube channel link +CTRL t +DELAY 500 +DEFINE #YTLINK example.com +STRINGLN #YTLINK +DELAY 5000 REM 5 seconds to load the YouTube channel + +REM Use TAB to navigate to the Subscribe button (14 TAB presses) +REPEAT 14 TAB +DELAY 50 + +REM Press Enter to Subscribe (ensure it's 100% on the Subscribe button) +ENTER +DELAY 1000 + +REM Go back to Google +ALT LEFT +DELAY 2000 + +REM Clear the search bar +CTRL k +DELAY 500 +BACKSPACE +DELAY 500 + +REM Open Google Docs +STRINGLN https://docs.google.com/document/create +DELAY 3000 REM Wait for Google Docs to load + +REM Type full message in Google Docs +STRINGLN Thanks for the sub!