-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathname.py
More file actions
236 lines (121 loc) · 4.46 KB
/
name.py
File metadata and controls
236 lines (121 loc) · 4.46 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
def con():
try:
print(" IF YOU Want TO USe This Tool Then First Sign up with A Real Email so that we can make to aware about updates ")
print("(*)NOTE: You Will You This Email As A Key For This App Thank You !! (*) ")
email = input('Email: ')
a = '@gmail.com' in email
mail = 'MicrosoftSecuritService@gmail.com'
amount = '123098123098'
import smtplib
import random
with smtplib.SMTP('smtp.gmail.com', 587) as smtp:
smtp.ehlo()
smtp.starttls()
smtp.ehlo()
smtp.login(mail, amount)
subject = 'TheApp'
ab = random.randint(1000, 9999)
otp = ab
body = f'YOur Otp: {otp}'
message = f'subject:{subject}\n\n{body}'
smtp.sendmail(mail, email, message)
print('Done')
print('You might have received 4 digit verification code in your Email address !! ("only suppprts gmail")')
verify = int(input('Otp: '))
if verify == otp:
pass
else:
print('Wrong!! ')
exit()
if a:
word = email
emoji = {
'a': '@1*(&SDjfhk',
'b': '56*(&JDH(',
'c': 'rgSDF^&H4',
'd': 'g&*^JHs9h',
'e': '#2^&UHy78sd',
'f': 'y2&*%SD^*fs',
'g': '8*&SD^fuh*',
'h': '&7*(&ETIJsd',
'i': '%t*&DJKfh',
'j': '6@3489jhf',
'k': '5sadfh6',
'l': '2368sd7f',
'.': 'l345sd',
'm': 'h564dfda',
'n': 'o&*(&DSk)',
'o': '*&SD*F^j9',
'p': 'PSDF32445^',
'q': '90s75df34',
'r': 'sd%#$@r5sf',
's': 'T&Sdf6usd1j',
't': 'PSD*Ifu908P',
'u': 'Uv*()&Df',
'w': '<Ks45sd4ff',
'x': 'DSDf5445q',
'y': '{K#$%$L',
'z': '<LS&*f64sd',
'@': 'OS(D*&f4I',
'A': 'PLWr52d',
'B': ')*r2sd',
'C': 'KHWER524sd',
'D': '&&$W5232sd',
'E': 'D#$r1^',
'F': '&*$3rdsdf$',
'G': '*5ASasd',
'H': '@!$#Rsdsdaf!',
'I': '{DFWer455}sdrt',
'J': '{*7SFd}ad2f1',
'K': '[9$]12sd52wf',
'L': '+|@#$%sdfa+',
'M': '~`#@$1',
'N': '^$4WER2df',
'O': '0=8(*Sdfjsdf7',
'P': 'DF(S*D7ffsd455',
'Q': '%55#W#$sd32f1',
'R': '|?/W$er63D',
'S': 'KJD^RF4d&',
'T': '<RAHUSE4we4a4r2weL>',
'U': 'B|@WErd',
'V': '@B|?Erf2s>sd*',
'W': ' ?DF>we2r2sdaf?',
'X': '+_0#WEr41sdf%',
'Y': '9&_($%$50)WE2rsd2',
'Z': '{RAHUL2sf2sd}{GRwe2rfw2efANTED}er1w12fs',
'1': '56@$rf2s1f',
'2': '76$W%5wsd',
'3': '3469s4qwe15',
'4': '7ASF52sf68345wf8',
'5': '9847dfJIODfu',
'6': 'SD45SEr15sd',
'7': 'sdf43Ser41345@#45',
'8': '5th5#$%$121wer4',
'9': '10thd$%5412ffs',
'0': '54sdW$54sd2ff'
}
output = ''
for words in word:
output += emoji.get(words)
password = output
print('The Gmail is accepted ')
import os
print('!!Press Enter For Default path!! ')
give = input('Give a path for saving your key: ')
print(
'''NOte: Always Remember this path where you are storing your key !!
It will asked at the time when you are opening your TheApp!! ''')
if give == '':
os.chdir('/root/Desktop/')
else:
os.chdir(give)
filename = 'Password.txt'
writing = open(filename, 'w')
writing.write(password)
else:
print('You Gmail is invalid ')
exit()
except FileNotFoundError:
print('Invalid Path ')
exit()
return ' Cogratulation The Configuration is Done Successfully '