File tree Expand file tree Collapse file tree 1 file changed +63
-0
lines changed
Expand file tree Collapse file tree 1 file changed +63
-0
lines changed Original file line number Diff line number Diff line change 1+ app :
2+ # Update your applicationId
3+ applicationId : ${APP_ID:8454c127-64aa-490e-a151-54ae287ee8f1}
4+ env : ${APP_ENV:GitHub Actions}
5+ host : ${APP_HOST:https://localhost:9000}
6+ excludePaths :
7+ - " /logout"
8+ # - "/login-form-multi"
9+ # - "/login-code"
10+ antiCsrfParam : " _csrf"
11+ # Configure Basic Authentication
12+ authentication :
13+ loggedInIndicator : " \\ QSign Out\\ E"
14+ loggedOutIndicator : " .*Location:.*/login.*"
15+ usernamePassword :
16+ type : FORM
17+ loginPath : /login
18+ loginPagePath : /login
19+ usernameField : username
20+ passwordField : password
21+ scanUsername : " user"
22+ scanPassword : " password"
23+ cookieAuthorization :
24+ cookieNames :
25+ - " JSESSIONID"
26+ testPath :
27+ path : /search
28+ success : " HTTP.*200.*"
29+ # Utilize OpenAPI Spec, Custom data & Faker
30+ openApiConf :
31+ # path: /openapi
32+ filePath : openapi.yaml
33+ fakerEnabled : true # default false
34+ # includeAllMethods: true
35+ includedMethods :
36+ - POST
37+ - PUT
38+ customVariables :
39+ - field : text
40+ values :
41+ - " $faker:uuid"
42+ - field : searchText
43+ values :
44+ - " $faker:Crypto.sha512"
45+ - " Donec ullamcorper nulla non metus auctor fringilla."
46+ - field : username
47+ values :
48+ - " Andy Dwyer"
49+ - field : password
50+ values :
51+ - " $faker:password"
52+ hawk :
53+ spider :
54+ maxDurationMinutes : 5
55+ # config:
56+ # - "scanner.analyser.redirectEqualsNotFound=false"
57+ # - "scanner.analyser.followRedirect=true"
58+ # Grab Commit SHA and Branch name
59+ tags :
60+ - name : _STACKHAWK_GIT_COMMIT_SHA
61+ value : ${COMMIT_SHA:}
62+ - name : _STACKHAWK_GIT_BRANCH
63+ value : ${BRANCH_NAME:}
You can’t perform that action at this time.
0 commit comments