niska 0.1.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.
- niska-0.1.0/PKG-INFO +38 -0
- niska-0.1.0/README.md +21 -0
- niska-0.1.0/pyproject.toml +24 -0
- niska-0.1.0/setup.cfg +4 -0
- niska-0.1.0/src/niska/__init__.py +4 -0
- niska-0.1.0/src/niska.egg-info/PKG-INFO +38 -0
- niska-0.1.0/src/niska.egg-info/SOURCES.txt +7 -0
- niska-0.1.0/src/niska.egg-info/dependency_links.txt +1 -0
- niska-0.1.0/src/niska.egg-info/top_level.txt +1 -0
niska-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: niska
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Niska is a collaborative investigation review platform. Part of the ShadowStrike War Room Suite.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Niska
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Niska
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Niska/issues
|
|
10
|
+
Keywords: forensics,ctf,digital-forensics,investigation
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Topic :: Security
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Niska — Investigation Review
|
|
19
|
+
|
|
20
|
+
Part of the ShadowStrike War Room Suite.
|
|
21
|
+
|
|
22
|
+
Niska is a collaborative investigation review platform — the connective thread between forensic processing and legal production.
|
|
23
|
+
|
|
24
|
+
> Active development in progress. Full release coming soon.
|
|
25
|
+
|
|
26
|
+
## ShadowStrike Suite
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Niki** | Forensic parser |
|
|
31
|
+
| **Komanda** | Case management |
|
|
32
|
+
| **Niska** | Investigation review |
|
|
33
|
+
| **Sila** | Evidence management |
|
|
34
|
+
| **Vistina** | Legal review |
|
|
35
|
+
|
|
36
|
+
## Author
|
|
37
|
+
|
|
38
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
niska-0.1.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Niska — Investigation Review
|
|
2
|
+
|
|
3
|
+
Part of the ShadowStrike War Room Suite.
|
|
4
|
+
|
|
5
|
+
Niska is a collaborative investigation review platform — the connective thread between forensic processing and legal production.
|
|
6
|
+
|
|
7
|
+
> Active development in progress. Full release coming soon.
|
|
8
|
+
|
|
9
|
+
## ShadowStrike Suite
|
|
10
|
+
|
|
11
|
+
| Package | Role |
|
|
12
|
+
|---|---|
|
|
13
|
+
| **Niki** | Forensic parser |
|
|
14
|
+
| **Komanda** | Case management |
|
|
15
|
+
| **Niska** | Investigation review |
|
|
16
|
+
| **Sila** | Evidence management |
|
|
17
|
+
| **Vistina** | Legal review |
|
|
18
|
+
|
|
19
|
+
## Author
|
|
20
|
+
|
|
21
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "niska"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Niska is a collaborative investigation review platform. Part of the ShadowStrike War Room Suite."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "ShadowStrike-CTF" }]
|
|
12
|
+
keywords = ["forensics", "ctf", "digital-forensics", "investigation"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Science/Research",
|
|
16
|
+
"Topic :: Security",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
requires-python = ">=3.10"
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
"Homepage" = "https://github.com/ShadowStrike-CTF/Niska"
|
|
23
|
+
"Source" = "https://github.com/ShadowStrike-CTF/Niska"
|
|
24
|
+
"Bug Tracker" = "https://github.com/ShadowStrike-CTF/Niska/issues"
|
niska-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: niska
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Niska is a collaborative investigation review platform. Part of the ShadowStrike War Room Suite.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Niska
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Niska
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Niska/issues
|
|
10
|
+
Keywords: forensics,ctf,digital-forensics,investigation
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Topic :: Security
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Requires-Python: >=3.10
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Niska — Investigation Review
|
|
19
|
+
|
|
20
|
+
Part of the ShadowStrike War Room Suite.
|
|
21
|
+
|
|
22
|
+
Niska is a collaborative investigation review platform — the connective thread between forensic processing and legal production.
|
|
23
|
+
|
|
24
|
+
> Active development in progress. Full release coming soon.
|
|
25
|
+
|
|
26
|
+
## ShadowStrike Suite
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Niki** | Forensic parser |
|
|
31
|
+
| **Komanda** | Case management |
|
|
32
|
+
| **Niska** | Investigation review |
|
|
33
|
+
| **Sila** | Evidence management |
|
|
34
|
+
| **Vistina** | Legal review |
|
|
35
|
+
|
|
36
|
+
## Author
|
|
37
|
+
|
|
38
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
niska
|