huntertrace 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- huntertrace-1.0.0/LICENSE +21 -0
- huntertrace-1.0.0/PKG-INFO +74 -0
- huntertrace-1.0.0/README.md +46 -0
- huntertrace-1.0.0/huntertrace/__init__.py +0 -0
- huntertrace-1.0.0/huntertrace.egg-info/PKG-INFO +74 -0
- huntertrace-1.0.0/huntertrace.egg-info/SOURCES.txt +10 -0
- huntertrace-1.0.0/huntertrace.egg-info/dependency_links.txt +1 -0
- huntertrace-1.0.0/huntertrace.egg-info/entry_points.txt +2 -0
- huntertrace-1.0.0/huntertrace.egg-info/requires.txt +4 -0
- huntertrace-1.0.0/huntertrace.egg-info/top_level.txt +1 -0
- huntertrace-1.0.0/setup.cfg +4 -0
- huntertrace-1.0.0/setup.py +30 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Akshay V
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: huntertrace
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A forensic analysis system for email threat detection and geolocation.
|
|
5
|
+
Home-page: https://github.com/yourusername/huntertrace
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: requests
|
|
15
|
+
Requires-Dist: geoip2
|
|
16
|
+
Requires-Dist: networkx
|
|
17
|
+
Requires-Dist: dnspython
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
Dynamic: summary
|
|
28
|
+
|
|
29
|
+
<table>
|
|
30
|
+
<tr>
|
|
31
|
+
<td><img src="assets/hunterTraceLogo.png" alt="HunterTrace Logo" width="120" /></td>
|
|
32
|
+
<td>
|
|
33
|
+
<h1>Geo Location Analyzer and Attacker Identification System</h1>
|
|
34
|
+
</td>
|
|
35
|
+
</tr>
|
|
36
|
+
</table>
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+

|
|
40
|
+

|
|
41
|
+

|
|
42
|
+

|
|
43
|
+
|
|
44
|
+
# HunterTrace
|
|
45
|
+
|
|
46
|
+
HunterTrace is a forensic analysis system designed to identify attackers and analyze email threats. It provides capabilities for tracing real attacker IPs, detecting VPN/proxy obfuscation, correlating campaigns, and generating detailed reports. The system integrates geolocation enrichment and threat intelligence to provide actionable insights for cybersecurity professionals.
|
|
47
|
+
|
|
48
|
+
## Features
|
|
49
|
+
- Accurate identification of real attacker IPs.
|
|
50
|
+
- Geolocation enrichment using GeoIP2.
|
|
51
|
+
- Campaign correlation to uncover larger attack patterns.
|
|
52
|
+
- Detailed reports in JSON, HTML, and GraphML formats.
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
You can install HunterTrace via pip:
|
|
57
|
+
```bash
|
|
58
|
+
pip install huntertrace
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Usage
|
|
62
|
+
|
|
63
|
+
To run HunterTrace in batch mode:
|
|
64
|
+
```bash
|
|
65
|
+
huntertrace --mode batch --input /path/to/emails --output /path/to/reports
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Requirements
|
|
69
|
+
- Python 3.7+
|
|
70
|
+
- Dependencies listed in `requirements.txt`.
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
This project is licensed under the MIT License. See the LICENSE file for details.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<table>
|
|
2
|
+
<tr>
|
|
3
|
+
<td><img src="assets/hunterTraceLogo.png" alt="HunterTrace Logo" width="120" /></td>
|
|
4
|
+
<td>
|
|
5
|
+
<h1>Geo Location Analyzer and Attacker Identification System</h1>
|
|
6
|
+
</td>
|
|
7
|
+
</tr>
|
|
8
|
+
</table>
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+

