Skip to content

Commit 3f84c3d

Browse files
Merge pull request #535 from SyedImtiyaz-1/InstaHack
Added Insta hack
2 parents 8cf0f48 + 8c77b74 commit 3f84c3d

4 files changed

Lines changed: 120 additions & 0 deletions

File tree

InstaHack/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
3+
## Installation (Termux)
4+
So First Of All `Install\Run These Basic Requirements` :
5+
```
6+
apt update
7+
apr upgrade
8+
pkg install python
9+
pkg install git
10+
pkg install python-pip
11+
```
12+
After Doing This All Move To Our Next Step
13+
14+
Now, We Have To `Clone It In Our Termux`
15+
```
16+
git clone https://github.com/TnYtCoder/InstaSnatcher
17+
cd InstaSnatcher
18+
```
19+
Done ?!
20+
21+
Now Move To Our Next Step Which Is To `Install The Tool Requirements`
22+
```
23+
bash install.sh
24+
```
25+
After Installing The Requirements Move The Next Step
26+
27+
Now, You Need To `Create A Fake Instagram Account`
28+
29+
Then, Replace Your `username , password` In The `credentials` File.
30+
31+
Using This Command →
32+
```
33+
nano credentials.txt
34+
```
35+
After Doing All The Steps Now You Are Ready To Use ✔️
36+
37+
Simple Start It By →
38+
```
39+
python3 snatch.py
40+
```
41+

InstaHack/cred.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
username
2+
password

InstaHack/insta.py

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
import instaloader, time, os, sys, requests
2+
from colorama import Fore , Back
3+
4+
time.sleep(1)
5+
os.system("clear")
6+
time.sleep(2)
7+
print(Fore.GREEN , "")
8+
9+
def typewriter_animation(message):
10+
for char in message:
11+
print(char, end='', flush=True)
12+
time.sleep(0.02)
13+
print()
14+
15+
time.sleep(1)
16+
print(Fore.RED , "")
17+
print("")
18+
time.sleep(1)
19+
20+
print("Attempting Login...")
21+
22+
with open('credentials.txt', 'r') as f:
23+
contents = f.read()
24+
lines = contents.splitlines()
25+
username = lines[0]
26+
password = lines[1]
27+
28+
SnatchSuccessful = '''
29+
30+
31+
[+] Snatch Successfull !!
32+
'''
33+
34+
def download_profile():
35+
36+
L = instaloader.Instaloader()
37+
38+
try:
39+
L.login(username, password)
40+
print(Fore.GREEN ,"Login Successful !!")
41+
except:
42+
print(Fore.RED , "Login Failed !!")
43+
sys.exit()
44+
45+
print(Fore.LIGHTBLUE_EX , "")
46+
print("")
47+
time.sleep(2)
48+
49+
target_username = input("[+] Enter Target Username --> ")
50+
51+
print("")
52+
print("")
53+
54+
try:
55+
56+
L.download_profile(target_username, profile_pic_only=False)
57+
time.sleep(2)
58+
typewriter_animation(SnatchSuccessful)
59+
except Exception as e:
60+
print("[+] Snatch Failure !! Error :", str(e))
61+
62+
download_profile()
63+
64+
time.sleep(2)
65+
message = "[+] Thank You For Using !!!"
66+
print("")
67+
print("")
68+
typewriter_animation(message)
69+
time.sleep(2)

InstaHack/install.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
python3 -m pip install instaloader
2+
pip install colorama
3+
sleep 3
4+
clear
5+
t.sleep 1
6+
echo "Installation Done <3 "
7+
t.sleep 3
8+
clear

0 commit comments

Comments
 (0)