forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aiproj.json
83 lines (83 loc) · 2.3 KB
/
aiproj.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Settings for project analysis by the application inspector",
"properties": {
"ProgrammingLanguage": {
"description": "Active scanning language",
"type": "string",
"enum": ["None", "Php"]
},
"ScanAppType": {
"description": "Enabled modules",
"type": "array",
"items": {
"type": "string",
"enum": ["None", "Configuration", "PHP", "DependencyCheck"]
}
},
"Site": {
"description": "The address of the site for which the exploits are generated",
"type": "string"
},
"JavaParameters": {
"description": "JDK launch parameters",
"type": ["string", "null"]
},
"IsUnpackUserPackages": {
"description": "Unpack user's packages",
"type": "boolean"
},
"IsDownloadDependencies": {
"description": "Download dependencies",
"type": "boolean"
},
"IsUsePublicAnalysisMethod": {
"description": "Search from available public and protected methods",
"type": "boolean"
},
"IsUseEntryAnalysisPoint": {
"description": "Search from entry points",
"type": "boolean"
},
"CustomParameters": {
"description": "Custom kernel startup parameters",
"type": ["string", "null"]
},
"HideSuspectedVulnerabilities": {
"description": "Hide suspicions of vulnerability",
"type": "boolean"
},
"ProjectType": {
"description": "Type of application",
"type": "string",
"enum": ["None", "Solution", "WebSite"]
},
"SolutionFile": {
"description": "Path to sln or proj file",
"type": ["string", "null"]
},
"WebSiteFolder": {
"description": "Site directory",
"type": ["string", "null"]
},
"PreprocessingTimeout": {
"description": "Preprocessing timeout in seconds",
"type": "number"
},
"UseTaintAnalysis": {
"description": "Whether to use the AI.Taint engine for analysis",
"type": "boolean"
},
"UsePmAnalysis": {
"description": "Whether to use the PT.PM engine for analysis",
"type": "boolean"
},
"JavaVersion": {
"description": "JDK Version",
"type": "string",
"enum": ["v1_8", "v1_11"]
}
},
"title": "aiproj",
"type": "object"
}