diff --git a/payloads/library/execution/Follow_Someone_On_Instagram/README.md b/payloads/library/execution/Follow_Someone_On_Instagram/README.md index a41ab02..9c92213 100644 --- a/payloads/library/execution/Follow_Someone_On_Instagram/README.md +++ b/payloads/library/execution/Follow_Someone_On_Instagram/README.md @@ -2,14 +2,10 @@ 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. -**Category**: Execution - -## Description - -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: @@ -25,11 +21,11 @@ Tested on: - You must set the Instagram account that you want to follow i.e. https://www.instagram.com/alessandro_greco_aka_aleff/ - `[17] DEFINE #INSTAGRAM_LINK example` + `[18] DEFINE #INSTAGRAM_LINK example` - It depends by the computer power and by the internet connection power - `[32] DELAY 2000` + `[72] DELAY 2000` ## Credits @@ -43,17 +39,11 @@ Tested on:
Github - - - - -
Instagram - -
Discord +
Linkedin diff --git a/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt b/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt index 3846138..5e3e271 100644 --- a/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt +++ b/payloads/library/execution/Follow_Someone_On_Instagram/payload.txt @@ -1,13 +1,14 @@ -REM ################################################ -REM # | -REM # Title : Follow someone on Instagram | -REM # Author : Aleff | -REM # Version : 1.0 | -REM # Category : Execution | -REM # Target : Windows 10/11 | -REM # | -REM ################################################ - +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 @@ -17,11 +18,54 @@ REM You must set the Instagram account that you want to follow i.e. https://www. DEFINE #INSTAGRAM_LINK example -DELAY 1000 +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 500 +DELAY 2000 STRINGLN Start-Process "#INSTAGRAM_LINK"; exit; REM It depends by the computer power and by the internet connection power