poligon 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.
- poligon-0.1.0/PKG-INFO +36 -0
- poligon-0.1.0/README.md +19 -0
- poligon-0.1.0/pyproject.toml +24 -0
- poligon-0.1.0/setup.cfg +4 -0
- poligon-0.1.0/src/poligon/__init__.py +4 -0
- poligon-0.1.0/src/poligon.egg-info/PKG-INFO +36 -0
- poligon-0.1.0/src/poligon.egg-info/SOURCES.txt +7 -0
- poligon-0.1.0/src/poligon.egg-info/dependency_links.txt +1 -0
- poligon-0.1.0/src/poligon.egg-info/top_level.txt +1 -0
poligon-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: poligon
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Poligon is a CTF practice simulator for digital forensics training and competition preparation.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Poligon
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Poligon
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Poligon/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
|
+
# Poligon — Practice Simulator
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Poligon is a CTF practice simulator for digital forensics training and competition preparation.
|
|
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)
|
poligon-0.1.0/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Poligon — Practice Simulator
|
|
2
|
+
|
|
3
|
+
Part of the Megdan CTF Line.
|
|
4
|
+
|
|
5
|
+
Poligon is a CTF practice simulator for digital forensics training and competition preparation.
|
|
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 = "poligon"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Poligon is a CTF practice simulator for digital forensics training and competition preparation."
|
|
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/Poligon"
|
|
23
|
+
"Source" = "https://github.com/ShadowStrike-CTF/Poligon"
|
|
24
|
+
"Bug Tracker" = "https://github.com/ShadowStrike-CTF/Poligon/issues"
|
poligon-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: poligon
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Poligon is a CTF practice simulator for digital forensics training and competition preparation.
|
|
5
|
+
Author: ShadowStrike-CTF
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/ShadowStrike-CTF/Poligon
|
|
8
|
+
Project-URL: Source, https://github.com/ShadowStrike-CTF/Poligon
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/ShadowStrike-CTF/Poligon/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
|
+
# Poligon — Practice Simulator
|
|
19
|
+
|
|
20
|
+
Part of the Megdan CTF Line.
|
|
21
|
+
|
|
22
|
+
Poligon is a CTF practice simulator for digital forensics training and competition preparation.
|
|
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
|
+
poligon
|