hackboard-ussu321 1.0.0__py3-none-any.whl
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.
- hackboard/__init__.py +26 -0
- hackboard/__main__.py +8 -0
- hackboard/analytics.py +1075 -0
- hackboard/app.py +2373 -0
- hackboard/assets/animations.json +32 -0
- hackboard/assets/banner.txt +14 -0
- hackboard/assets/styles.css +266 -0
- hackboard/cli.py +154 -0
- hackboard/launcher.py +45 -0
- hackboard/osint_tools.py +516 -0
- hackboard/security_tools.py +1115 -0
- hackboard/utils.py +847 -0
- hackboard_ussu321-1.0.0.dist-info/METADATA +480 -0
- hackboard_ussu321-1.0.0.dist-info/RECORD +18 -0
- hackboard_ussu321-1.0.0.dist-info/WHEEL +5 -0
- hackboard_ussu321-1.0.0.dist-info/entry_points.txt +2 -0
- hackboard_ussu321-1.0.0.dist-info/licenses/LICENSE +21 -0
- hackboard_ussu321-1.0.0.dist-info/top_level.txt +1 -0
hackboard/__init__.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""
|
|
2
|
+
HackBoard — Professional Cybersecurity Intelligence Platform
|
|
3
|
+
=============================================================
|
|
4
|
+
|
|
5
|
+
A next-generation cybersecurity dashboard for ethical hacking,
|
|
6
|
+
OSINT intelligence, threat analysis, and defensive security operations.
|
|
7
|
+
|
|
8
|
+
Package: hackboard
|
|
9
|
+
Version: 1.0.0
|
|
10
|
+
Author: issu321
|
|
11
|
+
License: MIT
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
from pathlib import Path
|
|
15
|
+
|
|
16
|
+
__version__ = "1.0.0"
|
|
17
|
+
__author__ = "issu321"
|
|
18
|
+
__license__ = "MIT"
|
|
19
|
+
__title__ = "HackBoard"
|
|
20
|
+
__description__ = "Professional Cybersecurity Intelligence Platform"
|
|
21
|
+
__url__ = "https://github.com/issu321/hackboard"
|
|
22
|
+
|
|
23
|
+
# Ensure config directories exist on import
|
|
24
|
+
from hackboard.utils import ensure_config_dirs
|
|
25
|
+
|
|
26
|
+
ensure_config_dirs()
|