-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
56 lines (53 loc) · 3.46 KB
/
config.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
# config.py
# ASCII Header
ascii_header = r"""
/====================================================================================\
|| ||
|| ||
|| _ _ ______ __ __ _______ _____ _____ _____ _ _ _______ ||
|| | \ | || ____|\ \ / /|__ __| / ____||_ _|/ ____|| | | ||__ __| ||
|| | \| || |__ \ V / | | | (___ | | | | __ | |__| | | | ||
|| | . ` || __| > < | | \___ \ | | | | |_ || __ | | | ||
|| | |\ || |____ / . \ | | ____) | _| |_| |__| || | | | | | ||
|| |_| \_||______|/_/ \_\ |_| |_____/ |_____|\_____||_| |_| |_| ||
|| ||
|| ||
|| _ _ ____ _____ _____ _ _ _______ ||
|| (_)| | / __ \ / ____||_ _|| \ | ||__ __| ||
|| ___ _ __ ___ __ _ _ | | | | | || (___ | | | \| | | | ||
|| / _ \| '_ ` _ \ / _` || || | | | | | \___ \ | | | . ` | | | ||
|| | __/| | | | | || (_| || || | | |__| | ____) | _| |_ | |\ | | | ||
|| \___||_| |_| |_| \__,_||_||_| \____/ |_____/ |_____||_| \_| |_| ||
|| ||
|| ||
|| _____ _____ ____ __ __ ______ _____ ||
|| /\ |_ _| | __ \ / __ \\ \ / /| ____|| __ \ ||
|| / \ | | | |__) || | | |\ \ /\ / / | |__ | |__) | ||
|| / /\ \ | | | ___/ | | | | \ \/ \/ / | __| | _ / ||
|| / ____ \ _| |_ | | | |__| | \ /\ / | |____ | | \ \ ||
|| /_/ \_\|_____| |_| \____/ \/ \/ |______||_| \_\ ||
|| ||
|| ||
|| Comprehensive Email & Domain Analysis with Extended OSINT ||
|| ||
|| ||
\====================================================================================/
######################################################################################
## Next Sight | www.next-sight.com | info@next-sight.com ##
## Contact us for advanced OSINT investigations ##
######################################################################################
"""
# Contact Information
contact_info = {
"company_name": "Next Sight",
"website": "www.next-sight.com",
"email": "info@next-sight.com",
"services": "Advanced OSINT investigations and email/domain analysis"
}
# Application Metadata
app_metadata = {
"version": "1.0.0",
"release_date": "2024-11-28",
"author": "Next Sight Team",
"description": "A comprehensive tool for OSINT analysis of email addresses and domains."
}