iotsploit-protocols 0.0.9__py3-none-any.whl

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.
@@ -0,0 +1,20 @@
1
+ """Automotive protocol clients and description parsers, free of runtime state.
2
+
3
+ Nothing here reads the IoTSploit database, environment variables, or the
4
+ current target, and nothing here runs sudo or prompts a human. Inputs are
5
+ explicit config objects or caller-selected description files. That is what
6
+ lets these run under Celery, under MCP, in a test, or from a plugin, and it is
7
+ what keeps one lab bench's IP addresses out of the library.
8
+
9
+ Importing this package is deliberately cheap: scapy costs hundreds of
10
+ milliseconds and reads host network configuration at import time, so every
11
+ scapy import lives inside the module that needs it rather than here.
12
+ """
13
+
14
+ from __future__ import annotations
15
+
16
+ __version__ = "0.0.9"
17
+
18
+ __all__ = ["NegativeResponse", "NotConfigured", "ProtocolError"]
19
+
20
+ from iotsploit_protocols.errors import NegativeResponse, NotConfigured, ProtocolError
@@ -0,0 +1,12 @@
1
+ """AUTOSAR communication-description readers."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from iotsploit_protocols.autosar.arxml import (
6
+ ArxmlImportError,
7
+ ArxmlImportResult,
8
+ dump_target,
9
+ import_arxml,
10
+ )
11
+
12
+ __all__ = ["ArxmlImportError", "ArxmlImportResult", "dump_target", "import_arxml"]