prometheus-community 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.
- prometheus_community-1.0.0/LICENSE +97 -0
- prometheus_community-1.0.0/MANIFEST.in +9 -0
- prometheus_community-1.0.0/NOTICE +95 -0
- prometheus_community-1.0.0/PKG-INFO +574 -0
- prometheus_community-1.0.0/README.md +530 -0
- prometheus_community-1.0.0/prometheus/__init__.py +32 -0
- prometheus_community-1.0.0/prometheus/behavioral_detector.py +54 -0
- prometheus_community-1.0.0/prometheus/cli.py +236 -0
- prometheus_community-1.0.0/prometheus/data/intelligence.json +4443 -0
- prometheus_community-1.0.0/prometheus/engine.py +264 -0
- prometheus_community-1.0.0/prometheus/exploit_detector.py +65 -0
- prometheus_community-1.0.0/prometheus/models.py +179 -0
- prometheus_community-1.0.0/prometheus/signature_engine.py +72 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/PKG-INFO +574 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/SOURCES.txt +20 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/dependency_links.txt +1 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/entry_points.txt +2 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/not-zip-safe +1 -0
- prometheus_community-1.0.0/prometheus_community.egg-info/top_level.txt +1 -0
- prometheus_community-1.0.0/requirements.txt +17 -0
- prometheus_community-1.0.0/setup.cfg +4 -0
- prometheus_community-1.0.0/setup.py +96 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
PROMETHEUS COMMUNITY LICENSE
|
|
2
|
+
Version 1.0, January 2026
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2026 Damian Donahue
|
|
5
|
+
|
|
6
|
+
This software and associated documentation files (the "Software") are made
|
|
7
|
+
available under the following terms:
|
|
8
|
+
|
|
9
|
+
PERMITTED USES:
|
|
10
|
+
|
|
11
|
+
You are granted a free, non-exclusive, non-transferable license to use the
|
|
12
|
+
Software for the following purposes:
|
|
13
|
+
|
|
14
|
+
1. RESEARCH AND EDUCATION
|
|
15
|
+
- Academic research and study
|
|
16
|
+
- Educational purposes in accredited institutions
|
|
17
|
+
- Personal learning and skill development
|
|
18
|
+
- Security research and vulnerability analysis
|
|
19
|
+
|
|
20
|
+
2. NON-PROFIT USE
|
|
21
|
+
- Use by registered non-profit organizations
|
|
22
|
+
- Use by educational institutions
|
|
23
|
+
- Open source project development
|
|
24
|
+
|
|
25
|
+
3. EVALUATION
|
|
26
|
+
- 30-day trial for commercial evaluation
|
|
27
|
+
- Proof-of-concept testing
|
|
28
|
+
- Technical assessment
|
|
29
|
+
|
|
30
|
+
PROHIBITED USES:
|
|
31
|
+
|
|
32
|
+
You may NOT use the Software for:
|
|
33
|
+
|
|
34
|
+
1. COMMERCIAL PRODUCTION USE
|
|
35
|
+
- Deployment in commercial production environments
|
|
36
|
+
- Integration into commercial products or services
|
|
37
|
+
- Use in revenue-generating activities
|
|
38
|
+
- Managed security services (MSSP operations)
|
|
39
|
+
- Security consulting services for paid engagements
|
|
40
|
+
|
|
41
|
+
2. DERIVATIVE WORKS FOR COMMERCIAL DISTRIBUTION
|
|
42
|
+
- Creating commercial derivatives without written permission
|
|
43
|
+
- Repackaging for commercial distribution
|
|
44
|
+
- SaaS or cloud service offerings based on this Software
|
|
45
|
+
|
|
46
|
+
ADDITIONAL TERMS:
|
|
47
|
+
|
|
48
|
+
1. SOURCE CODE
|
|
49
|
+
- Source code is provided for transparency and learning
|
|
50
|
+
- Modifications for permitted uses are allowed
|
|
51
|
+
- Redistribution of modified versions requires written permission
|
|
52
|
+
- All modifications must maintain this license notice
|
|
53
|
+
|
|
54
|
+
2. NO WARRANTY
|
|
55
|
+
- Software provided "AS IS" without warranty of any kind
|
|
56
|
+
- No liability for damages, data loss, or security incidents
|
|
57
|
+
- Use at your own risk
|
|
58
|
+
|
|
59
|
+
3. ATTRIBUTION
|
|
60
|
+
- Original attribution must be preserved in all copies
|
|
61
|
+
- Cannot claim authorship or remove copyright notices
|
|
62
|
+
- Must acknowledge use of Prometheus in derivative works
|
|
63
|
+
|
|
64
|
+
4. COMMERCIAL LICENSE
|
|
65
|
+
- Commercial use requires a separate commercial license
|
|
66
|
+
- Contact: contact@asnspy.com
|
|
67
|
+
- Enterprise Edition available with additional features
|
|
68
|
+
|
|
69
|
+
5. TERMINATION
|
|
70
|
+
- License automatically terminates upon violation of terms
|
|
71
|
+
- Must destroy all copies upon termination
|
|
72
|
+
- Reinstatement requires written permission from copyright holder
|
|
73
|
+
|
|
74
|
+
ENFORCEMENT:
|
|
75
|
+
|
|
76
|
+
Violation of these terms may result in:
|
|
77
|
+
- Immediate license termination
|
|
78
|
+
- Legal action for damages and injunctive relief
|
|
79
|
+
- Requirement to cease all use of the Software
|
|
80
|
+
|
|
81
|
+
For commercial licensing, enterprise features, or questions:
|
|
82
|
+
Email: contact@asnspy.com
|
|
83
|
+
GitHub: https://github.com/0x44616D69616E/prometheus-community
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
ATTRIBUTION NOTICE:
|
|
88
|
+
|
|
89
|
+
This software incorporates intelligence data derived from academic research
|
|
90
|
+
and publicly available security resources. See NOTICE file for complete
|
|
91
|
+
attribution information.
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
This is NOT an Open Source Initiative (OSI) approved license.
|
|
96
|
+
This is a source-available license with restrictions on commercial use.
|
|
97
|
+
For OSI-approved open source licensing, consider Enterprise Edition.
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
PROMETHEUS COMMUNITY EDITION
|
|
2
|
+
Copyright (c) 2026 Damian Donahue
|
|
3
|
+
|
|
4
|
+
This software incorporates data and knowledge derived from multiple sources:
|
|
5
|
+
|
|
6
|
+
================================================================================
|
|
7
|
+
DATA SOURCES
|
|
8
|
+
================================================================================
|
|
9
|
+
|
|
10
|
+
1. Binary Analysis and Reverse Engineering: Comprehensive Technical Reference
|
|
11
|
+
Author: Damian Donahue
|
|
12
|
+
Version: 2.2 (2025)
|
|
13
|
+
DOI: 10.5281/zenodo.18123287
|
|
14
|
+
GitHub: https://github.com/0x44616D69616E/binary-analysis-reference
|
|
15
|
+
License: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
|
|
16
|
+
|
|
17
|
+
Citation:
|
|
18
|
+
@dataset{donahue_binary_analysis_2025,
|
|
19
|
+
author = {Donahue, Damian},
|
|
20
|
+
title = {Binary Analysis and Reverse Engineering:
|
|
21
|
+
Comprehensive Technical Reference},
|
|
22
|
+
year = 2025,
|
|
23
|
+
publisher = {Zenodo},
|
|
24
|
+
version = {2.2},
|
|
25
|
+
doi = {10.5281/zenodo.18123287},
|
|
26
|
+
url = {https://doi.org/10.5281/zenodo.18123287}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
Intelligence Data Derived:
|
|
30
|
+
- 276 file format signatures
|
|
31
|
+
- 203 behavioral indicators for malware families
|
|
32
|
+
- 168 exploit patterns and techniques
|
|
33
|
+
- 8 PE heuristic rules
|
|
34
|
+
- 6 XOR encryption keys
|
|
35
|
+
Total: 661 intelligence items
|
|
36
|
+
|
|
37
|
+
Usage: All 661 intelligence items are included in this Community Edition
|
|
38
|
+
with proper attribution under CC BY-SA 4.0 terms.
|
|
39
|
+
|
|
40
|
+
2. Public Standards and Specifications
|
|
41
|
+
- RFC specifications (IETF - public domain)
|
|
42
|
+
- ISO/IEC file format standards (referenced for educational purposes)
|
|
43
|
+
- IEEE security protocols
|
|
44
|
+
- NIST cybersecurity frameworks
|
|
45
|
+
|
|
46
|
+
3. Publicly Available Security Research
|
|
47
|
+
- File format signatures (factual data, not copyrightable)
|
|
48
|
+
- Malware family indicators (observational data)
|
|
49
|
+
- Exploit techniques (computer science knowledge)
|
|
50
|
+
|
|
51
|
+
================================================================================
|
|
52
|
+
THIRD-PARTY DEPENDENCIES
|
|
53
|
+
================================================================================
|
|
54
|
+
|
|
55
|
+
This software may use the following open source libraries:
|
|
56
|
+
|
|
57
|
+
Python Standard Library
|
|
58
|
+
License: Python Software Foundation License (PSF)
|
|
59
|
+
Copyright: Python Software Foundation
|
|
60
|
+
|
|
61
|
+
(Additional dependencies listed in requirements.txt with their respective licenses)
|
|
62
|
+
|
|
63
|
+
================================================================================
|
|
64
|
+
LEGAL NOTICES
|
|
65
|
+
================================================================================
|
|
66
|
+
|
|
67
|
+
File Signatures: File format signatures are factual data representing
|
|
68
|
+
byte patterns in various file types. These facts are not copyrightable
|
|
69
|
+
under U.S. copyright law and international conventions.
|
|
70
|
+
|
|
71
|
+
Malware Indicators: Behavioral indicators and malware characteristics
|
|
72
|
+
represent factual observations of malware behavior and are derived from
|
|
73
|
+
published security research and threat intelligence.
|
|
74
|
+
|
|
75
|
+
No Warranty: This software is provided "AS IS" without warranty of any
|
|
76
|
+
kind. See LICENSE file for complete terms.
|
|
77
|
+
|
|
78
|
+
================================================================================
|
|
79
|
+
ATTRIBUTION REQUIREMENTS
|
|
80
|
+
================================================================================
|
|
81
|
+
|
|
82
|
+
If you use, modify, or redistribute this software, you must:
|
|
83
|
+
|
|
84
|
+
1. Preserve this NOTICE file in all copies
|
|
85
|
+
2. Maintain copyright notices in source files
|
|
86
|
+
3. Provide attribution to Damian Donahue and the Prometheus project
|
|
87
|
+
4. Include a link to: https://github.com/0x44616D69616E/prometheus-community
|
|
88
|
+
|
|
89
|
+
================================================================================
|
|
90
|
+
CONTACT
|
|
91
|
+
================================================================================
|
|
92
|
+
|
|
93
|
+
For questions about licensing, attribution, or commercial use:
|
|
94
|
+
Email: contact@asnspy.com
|
|
95
|
+
GitHub: https://github.com/0x44616D69616E
|