Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 03c2f93

Browse files
committed
Fix bug preventing arachnid form from getting submitted
Submit method was trying to call methods on non initialised object
1 parent 36e87df commit 03c2f93

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scb-scanprocesses/arachni-process/src/main/resources/forms/arachni/configure-target.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ <h2>Please configure the Vulnerability Scan</h2>
3232
$scope.target = {
3333
location: '',
3434
name: '',
35-
attributes: {}
35+
attributes: {
36+
ARACHNI_EXTEND_PATH: '',
37+
ARACHNI_INCLUDE_PATTERNS: '',
38+
ARACHNI_EXCLUDE_PATTERNS: ''
39+
}
3640
};
3741
$scope.context = '';
3842
$scope.acceptLicense = false;

0 commit comments

Comments
 (0)