-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathintro.py
149 lines (123 loc) · 4.53 KB
/
intro.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
import os
import json
from getpass import getpass
import time
import subprocess as sub
import random
import requests
import getpass
import re
from rich import print
from rich.console import Console
from rich.panel import Panel
def find_word_in_file(url, word):
response = requests.get(url)
if response.status_code == 200:
file_content = response.text
if word in file_content:
os.system("clear")
print(Panel('''
[bold white][[bold red]^[bold white]] [bold green] Au: WH1T3', MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Github: github.com/WH1T3-E4GL3, github.com/MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Telegram: @Ka_KsHi_HaTaKe, @MR_S74RK
'''))
print(f'[bold green]Your id[italic blue] {word} [italic green] Has SucessFully Accepted')
print(f"[bold white][[bold blue]✓[bold white]] [bold green]Login Sucess Full Your User Id : [italic green]{word}")
time.sleep(5)
pass
#print(f"The word '{word}' was found in the file.")
else:
print(Panel('''
[bold white][[bold red]^[bold white]] [bold green] Au: WH1T3', MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Github: github.com/WH1T3-E4GL3, github.com/MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Telegram: @Ka_KsHi_HaTaKe, @MR_S74RK
'''))
print(f"[bold green]You haven't Allowed/n[italic yellow] Your Id is [italic red] {word}[bold green] Contact Admin For Activation")
print(f"[bold blue]Send Him The Id [bold yellow] {word} [bold blue] For Activation")
os.system("xdg-open https://instagram.com/mr_lalu_1232/")
else:
print(f"Failed to retrieve the file. Status code: {response.status_code}")
url = "https://raw.githubusercontent.com/MR-S74RK/INSTA/main/.img/users.txt"
word_to_find = getpass.getuser()
find_word_in_file(url,word_to_find)
# password+ banner
os.system("clear")
# BANNER educational purposes
print(Panel( '''
[bold red]●[bold yellow] ●[bold green] ●
.---. .-----------
/ \ __ / ------
/ / \( )/ -----
////// ' \/ ` ---
//// / // : : ---
// / / /` '--
// //..\\\
====UU====UU====
'//||\\\`
''``
[bold red]Brute Eagle by WH1T3 & MR-STARK
'''))
print(Panel('''
[bold white][[bold red]^[bold white]] [bold green] Au: WH1T3', MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Github: github.com/WH1T3-E4GL3, github.com/MR-S74RK
[bold white][[bold red]^[bold white]] [bold green] Telegram: @Ka_KsHi_HaTaKe, @MR_S74RK
'''))
class bcolors:
BOLD = '\033[1m'
PURPLE = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[95m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
UNDERLINE = '\033[4m'
def start():
sceltadisc = input(
"\033[93m\033[1m\n\n[!]Use this program for educational purposes only? [y/n]: ")
if sceltadisc == "y":
print("\n")
os.system("clear")
print(Panel('''
[bold red]●[bold yellow] ●[bold green] ●
.---. .-----------
/ \ __ / ------
/ / \( )/ -----
////// ' \/ ` ---
//// / // : : ---
// / / /` '--
// //..\\\
====UU====UU====
'//||\\\`
''``
[bold red]Brute Eagle by WH1T3' & MR-STARK
'''))
else:
os.system("xdg-open 'https://instagram.com/mr_lalu_1232/")
os.system("clear")
print("\t [#] Insta cyber_st4rk\t")
print("\t [#]Telegram: @Ka_KsHi_HaTaKe\t")
exit()
def acquisizione():
while True:
if veri_break == "si":
break
USER = ""
USER = input(
'\033[1m\033[92m[?]ENTER INSTAGRAM USERNAME FOR CRACK PASSWORD: ')
wl = input("[?]Enter the PassList along The Path: ")
sleepp = int(
input("\033[1m\033[91m\n[!]Type the sleep time for login(sec) (Rec:900): "))
while True:
sub.call("clear")
procedere = input("Username to bruteforce = "+USER+"\n\nWordlist = "+wl+"\n\nSleep time = " +
str(sleepp)+bcolors.WARNING+"\n\nProoceding? [y/break/modify]: "+bcolors.ENDC)
if procedere == "y":
veri_break = "si"
break
elif procedere == "modify":
print("\nReturn...")
break
elif procedere == "break":
exit()
else:
pass