ose-auditor 1.0.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Crestsek Technology Ltd
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.
@@ -0,0 +1,132 @@
1
+ Metadata-Version: 2.4
2
+ Name: ose-auditor
3
+ Version: 1.0.0
4
+ Summary: OSE Auditor: a financial-logic security scanner for Node.js/TypeScript projects.
5
+ Author: Crestsek
6
+ License: MIT
7
+ Project-URL: Homepage, https://ose.crestsek.com
8
+ Project-URL: Repository, https://github.com/crestseklogistics/ose-auditor
9
+ Project-URL: Issues, https://github.com/crestseklogistics/ose-auditor/issues
10
+ Keywords: security,audit,sast,vulnerability-scanner,nodejs,typescript,fintech
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Security
23
+ Classifier: Topic :: Software Development :: Quality Assurance
24
+ Requires-Python: >=3.9
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: ose-auditor-fsa>=1.0.0
28
+ Provides-Extra: http
29
+ Requires-Dist: httpx>=0.27; extra == "http"
30
+ Provides-Extra: analysis
31
+ Requires-Dist: tree-sitter>=0.21; extra == "analysis"
32
+ Requires-Dist: tree-sitter-javascript>=0.21; extra == "analysis"
33
+ Requires-Dist: tree-sitter-typescript>=0.21; extra == "analysis"
34
+ Provides-Extra: mcp
35
+ Provides-Extra: dev
36
+ Requires-Dist: pytest>=7.0; extra == "dev"
37
+ Requires-Dist: pytest-asyncio>=0.21; extra == "dev"
38
+ Dynamic: license-file
39
+
40
+ # OSE Auditor
41
+
42
+ **OSE Auditor** is an autonomous financial and logic exploit detection engine that uses deterministic code analysis and AI remediation to discover money‑losing vulnerabilities before deployment.
43
+
44
+ ## Project Structure
45
+ ose-auditor/
46
+ ├── client/ # Local CLI & parser (Open Source)
47
+ ├── contracts/ # Data contract validation (Open Source)
48
+ ├── fsa/ # Financial Semantic Analyzer (Proprietary)
49
+ ├── server/ # Cloud API & billing (Proprietary)
50
+ ├── tests/ # Unit and integration tests
51
+ └── docs/ # Documentation
52
+
53
+ text
54
+
55
+ ## Quick Start
56
+
57
+ ### 1. Clone the repository
58
+
59
+ ```bash
60
+ git clone https://github.com/crestsek/ose-auditor.git
61
+ cd ose-auditor
62
+ 2. Create a virtual environment
63
+ bash
64
+ python3 -m venv venv
65
+ source venv/bin/activate # On Windows: venv\Scripts\activate
66
+ 3. Install dependencies
67
+ bash
68
+ pip install -r requirements.txt
69
+ 4. Set up environment variables
70
+ bash
71
+ cp .env.example .env
72
+ # Edit .env with your values
73
+ 5. Run a local audit (with mock FSA)
74
+ bash
75
+ python -m client.ose audit /path/to/your/nodejs/project
76
+ Environment Variables
77
+ See .env.example for a complete list.
78
+
79
+ License
80
+ Proprietary. See LICENSE file for details.
81
+
82
+ text
83
+
84
+ ---
85
+
86
+ ## 5. `pyproject.toml` – FOR PACKAGING (Optional)
87
+
88
+ ```toml
89
+ [build-system]
90
+ requires = ["setuptools>=61.0", "wheel"]
91
+ build-backend = "setuptools.build_meta"
92
+
93
+ [project]
94
+ name = "ose-auditor"
95
+ version = "1.0.0"
96
+ description = "Autonomous financial and logic exploit detection engine"
97
+ readme = "README.md"
98
+ requires-python = ">=3.10"
99
+ authors = [
100
+ {name = "Crestsek Technology Ltd", email = "info@crestsek.com"}
101
+ ]
102
+ classifiers = [
103
+ "Programming Language :: Python :: 3",
104
+ "License :: Other/Proprietary License",
105
+ ]
106
+ dependencies = [
107
+ "fastapi>=0.115.0",
108
+ "uvicorn>=0.30.0",
109
+ "asyncpg>=0.29.0",
110
+ "pydantic>=2.9.0",
111
+ "httpx>=0.27.0",
112
+ "python-dotenv>=1.0.0",
113
+ "click>=8.1.0",
114
+ "tree-sitter>=0.22.0",
115
+ "tree-sitter-javascript>=0.20.0",
116
+ "tree-sitter-typescript>=0.20.0",
117
+ ]
118
+
119
+ [project.scripts]
120
+ ose = "client.ose:main"
121
+
122
+ [tool.setuptools.packages.find]
123
+ include = ["client*", "contracts*", "fsa*", "server*"]
124
+ exclude = ["tests*", "docs*"]
125
+
126
+ [tool.black]
127
+ line-length = 100
128
+ target-version = ['py310']
129
+
130
+ [tool.mypy]
131
+ python_version = "3.10"
132
+ ignore_missing_imports = true
@@ -0,0 +1,93 @@
1
+ # OSE Auditor
2
+
3
+ **OSE Auditor** is an autonomous financial and logic exploit detection engine that uses deterministic code analysis and AI remediation to discover money‑losing vulnerabilities before deployment.
4
+
5
+ ## Project Structure
6
+ ose-auditor/
7
+ ├── client/ # Local CLI & parser (Open Source)
8
+ ├── contracts/ # Data contract validation (Open Source)
9
+ ├── fsa/ # Financial Semantic Analyzer (Proprietary)
10
+ ├── server/ # Cloud API & billing (Proprietary)
11
+ ├── tests/ # Unit and integration tests
12
+ └── docs/ # Documentation
13
+
14
+ text
15
+
16
+ ## Quick Start
17
+
18
+ ### 1. Clone the repository
19
+
20
+ ```bash
21
+ git clone https://github.com/crestsek/ose-auditor.git
22
+ cd ose-auditor
23
+ 2. Create a virtual environment
24
+ bash
25
+ python3 -m venv venv
26
+ source venv/bin/activate # On Windows: venv\Scripts\activate
27
+ 3. Install dependencies
28
+ bash
29
+ pip install -r requirements.txt
30
+ 4. Set up environment variables
31
+ bash
32
+ cp .env.example .env
33
+ # Edit .env with your values
34
+ 5. Run a local audit (with mock FSA)
35
+ bash
36
+ python -m client.ose audit /path/to/your/nodejs/project
37
+ Environment Variables
38
+ See .env.example for a complete list.
39
+
40
+ License
41
+ Proprietary. See LICENSE file for details.
42
+
43
+ text
44
+
45
+ ---
46
+
47
+ ## 5. `pyproject.toml` – FOR PACKAGING (Optional)
48
+
49
+ ```toml
50
+ [build-system]
51
+ requires = ["setuptools>=61.0", "wheel"]
52
+ build-backend = "setuptools.build_meta"
53
+
54
+ [project]
55
+ name = "ose-auditor"
56
+ version = "1.0.0"
57
+ description = "Autonomous financial and logic exploit detection engine"
58
+ readme = "README.md"
59
+ requires-python = ">=3.10"
60
+ authors = [
61
+ {name = "Crestsek Technology Ltd", email = "info@crestsek.com"}
62
+ ]
63
+ classifiers = [
64
+ "Programming Language :: Python :: 3",
65
+ "License :: Other/Proprietary License",
66
+ ]
67
+ dependencies = [
68
+ "fastapi>=0.115.0",
69
+ "uvicorn>=0.30.0",
70
+ "asyncpg>=0.29.0",
71
+ "pydantic>=2.9.0",
72
+ "httpx>=0.27.0",
73
+ "python-dotenv>=1.0.0",
74
+ "click>=8.1.0",
75
+ "tree-sitter>=0.22.0",
76
+ "tree-sitter-javascript>=0.20.0",
77
+ "tree-sitter-typescript>=0.20.0",
78
+ ]
79
+
80
+ [project.scripts]
81
+ ose = "client.ose:main"
82
+
83
+ [tool.setuptools.packages.find]
84
+ include = ["client*", "contracts*", "fsa*", "server*"]
85
+ exclude = ["tests*", "docs*"]
86
+
87
+ [tool.black]
88
+ line-length = 100
89
+ target-version = ['py310']
90
+
91
+ [tool.mypy]
92
+ python_version = "3.10"
93
+ ignore_missing_imports = true
File without changes