treska 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.
- treska-0.1.0/PKG-INFO +36 -0
- treska-0.1.0/README.md +19 -0
- treska-0.1.0/pyproject.toml +24 -0
- treska-0.1.0/setup.cfg +4 -0
- treska-0.1.0/src/treska/__init__.py +4 -0
- treska-0.1.0/src/treska.egg-info/PKG-INFO +36 -0
- treska-0.1.0/src/treska.egg-info/SOURCES.txt +7 -0
- treska-0.1.0/src/treska.egg-info/dependency_links.txt +1 -0
- treska-0.1.0/src/treska.egg-info/top_level.txt +1 -0
treska-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: treska
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Treska is a fast forensic parser for zipped logical extractions in CTF competitions.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Treska
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Treska
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Treska/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
|
+
# Treska — CTF Parser
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Treska is a fast forensic parser for zipped logical extractions in CTF competitions.
|
|
23
|
+
|
|
24
|
+
> Placeholder release — full build coming soon.
|
|
25
|
+
|
|
26
|
+
## Megdan CTF Line
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Phalanx** | CTF dashboard |
|
|
31
|
+
| **Treska** | CTF parser |
|
|
32
|
+
| **Poligon** | Practice simulator |
|
|
33
|
+
|
|
34
|
+
## Author
|
|
35
|
+
|
|
36
|
+
GitHub: [ShadowStrike-CTF](https://github.com/ShadowStrike-CTF)
|
treska-0.1.0/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Treska — CTF Parser
|
|
2
|
+
|
|
3
|
+
Part of the Megdan CTF Line.
|
|
4
|
+
|
|
5
|
+
Treska is a fast forensic parser for zipped logical extractions in CTF competitions.
|
|
6
|
+
|
|
7
|
+
> Placeholder release — full build coming soon.
|
|
8
|
+
|
|
9
|
+
## Megdan CTF Line
|
|
10
|
+
|
|
11
|
+
| Package | Role |
|
|
12
|
+
|---|---|
|
|
13
|
+
| **Phalanx** | 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 = "treska"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Treska is a fast forensic parser for zipped logical extractions in CTF 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/Treska"
|
|
23
|
+
"Source" = "https://github.com/ShadowStrike-CTF/Treska"
|
|
24
|
+
"Bug Tracker" = "https://github.com/ShadowStrike-CTF/Treska/issues"
|
treska-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: treska
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Treska is a fast forensic parser for zipped logical extractions in CTF competitions.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Treska
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Treska
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Treska/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
|
+
# Treska — CTF Parser
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Treska is a fast forensic parser for zipped logical extractions in CTF competitions.
|
|
23
|
+
|
|
24
|
+
> Placeholder release — full build coming soon.
|
|
25
|
+
|
|
26
|
+
## Megdan CTF Line
|
|
27
|
+
|
|
28
|
+
| Package | Role |
|
|
29
|
+
|---|---|
|
|
30
|
+
| **Phalanx** | 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
|
+
treska
|