oscura 0.0.1__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.
oscura-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 TraceKit Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
oscura-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,63 @@
1
+ Metadata-Version: 2.4
2
+ Name: oscura
3
+ Version: 0.0.1
4
+ Summary: Unified hardware reverse engineering framework. Revealing what's hidden in every signal. (Placeholder - full release coming soon)
5
+ Project-URL: Homepage, https://github.com/lair-click-bats/tracekit
6
+ Project-URL: Documentation, https://github.com/lair-click-bats/tracekit
7
+ Project-URL: Repository, https://github.com/lair-click-bats/tracekit
8
+ Author: TraceKit Contributors
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: hardware-reverse-engineering,protocol-analysis,reverse-engineering,security-research,signal-analysis
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Information Technology
15
+ Classifier: Intended Audience :: Science/Research
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Scientific/Engineering
22
+ Classifier: Topic :: Security
23
+ Classifier: Topic :: System :: Hardware
24
+ Requires-Python: >=3.12
25
+ Description-Content-Type: text/markdown
26
+
27
+ # Oscura
28
+
29
+ **Unified hardware reverse engineering framework. Revealing what's hidden in every signal.**
30
+
31
+ ## Status
32
+
33
+ ⚠️ **This is a placeholder package.** Full release coming soon.
34
+
35
+ Oscura is a hardware reverse engineering framework for security researchers, right-to-repair advocates, defense analysts, and commercial intelligence teams.
36
+
37
+ ## Vision
38
+
39
+ From oscilloscope captures to complete system understanding:
40
+
41
+ - **Unknown protocol discovery** - Automatic protocol inference and state machine extraction
42
+ - **System replication** - Reverse engineer proprietary devices for understanding and repair
43
+ - **Security analysis** - Vulnerability discovery, CRC/checksum recovery, exploitation
44
+ - **Signal analysis** - IEEE-compliant measurements, comprehensive protocol decoding (16+ protocols)
45
+
46
+ ## Coming Soon
47
+
48
+ Watch for updates at:
49
+ - GitHub: https://github.com/lair-click-bats/tracekit
50
+ - PyPI: https://pypi.org/project/oscura/
51
+
52
+ ## Current Package
53
+
54
+ This is the **TraceKit** framework in transition to **Oscura**. The rename will happen in the coming release.
55
+
56
+ For the current stable version, install:
57
+ ```bash
58
+ pip install tracekit
59
+ ```
60
+
61
+ ## License
62
+
63
+ MIT License - Copyright (c) 2026 TraceKit Contributors
oscura-0.0.1/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # Oscura
2
+
3
+ **Unified hardware reverse engineering framework. Revealing what's hidden in every signal.**
4
+
5
+ ## Status
6
+
7
+ ⚠️ **This is a placeholder package.** Full release coming soon.
8
+
9
+ Oscura is a hardware reverse engineering framework for security researchers, right-to-repair advocates, defense analysts, and commercial intelligence teams.
10
+
11
+ ## Vision
12
+
13
+ From oscilloscope captures to complete system understanding:
14
+
15
+ - **Unknown protocol discovery** - Automatic protocol inference and state machine extraction
16
+ - **System replication** - Reverse engineer proprietary devices for understanding and repair
17
+ - **Security analysis** - Vulnerability discovery, CRC/checksum recovery, exploitation
18
+ - **Signal analysis** - IEEE-compliant measurements, comprehensive protocol decoding (16+ protocols)
19
+
20
+ ## Coming Soon
21
+
22
+ Watch for updates at:
23
+ - GitHub: https://github.com/lair-click-bats/tracekit
24
+ - PyPI: https://pypi.org/project/oscura/
25
+
26
+ ## Current Package
27
+
28
+ This is the **TraceKit** framework in transition to **Oscura**. The rename will happen in the coming release.
29
+
30
+ For the current stable version, install:
31
+ ```bash
32
+ pip install tracekit
33
+ ```
34
+
35
+ ## License
36
+
37
+ MIT License - Copyright (c) 2026 TraceKit Contributors
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "oscura"
7
+ version = "0.0.1"
8
+ description = "Unified hardware reverse engineering framework. Revealing what's hidden in every signal. (Placeholder - full release coming soon)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "TraceKit Contributors"}
14
+ ]
15
+ keywords = [
16
+ "hardware-reverse-engineering",
17
+ "reverse-engineering",
18
+ "security-research",
19
+ "protocol-analysis",
20
+ "signal-analysis",
21
+ ]
22
+ classifiers = [
23
+ "Development Status :: 1 - Planning",
24
+ "Intended Audience :: Developers",
25
+ "Intended Audience :: Information Technology",
26
+ "Intended Audience :: Science/Research",
27
+ "License :: OSI Approved :: MIT License",
28
+ "Operating System :: OS Independent",
29
+ "Programming Language :: Python :: 3",
30
+ "Programming Language :: Python :: 3.12",
31
+ "Programming Language :: Python :: 3.13",
32
+ "Topic :: Security",
33
+ "Topic :: Scientific/Engineering",
34
+ "Topic :: System :: Hardware",
35
+ ]
36
+
37
+ [project.urls]
38
+ Homepage = "https://github.com/lair-click-bats/tracekit"
39
+ Documentation = "https://github.com/lair-click-bats/tracekit"
40
+ Repository = "https://github.com/lair-click-bats/tracekit"
41
+
42
+ [tool.hatch.build.targets.wheel]
43
+ packages = ["src/oscura"]
@@ -0,0 +1,13 @@
1
+ """Oscura - Unified hardware reverse engineering framework.
2
+
3
+ ⚠️ This is a placeholder package. Full release coming soon.
4
+
5
+ Oscura is a hardware reverse engineering framework for security researchers,
6
+ right-to-repair advocates, defense analysts, and commercial intelligence teams.
7
+
8
+ For updates:
9
+ - GitHub: https://github.com/lair-click-bats/tracekit (migrating to oscura-re/oscura)
10
+ - PyPI: https://pypi.org/project/oscura/
11
+ """
12
+
13
+ __version__ = "0.0.1"