|
|
15
|
+
|
|
16
|
+
# HunterTrace
|
|
17
|
+
|
|
18
|
+
HunterTrace is a forensic analysis system designed to identify attackers and analyze email threats. It provides capabilities for tracing real attacker IPs, detecting VPN/proxy obfuscation, correlating campaigns, and generating detailed reports. The system integrates geolocation enrichment and threat intelligence to provide actionable insights for cybersecurity professionals.
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
- Accurate identification of real attacker IPs.
|
|
22
|
+
- Geolocation enrichment using GeoIP2.
|
|
23
|
+
- Campaign correlation to uncover larger attack patterns.
|
|
24
|
+
- Detailed reports in JSON, HTML, and GraphML formats.
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
You can install HunterTrace via pip:
|
|
29
|
+
```bash
|
|
30
|
+
pip install huntertrace
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
To run HunterTrace in batch mode:
|
|
36
|
+
```bash
|
|
37
|
+
huntertrace --mode batch --input /path/to/emails --output /path/to/reports
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Requirements
|
|
41
|
+
- Python 3.7+
|
|
42
|
+
- Dependencies listed in `requirements.txt`.
|
|
43
|
+
|
|
44
|
+
## License
|
|
45
|
+
|
|
46
|
+
This project is licensed under the MIT License. See the LICENSE file for details.
|
|
File without changes
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: huntertrace
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A forensic analysis system for email threat detection and geolocation.
|
|
5
|
+
Home-page: https://github.com/yourusername/huntertrace
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: requests
|
|
15
|
+
Requires-Dist: geoip2
|
|
16
|
+
Requires-Dist: networkx
|
|
17
|
+
Requires-Dist: dnspython
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
Dynamic: summary
|
|
28
|
+
|
|
29
|
+
<table>
|
|
30
|
+
<tr>
|
|
31
|
+
<td><img src="assets/hunterTraceLogo.png" alt="HunterTrace Logo" width="120" /></td>
|
|
32
|
+
<td>
|
|
33
|
+
<h1>Geo Location Analyzer and Attacker Identification System</h1>
|
|
34
|
+
</td>
|
|
35
|
+
</tr>
|
|
36
|
+
</table>
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+

|
|
40
|
+

|
|
41
|
+

|
|
42
|
+

|
|
43
|
+
|
|
44
|
+
# HunterTrace
|
|
45
|
+
|
|
46
|
+
HunterTrace is a forensic analysis system designed to identify attackers and analyze email threats. It provides capabilities for tracing real attacker IPs, detecting VPN/proxy obfuscation, correlating campaigns, and generating detailed reports. The system integrates geolocation enrichment and threat intelligence to provide actionable insights for cybersecurity professionals.
|
|
47
|
+
|
|
48
|
+
## Features
|
|
49
|
+
- Accurate identification of real attacker IPs.
|
|
50
|
+
- Geolocation enrichment using GeoIP2.
|
|
51
|
+
- Campaign correlation to uncover larger attack patterns.
|
|
52
|
+
- Detailed reports in JSON, HTML, and GraphML formats.
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
You can install HunterTrace via pip:
|
|
57
|
+
```bash
|
|
58
|
+
pip install huntertrace
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Usage
|
|
62
|
+
|
|
63
|
+
To run HunterTrace in batch mode:
|
|
64
|
+
```bash
|
|
65
|
+
huntertrace --mode batch --input /path/to/emails --output /path/to/reports
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Requirements
|
|
69
|
+
- Python 3.7+
|
|
70
|
+
- Dependencies listed in `requirements.txt`.
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
This project is licensed under the MIT License. See the LICENSE file for details.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
huntertrace/__init__.py
|
|
5
|
+
huntertrace.egg-info/PKG-INFO
|
|
6
|
+
huntertrace.egg-info/SOURCES.txt
|
|
7
|
+
huntertrace.egg-info/dependency_links.txt
|
|
8
|
+
huntertrace.egg-info/entry_points.txt
|
|
9
|
+
huntertrace.egg-info/requires.txt
|
|
10
|
+
huntertrace.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
huntertrace
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="huntertrace", # Package name
|
|
5
|
+
version="1.0.0", # Version number
|
|
6
|
+
author="Your Name",
|
|
7
|
+
author_email="your.email@example.com",
|
|
8
|
+
description="A forensic analysis system for email threat detection and geolocation.",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/yourusername/huntertrace", # Repository URL
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
],
|
|
18
|
+
python_requires=">=3.7",
|
|
19
|
+
install_requires=[
|
|
20
|
+
"requests",
|
|
21
|
+
"geoip2",
|
|
22
|
+
"networkx",
|
|
23
|
+
"dnspython",
|
|
24
|
+
],
|
|
25
|
+
entry_points={
|
|
26
|
+
"console_scripts": [
|
|
27
|
+
"huntertrace=huntertrace.hunterTraceV3:main", # CLI entry point
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
)
|