sarissa 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.
- sarissa-0.1.0/PKG-INFO +36 -0
- sarissa-0.1.0/README.md +19 -0
- sarissa-0.1.0/pyproject.toml +24 -0
- sarissa-0.1.0/setup.cfg +4 -0
- sarissa-0.1.0/src/sarissa/__init__.py +4 -0
- sarissa-0.1.0/src/sarissa.egg-info/PKG-INFO +36 -0
- sarissa-0.1.0/src/sarissa.egg-info/SOURCES.txt +7 -0
- sarissa-0.1.0/src/sarissa.egg-info/dependency_links.txt +1 -0
- sarissa-0.1.0/src/sarissa.egg-info/top_level.txt +1 -0
sarissa-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sarissa
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Sarissa is a rapid-access CTF dashboard for digital forensic competitions.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Sarissa
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Sarissa
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Sarissa/issues
|
|
10
|
+
Keywords: forensics,ctf,digital-forensics,dfir
|
|
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
|
+
# Sarissa — CTF Dashboard
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Sarissa is a rapid-access CTF dashboard for digital forensic competitions.
|
|
23
|
+
|
|
24
|
+
> Placeholder release — full build coming soon.
|
|
25
|
+
|
|
26
|
+
## Megdan CTF Line
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Sarissa** | CTF dashboard |
|
|
31
|
+
| **Treska** | CTF parser |
|
|
32
|
+
| **Poligon** | Practice simulator |
|
|
33
|
+
|
|
34
|
+
## Author
|
|
35
|
+
|
|
36
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
sarissa-0.1.0/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Sarissa — CTF Dashboard
|
|
2
|
+
|
|
3
|
+
Part of the Megdan CTF Line.
|
|
4
|
+
|
|
5
|
+
Sarissa is a rapid-access CTF dashboard for digital forensic competitions.
|
|
6
|
+
|
|
7
|
+
> Placeholder release — full build coming soon.
|
|
8
|
+
|
|
9
|
+
## Megdan CTF Line
|
|
10
|
+
|
|
11
|
+
| Package | Role |
|
|
12
|
+
|---|---|
|
|
13
|
+
| **Sarissa** | CTF dashboard |
|
|
14
|
+
| **Treska** | CTF parser |
|
|
15
|
+
| **Poligon** | Practice simulator |
|
|
16
|
+
|
|
17
|
+
## Author
|
|
18
|
+
|
|
19
|
+
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 = "sarissa"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Sarissa is a rapid-access CTF dashboard for digital forensic competitions."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "ShadowStrike-CTF" }]
|
|
12
|
+
keywords = ["forensics", "ctf", "digital-forensics", "dfir"]
|
|
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/Sarissa"
|
|
23
|
+
"Source" = "https://github.com/ShadowStrike-CTF/Sarissa"
|
|
24
|
+
"Bug Tracker" = "https://github.com/ShadowStrike-CTF/Sarissa/issues"
|
sarissa-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sarissa
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Sarissa is a rapid-access CTF dashboard for digital forensic competitions.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Sarissa
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Sarissa
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Sarissa/issues
|
|
10
|
+
Keywords: forensics,ctf,digital-forensics,dfir
|
|
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
|
+
# Sarissa — CTF Dashboard
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Sarissa is a rapid-access CTF dashboard for digital forensic competitions.
|
|
23
|
+
|
|
24
|
+
> Placeholder release — full build coming soon.
|
|
25
|
+
|
|
26
|
+
## Megdan CTF Line
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Sarissa** | CTF dashboard |
|
|
31
|
+
| **Treska** | CTF parser |
|
|
32
|
+
| **Poligon** | Practice simulator |
|
|
33
|
+
|
|
34
|
+
## Author
|
|
35
|
+
|
|
36
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sarissa
|