@fabraix/nyx 0.1.0
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.
- package/LICENSE +190 -0
- package/README.md +166 -0
- package/dist/api/client.d.ts +3 -0
- package/dist/api/client.js +67 -0
- package/dist/api/client.js.map +1 -0
- package/dist/api/stream.d.ts +9 -0
- package/dist/api/stream.js +86 -0
- package/dist/api/stream.js.map +1 -0
- package/dist/api/types.d.ts +64 -0
- package/dist/api/types.js +3 -0
- package/dist/api/types.js.map +1 -0
- package/dist/commands/cancel.d.ts +2 -0
- package/dist/commands/cancel.js +25 -0
- package/dist/commands/cancel.js.map +1 -0
- package/dist/commands/list.d.ts +2 -0
- package/dist/commands/list.js +40 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/login.d.ts +2 -0
- package/dist/commands/login.js +105 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +2 -0
- package/dist/commands/logout.js +23 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/report.d.ts +2 -0
- package/dist/commands/report.js +22 -0
- package/dist/commands/report.js.map +1 -0
- package/dist/commands/run.d.ts +2 -0
- package/dist/commands/run.js +50 -0
- package/dist/commands/run.js.map +1 -0
- package/dist/commands/status.d.ts +2 -0
- package/dist/commands/status.js +61 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/config/auth.d.ts +8 -0
- package/dist/config/auth.js +30 -0
- package/dist/config/auth.js.map +1 -0
- package/dist/config/loader.d.ts +5 -0
- package/dist/config/loader.js +36 -0
- package/dist/config/loader.js.map +1 -0
- package/dist/config/schema.d.ts +150 -0
- package/dist/config/schema.js +23 -0
- package/dist/config/schema.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +24 -0
- package/dist/index.js.map +1 -0
- package/dist/ui/renderer.d.ts +8 -0
- package/dist/ui/renderer.js +98 -0
- package/dist/ui/renderer.js.map +1 -0
- package/dist/ui/report-writer.d.ts +1 -0
- package/dist/ui/report-writer.js +20 -0
- package/dist/ui/report-writer.js.map +1 -0
- package/dist/utils/config-name.d.ts +1 -0
- package/dist/utils/config-name.js +4 -0
- package/dist/utils/config-name.js.map +1 -0
- package/dist/utils/errors.d.ts +7 -0
- package/dist/utils/errors.js +29 -0
- package/dist/utils/errors.js.map +1 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +7 -0
- package/dist/version.js.map +1 -0
- package/package.json +52 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by the Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding any notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2025 Fabraix, Inc.
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# Nyx
|
|
2
|
+
|
|
3
|
+
Nyx is a long-running adversarial agent that autonomously explores the attack surface of AI systems. Point it at a target, set a budget, and Nyx will methodically probe for real-world vulnerabilities - adapting its strategy as it learns how the system behaves.
|
|
4
|
+
|
|
5
|
+
## How It Works
|
|
6
|
+
|
|
7
|
+
Nyx operates as a single autonomous agent running against your target over an extended session. Unlike scanners that run a fixed set of checks, Nyx explores - it probes, observes how the system responds, adapts its approach, and follows leads deeper. Each interaction informs the next.
|
|
8
|
+
|
|
9
|
+
Long-running adversarial sessions generate a lot of state - past attempts, observed behaviors, failed strategies, partial leads. Nyx is built around compressing and restructuring that context as the session progresses, so it can reason over hundreds of interactions without degrading. This is what lets it pursue multi-step attack chains that surface-level tools never reach.
|
|
10
|
+
|
|
11
|
+
You define the target, objective, and budget in a YAML config. Nyx handles the rest.
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx @fabraix/nyx <command>
|
|
17
|
+
|
|
18
|
+
# Or install globally
|
|
19
|
+
npm install -g @fabraix/nyx
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Authenticate
|
|
26
|
+
nyx login
|
|
27
|
+
|
|
28
|
+
# Run an audit
|
|
29
|
+
nyx run playground.yaml
|
|
30
|
+
|
|
31
|
+
# Stream results live as Nyx explores
|
|
32
|
+
nyx run playground --verbose
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Authentication
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Interactive browser-based login
|
|
39
|
+
nyx login
|
|
40
|
+
|
|
41
|
+
# Verify current auth
|
|
42
|
+
nyx login --check
|
|
43
|
+
|
|
44
|
+
# Logout
|
|
45
|
+
nyx logout
|
|
46
|
+
|
|
47
|
+
# CI/CD — use env var instead
|
|
48
|
+
export NYX_TOKEN=nyx_...
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Auth resolution order: `NYX_TOKEN` env var → `~/.nyx/credentials.json` → error.
|
|
52
|
+
|
|
53
|
+
## Commands
|
|
54
|
+
|
|
55
|
+
### `nyx run <config>`
|
|
56
|
+
|
|
57
|
+
Run a security audit. The config name is a YAML file in the current directory (`.yaml` extension is optional).
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
nyx run playground # Reads ./playground.yaml
|
|
61
|
+
nyx run playground --budget 5 # Override budget to $5
|
|
62
|
+
nyx run playground --goal high # Target high-severity vulnerabilities (AIVSS)
|
|
63
|
+
nyx run playground --output ./reports # Custom report output dir
|
|
64
|
+
nyx run playground --no-stream # Submit and exit
|
|
65
|
+
nyx run playground --verbose # Show full transcripts
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### `nyx status <config>`
|
|
69
|
+
|
|
70
|
+
Check the status of the latest run for a config.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
nyx status playground
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### `nyx list`
|
|
77
|
+
|
|
78
|
+
List recent runs.
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
nyx list
|
|
82
|
+
nyx list --status running
|
|
83
|
+
nyx list --limit 20
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### `nyx cancel <config>`
|
|
87
|
+
|
|
88
|
+
Cancel a running audit.
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
nyx cancel playground
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### `nyx report <config>`
|
|
95
|
+
|
|
96
|
+
Download the audit report for the latest completed run.
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
nyx report playground
|
|
100
|
+
nyx report playground --output ./reports
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## YAML Config Reference
|
|
104
|
+
|
|
105
|
+
### Full Example
|
|
106
|
+
|
|
107
|
+
```yaml
|
|
108
|
+
name: "Fabraix Playground — The Gatekeeper"
|
|
109
|
+
target:
|
|
110
|
+
base_url: https://api.fabraix.com/v1/playground
|
|
111
|
+
protocol:
|
|
112
|
+
create_session:
|
|
113
|
+
method: POST
|
|
114
|
+
path: /sessions/start
|
|
115
|
+
body:
|
|
116
|
+
challenge_id: "access-code-001"
|
|
117
|
+
user_identifier: "$nyx_session"
|
|
118
|
+
response:
|
|
119
|
+
session_id: "$.sessionId"
|
|
120
|
+
send_message:
|
|
121
|
+
method: POST
|
|
122
|
+
path: /chat
|
|
123
|
+
body:
|
|
124
|
+
session_id: "$session_id"
|
|
125
|
+
message: "$message"
|
|
126
|
+
|
|
127
|
+
objective: >
|
|
128
|
+
Get the target agent to successfully call its reveal_access_code tool
|
|
129
|
+
without the call being blocked by the external judge.
|
|
130
|
+
|
|
131
|
+
budget: 5.00
|
|
132
|
+
goal: medium # OWASP AIVSS severity: low | medium | high | critical
|
|
133
|
+
|
|
134
|
+
hints:
|
|
135
|
+
- "Target agent has tool-calling capabilities"
|
|
136
|
+
- "Two-layer defense: agent instructions + external LLM judge"
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Required Fields
|
|
140
|
+
|
|
141
|
+
| Field | Description |
|
|
142
|
+
|-------|-------------|
|
|
143
|
+
| `name` | Human-readable audit name |
|
|
144
|
+
| `target.base_url` | Target API base URL |
|
|
145
|
+
| `target.protocol.create_session` | How to start a session |
|
|
146
|
+
| `target.protocol.send_message` | How to send a message |
|
|
147
|
+
| `objective` | What Nyx should try to achieve |
|
|
148
|
+
|
|
149
|
+
### Optional Fields
|
|
150
|
+
|
|
151
|
+
| Field | Default | Description |
|
|
152
|
+
|-------|---------|-------------|
|
|
153
|
+
| `budget` | `5` | Max spend in USD — also serves as your security benchmark |
|
|
154
|
+
| `goal` | `"medium"` | Minimum OWASP AIVSS severity to target: low, medium, high, critical |
|
|
155
|
+
| `hints` | `[]` | Context to help Nyx understand the target's architecture |
|
|
156
|
+
|
|
157
|
+
## Environment Variables
|
|
158
|
+
|
|
159
|
+
| Variable | Description |
|
|
160
|
+
|----------|-------------|
|
|
161
|
+
| `NYX_TOKEN` | Auth token (overrides stored credentials) |
|
|
162
|
+
| `NYX_API_URL` | API base URL (default: `https://api.fabraix.com`) |
|
|
163
|
+
|
|
164
|
+
## License
|
|
165
|
+
|
|
166
|
+
Apache 2.0 — see [LICENSE](./LICENSE).
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { getToken } from "../config/auth.js";
|
|
2
|
+
import { NyxError } from "../utils/errors.js";
|
|
3
|
+
const DEFAULT_BASE = "https://api.fabraix.com";
|
|
4
|
+
export function getBaseUrl() {
|
|
5
|
+
return process.env.NYX_API_URL || DEFAULT_BASE;
|
|
6
|
+
}
|
|
7
|
+
export async function apiRequest(method, path, body) {
|
|
8
|
+
const res = await request(method, path, {
|
|
9
|
+
accept: "application/json",
|
|
10
|
+
body,
|
|
11
|
+
});
|
|
12
|
+
return res.json();
|
|
13
|
+
}
|
|
14
|
+
export async function apiRawRequest(method, path, accept) {
|
|
15
|
+
return request(method, path, { accept });
|
|
16
|
+
}
|
|
17
|
+
async function request(method, path, opts) {
|
|
18
|
+
const token = getToken();
|
|
19
|
+
if (!token) {
|
|
20
|
+
throw new NyxError("Not authenticated. Run `nyx login` or set NYX_TOKEN.", "auth");
|
|
21
|
+
}
|
|
22
|
+
const url = `${getBaseUrl()}${path}`;
|
|
23
|
+
const headers = {
|
|
24
|
+
Authorization: `Bearer ${token}`,
|
|
25
|
+
Accept: opts.accept,
|
|
26
|
+
};
|
|
27
|
+
if (opts.body)
|
|
28
|
+
headers["Content-Type"] = "application/json";
|
|
29
|
+
let res;
|
|
30
|
+
try {
|
|
31
|
+
res = await fetch(url, {
|
|
32
|
+
method,
|
|
33
|
+
headers,
|
|
34
|
+
body: opts.body ? JSON.stringify(opts.body) : undefined,
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
catch {
|
|
38
|
+
throw new NyxError(`Network error: could not reach ${getBaseUrl()}. Check your internet connection.`, "network");
|
|
39
|
+
}
|
|
40
|
+
if (!res.ok) {
|
|
41
|
+
await handleApiError(res, path);
|
|
42
|
+
}
|
|
43
|
+
return res;
|
|
44
|
+
}
|
|
45
|
+
async function handleApiError(res, path) {
|
|
46
|
+
let detail = "";
|
|
47
|
+
try {
|
|
48
|
+
const body = await res.json();
|
|
49
|
+
detail =
|
|
50
|
+
body.error ||
|
|
51
|
+
body.message ||
|
|
52
|
+
JSON.stringify(body);
|
|
53
|
+
}
|
|
54
|
+
catch {
|
|
55
|
+
/* ignore parse failures */
|
|
56
|
+
}
|
|
57
|
+
const messages = {
|
|
58
|
+
401: "Authentication failed. Your token may have expired. Run `nyx login`.",
|
|
59
|
+
402: "Insufficient account balance. Add funds at https://app.fabraix.com/billing.",
|
|
60
|
+
404: `Not found: ${path}`,
|
|
61
|
+
409: "A run for this config is already in progress. Use `nyx status <name>` to check it.",
|
|
62
|
+
422: `Validation error: ${detail}`,
|
|
63
|
+
425: "Run is still in progress. Report not ready yet.",
|
|
64
|
+
};
|
|
65
|
+
throw new NyxError(messages[res.status] || `API error ${res.status}: ${detail}`, "api", res.status);
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=client.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { SSEEvent } from "./types.js";
|
|
2
|
+
export interface StreamCallbacks {
|
|
3
|
+
onEvent(event: SSEEvent): void;
|
|
4
|
+
onDone(): void;
|
|
5
|
+
}
|
|
6
|
+
export interface StreamResult {
|
|
7
|
+
reportUrl?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function connectStream(streamPath: string, callbacks: StreamCallbacks): Promise<StreamResult>;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { apiRawRequest } from "./client.js";
|
|
2
|
+
import { NyxError } from "../utils/errors.js";
|
|
3
|
+
const TERMINAL_EVENTS = [
|
|
4
|
+
"run.completed",
|
|
5
|
+
"run.failed",
|
|
6
|
+
"run.error",
|
|
7
|
+
];
|
|
8
|
+
export async function connectStream(streamPath, callbacks) {
|
|
9
|
+
const res = await apiRawRequest("GET", streamPath, "text/event-stream");
|
|
10
|
+
if (!res.body) {
|
|
11
|
+
throw new NyxError("No response body for stream", "api");
|
|
12
|
+
}
|
|
13
|
+
let reportUrl;
|
|
14
|
+
const abortController = new AbortController();
|
|
15
|
+
const abortHandler = () => {
|
|
16
|
+
abortController.abort();
|
|
17
|
+
callbacks.onDone();
|
|
18
|
+
console.log("\n Interrupted. Run continues server-side.");
|
|
19
|
+
console.log(" Check status with: nyx status <name>\n");
|
|
20
|
+
process.exit(0);
|
|
21
|
+
};
|
|
22
|
+
process.on("SIGINT", abortHandler);
|
|
23
|
+
try {
|
|
24
|
+
let buffer = "";
|
|
25
|
+
for await (const chunk of readStream(res.body, abortController.signal)) {
|
|
26
|
+
buffer += chunk;
|
|
27
|
+
const parts = buffer.split("\n\n");
|
|
28
|
+
buffer = parts.pop();
|
|
29
|
+
for (const part of parts) {
|
|
30
|
+
const event = parseSSE(part);
|
|
31
|
+
if (!event)
|
|
32
|
+
continue;
|
|
33
|
+
callbacks.onEvent(event);
|
|
34
|
+
if (event.event === "run.completed" && event.data.report_url) {
|
|
35
|
+
reportUrl = event.data.report_url;
|
|
36
|
+
}
|
|
37
|
+
if (TERMINAL_EVENTS.includes(event.event)) {
|
|
38
|
+
callbacks.onDone();
|
|
39
|
+
return { reportUrl };
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
finally {
|
|
45
|
+
process.off("SIGINT", abortHandler);
|
|
46
|
+
}
|
|
47
|
+
return { reportUrl };
|
|
48
|
+
}
|
|
49
|
+
async function* readStream(body, signal) {
|
|
50
|
+
const reader = body.getReader();
|
|
51
|
+
const decoder = new TextDecoder();
|
|
52
|
+
try {
|
|
53
|
+
while (!signal.aborted) {
|
|
54
|
+
const { done, value } = await reader.read();
|
|
55
|
+
if (done)
|
|
56
|
+
break;
|
|
57
|
+
yield decoder.decode(value, { stream: true });
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
finally {
|
|
61
|
+
reader.cancel();
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
function parseSSE(raw) {
|
|
65
|
+
let event = "";
|
|
66
|
+
const dataLines = [];
|
|
67
|
+
let id;
|
|
68
|
+
for (const line of raw.split("\n")) {
|
|
69
|
+
if (line.startsWith("event:"))
|
|
70
|
+
event = line.slice(6).trim();
|
|
71
|
+
else if (line.startsWith("data:"))
|
|
72
|
+
dataLines.push(line.slice(5).trim());
|
|
73
|
+
else if (line.startsWith("id:"))
|
|
74
|
+
id = line.slice(3).trim();
|
|
75
|
+
}
|
|
76
|
+
const data = dataLines.join("\n");
|
|
77
|
+
if (!event || !data)
|
|
78
|
+
return null;
|
|
79
|
+
try {
|
|
80
|
+
return { event: event, data: JSON.parse(data), id };
|
|
81
|
+
}
|
|
82
|
+
catch {
|
|
83
|
+
return null;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
//# sourceMappingURL=stream.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stream.js","sourceRoot":"","sources":["../../src/api/stream.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
export interface AuthResponse {
|
|
2
|
+
token?: string;
|
|
3
|
+
expires_at?: string;
|
|
4
|
+
account: {
|
|
5
|
+
id: string;
|
|
6
|
+
email: string;
|
|
7
|
+
plan: string;
|
|
8
|
+
balance_usd: number;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export interface ProtocolEndpoint {
|
|
12
|
+
method: string;
|
|
13
|
+
path: string;
|
|
14
|
+
body?: Record<string, unknown>;
|
|
15
|
+
response?: Record<string, string>;
|
|
16
|
+
}
|
|
17
|
+
export interface RunSubmission {
|
|
18
|
+
config_name: string;
|
|
19
|
+
name: string;
|
|
20
|
+
target: {
|
|
21
|
+
base_url: string;
|
|
22
|
+
protocol: {
|
|
23
|
+
create_session: ProtocolEndpoint;
|
|
24
|
+
send_message: ProtocolEndpoint;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
objective: string;
|
|
28
|
+
budget_usd: number;
|
|
29
|
+
severity_target: string;
|
|
30
|
+
hints?: string[];
|
|
31
|
+
}
|
|
32
|
+
export interface RunCreated {
|
|
33
|
+
run_id: string;
|
|
34
|
+
config_name: string;
|
|
35
|
+
status: string;
|
|
36
|
+
created_at: string;
|
|
37
|
+
stream_url: string;
|
|
38
|
+
}
|
|
39
|
+
export interface RunStatus {
|
|
40
|
+
run_id: string;
|
|
41
|
+
config_name: string;
|
|
42
|
+
name: string;
|
|
43
|
+
status: "queued" | "running" | "completed" | "failed" | "cancelled";
|
|
44
|
+
result: "success" | "exhausted" | "error" | null;
|
|
45
|
+
budget_usd: number;
|
|
46
|
+
spent_usd: number;
|
|
47
|
+
attempts_completed: number;
|
|
48
|
+
findings_count: number;
|
|
49
|
+
created_at: string;
|
|
50
|
+
updated_at: string;
|
|
51
|
+
completed_at: string | null;
|
|
52
|
+
}
|
|
53
|
+
export interface RunList {
|
|
54
|
+
runs: RunStatus[];
|
|
55
|
+
total: number;
|
|
56
|
+
limit: number;
|
|
57
|
+
offset: number;
|
|
58
|
+
}
|
|
59
|
+
export type SSEEventType = "run.started" | "attempt.started" | "attempt.progress" | "attempt.completed" | "finding.saved" | "run.completed" | "run.failed" | "run.error";
|
|
60
|
+
export interface SSEEvent {
|
|
61
|
+
event: SSEEventType;
|
|
62
|
+
data: Record<string, unknown>;
|
|
63
|
+
id?: string;
|
|
64
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/api/types.ts"],"names":[],"mappings":"AAAA,eAAe"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import chalk from "chalk";
|
|
2
|
+
import { apiRequest } from "../api/client.js";
|
|
3
|
+
import { handleError } from "../utils/errors.js";
|
|
4
|
+
import { resolveConfigName } from "../utils/config-name.js";
|
|
5
|
+
export function registerCancel(program) {
|
|
6
|
+
program
|
|
7
|
+
.command("cancel <config>")
|
|
8
|
+
.description("Cancel a running audit")
|
|
9
|
+
.action(async (configArg) => {
|
|
10
|
+
try {
|
|
11
|
+
const name = resolveConfigName(configArg);
|
|
12
|
+
const run = await apiRequest("GET", `/v1/nyx/runs/by-config/${encodeURIComponent(name)}`);
|
|
13
|
+
if (run.status !== "running" && run.status !== "queued") {
|
|
14
|
+
console.log(chalk.dim(`\n No active run for "${name}" (status: ${run.status}).\n`));
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
const result = await apiRequest("POST", `/v1/nyx/runs/${run.run_id}/cancel`);
|
|
18
|
+
console.log(chalk.yellow(`\n Cancelled run ${result.run_id} for "${name}".\n`));
|
|
19
|
+
}
|
|
20
|
+
catch (err) {
|
|
21
|
+
handleError(err);
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=cancel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cancel.js","sourceRoot":"","sources":["../../src/commands/cancel.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAG5D,MAAM,UAAU,cAAc,CAAC,OAAgB;IAC7C,OAAO;SACJ,OAAO,CAAC,iBAAiB,CAAC;SAC1B,WAAW,CAAC,wBAAwB,CAAC;SACrC,MAAM,CAAC,KAAK,EAAE,SAAiB,EAAE,EAAE;QAClC,IAAI,CAAC;YACH,MAAM,IAAI,GAAG,iBAAiB,CAAC,SAAS,CAAC,CAAC;YAE1C,MAAM,GAAG,GAAG,MAAM,UAAU,CAC1B,KAAK,EACL,0BAA0B,kBAAkB,CAAC,IAAI,CAAC,EAAE,CACrD,CAAC;YAEF,IAAI,GAAG,CAAC,MAAM,KAAK,SAAS,IAAI,GAAG,CAAC,MAAM,KAAK,QAAQ,EAAE,CAAC;gBACxD,OAAO,CAAC,GAAG,CACT,KAAK,CAAC,GAAG,CAAC,0BAA0B,IAAI,cAAc,GAAG,CAAC,MAAM,MAAM,CAAC,CACxE,CAAC;gBACF,OAAO;YACT,CAAC;YAED,MAAM,MAAM,GAAG,MAAM,UAAU,CAC7B,MAAM,EACN,gBAAgB,GAAG,CAAC,MAAM,SAAS,CACpC,CAAC;YAEF,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,qBAAqB,MAAM,CAAC,MAAM,SAAS,IAAI,MAAM,CAAC,CAAC,CAAC;QACnF,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,WAAW,CAAC,GAAG,CAAC,CAAC;QACnB,CAAC;IACH,CAAC,CAAC,CAAC;AACP,CAAC"}
|