Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
daprofiler
GitHub Repository: daprofiler/DaProfiler
Path: blob/main/modules/visual/logging.py
235 views
1
def speculos_lotus():
2
try:
3
with open("modules/mail_domain.txt","r") as file:
4
lines = file.readlines()
5
file.close()
6
print("""
7
* NOTE *:
8
+ You can update DaProfiler using : py profiler.py -u True
9
10
+ You can add by yourself some others mail domains (ex @mail.mail)
11
to search for target emails using that domain.
12
HOW :
13
. Go to /modules
14
. Add your domains ({} Detected)
15
""".format(str(len(lines))))
16
except:
17
pass
18
19