Merge pull request #179 from aleff-github/patch-45

Follow someone on Instagram
pull/196/head
Kalani Helekunihi 2023-06-13 14:24:03 -04:00 committed by GitHub
commit 8c4aac3996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# Follow someone on Instagram
This script can be used play a prank on friends by having them follow an Instagram account.
**Category**: Prank
## Description
This script can be used play a prank on friends by having them follow an Instagram account.
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.
## 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/
`[17] DEFINE #INSTAGRAM_LINK example`
- It depends by the computer power and by the internet connection power
`[32] DELAY 2000`

View File

@ -0,0 +1,37 @@
REM ################################################
REM # |
REM # Title : Follow someone on Instagram |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Prank |
REM # Target : Windows 10/11 |
REM # |
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
DELAY 1000
GUI r
DELAY 500
STRINGLN powershell
DELAY 500
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