-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
377 lines (319 loc) · 7.98 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# This file was generated. Do not edit manually.
schema {
query: Query
mutation: Mutations
}
union OxoAssetType = OxoAndroidFileAssetType | OxoAndroidStoreAssetType | OxoDomainNameAssetsType | OxoIOSFileAssetType | OxoIOSStoreAssetType | OxoNetworkAssetType | OxoUrlsAssetType
"Create asset mutation."
type CreateAssetsMutation {
assets: [OxoAssetType]
}
"Delete agent group mutation."
type DeleteAgentGroupMutation {
result: Boolean
}
"Delete Scan & its information mutation."
type DeleteScansMutation {
result: Boolean
}
"Export scan mutation."
type ExportScanMutation {
content: Bytes
}
"Import scan mutation."
type ImportScanMutation {
message: String
}
type Mutations {
"Create an asset."
createAssets(assets: [OxoAssetInputType]!): CreateAssetsMutation
"Delete agent group."
deleteAgentGroup(agentGroupId: Int!): DeleteAgentGroupMutation
"Delete a scan & all its information."
deleteScans(scanIds: [Int]!): DeleteScansMutation
"Export scan to file."
exportScan(exportIde: Boolean, scanId: Int!): ExportScanMutation
"Import scan from file."
importScan(file: Upload!, scanId: Int): ImportScanMutation
"Create agent group"
publishAgentGroup(agentGroup: OxoAgentGroupCreateInputType!): PublishAgentGroupMutation
"Run scan"
runScan(scan: OxoAgentScanInputType!): RunScanMutation
"Stops running scan, scan is marked as stopped once the engine has completed cancellation."
stopScans(scanIds: [Int]!): StopScansMutation
}
"Graphene object type for a list of agent arguments."
type OxoAgentArgumentType {
description: String
name: String
type: String
value: Bytes
}
"Graphene object type for a list of agent arguments."
type OxoAgentArgumentsType {
args: [OxoAgentArgumentType]!
}
"SQLAlchemy object type for an agent group."
type OxoAgentGroupType {
agents(numberElements: Int, page: Int): OxoAgentsType!
assetTypes: [String]
createdTime: DateTime
description: String
id: ID!
key: String
name: String
yamlSource: String
}
type OxoAgentGroupsType {
agentGroups: [OxoAgentGroupType]!
pageInfo: PageInfo
}
"SQLAlchemy object type for an agent."
type OxoAgentType {
args: OxoAgentArgumentsType!
key: String
}
"Graphene object type for a list of agents."
type OxoAgentsType {
agents: [OxoAgentType]!
pageInfo: PageInfo
}
"Graphene object type for an aggregated knowledge base vulnerability."
type OxoAggregatedKnowledgeBaseVulnerabilityType {
highestCvssV3BaseScore: Float
highestCvssV3Vector: String
highestRiskRating: OxoRiskRating
kb: OxoKnowledgeBaseVulnerabilityType
"List of vulnerabilities."
vulnerabilities(detailTitles: [String], numberElements: Int, page: Int): OxoVulnerabilitiesType
}
type OxoAndroidFileAssetType {
id: ID!
packageName: String
path: String
}
type OxoAndroidStoreAssetType {
applicationName: String
id: ID!
packageName: String
}
type OxoDomainNameAssetType {
name: String
}
type OxoDomainNameAssetsType {
domainNames: [OxoDomainNameAssetType]
id: ID!
}
type OxoIOSFileAssetType {
bundleId: String
id: ID!
path: String
}
type OxoIOSStoreAssetType {
applicationName: String
bundleId: String
id: ID!
}
type OxoIPRangeAssetType {
host: String
mask: String
}
"SQLAlchemy object type for a knowledge base vulnerability."
type OxoKnowledgeBaseVulnerabilityType {
description: String
recommendation: String
references: [OxoReferenceType]
shortDescription: String
title: String
}
type OxoLinkAssetType {
method: String
url: String
}
type OxoNetworkAssetType {
id: ID!
networks: [OxoIPRangeAssetType]
}
"Graphene object type for a reference."
type OxoReferenceType {
title: String
url: String
}
"Scan object."
type OxoScanType {
agentGroup: OxoAgentGroupType
assets: [OxoAssetType]
createdTime: DateTime
id: ID!
"List of aggregated knowledge base vulnerabilities."
kbVulnerabilities(detailTitle: String): [OxoAggregatedKnowledgeBaseVulnerabilityType]
messageStatus: String
progress: String
riskRating: String
title: String
"List of vulnerabilities."
vulnerabilities(detailTitles: [String], numberElements: Int, page: Int, vulnIds: [Int]): OxoVulnerabilitiesType
}
"Graphene object type for a list of scans."
type OxoScansType {
pageInfo: PageInfo
scans: [OxoScanType]!
}
type OxoUrlsAssetType {
id: ID!
links: [OxoLinkAssetType]
}
"Graphene object type for a list of vulnerabilities."
type OxoVulnerabilitiesType {
pageInfo: PageInfo
vulnerabilities: [OxoVulnerabilityType]!
}
"SQLAlchemy object type for a vulnerability."
type OxoVulnerabilityType {
cvssV3BaseScore: Float
cvssV3Vector: String
detail: OxoKnowledgeBaseVulnerabilityType
dna: String
id: ID!
riskRating: OxoRiskRating
technicalDetail: String
}
"Page info object type."
type PageInfo {
count: Int
hasNext: Boolean
hasPrevious: Boolean
numPages: Int
}
"Create agent group."
type PublishAgentGroupMutation {
agentGroup: OxoAgentGroupType
}
type Query {
agentGroups(agentGroupIds: [Int], assetType: AssetTypeEnum, numberElements: Int, orderBy: AgentGroupOrderByEnum, page: Int, search: String, sort: SortEnum): OxoAgentGroupsType
"Retrieve scan by id."
scan(scanId: Int): OxoScanType
"List of scans."
scans(numberElements: Int, orderBy: OxoScanOrderByEnum, page: Int, scanIds: [Int], sort: SortEnum): OxoScansType
}
type RunScanMutation {
scan: OxoScanType
}
"Stop scan mutation."
type StopScansMutation {
scans: [OxoScanType]
}
enum AgentGroupOrderByEnum {
AgentGroupId
CreatedTime
Name
}
"Enum for the asset types."
enum AssetTypeEnum {
ANDROID_FILE
ANDROID_STORE
DOMAIN
FILE
IOS_FILE
IOS_STORE
IP
LINK
}
enum OxoRiskRating {
CRITICAL
HARDENING
HIGH
IMPORTANT
INFO
LOW
MEDIUM
POTENTIALLY
SECURE
}
"Enum for the elements to order a scan by."
enum OxoScanOrderByEnum {
CreatedTime
Progress
ScanId
Title
}
"Sort enum, for the sorting order of the results."
enum SortEnum {
Asc
Desc
}
"The `Bytes` scalar type represents binary data in a bytes format."
scalar Bytes
"""
The `DateTime` scalar type represents a DateTime
value as specified by
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
"""
scalar DateTime
"""
Create scalar that ignores normal serialization/deserialization, since
that will be handled by the multipart request spec
"""
scalar Upload
"Input object type for an agent argument."
input OxoAgentArgumentInputType {
description: String
name: String!
type: String!
value: Bytes
}
"Input object type for creating an agent group agent."
input OxoAgentGroupAgentCreateInputType {
args: [OxoAgentArgumentInputType] = []
key: String!
}
"Input object type for creating an agent group."
input OxoAgentGroupCreateInputType {
agents: [OxoAgentGroupAgentCreateInputType]!
assetTypes: [AssetTypeEnum] = []
description: String!
name: String
}
"Input object type for scan"
input OxoAgentScanInputType {
agentGroupId: Int!
assetIds: [Int]!
title: String
}
input OxoAndroidFileAssetInputType {
file: Upload
packageName: String
}
input OxoAndroidStoreAssetInputType {
applicationName: String
packageName: String
}
input OxoAssetInputType {
androidAabFile: [OxoAndroidFileAssetInputType]
androidApkFile: [OxoAndroidFileAssetInputType]
androidStore: [OxoAndroidStoreAssetInputType]
domain: [OxoDomainNameInputType]
iosFile: [OxoIOSFileAssetInputType]
iosStore: [OxoIOSStoreAssetInputType]
ip: [OxoIPRangeInputType]
link: [OxoLinkInputType]
}
input OxoDomainNameInputType {
name: String!
}
input OxoIOSFileAssetInputType {
bundleId: String
file: Upload
}
input OxoIOSStoreAssetInputType {
applicationName: String
bundleId: String
}
input OxoIPRangeInputType {
host: String!
mask: String
}
input OxoLinkInputType {
method: String = "GET"
url: String!
}