@waftester/cli 2.9.47 → 2.9.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waftester/cli",
3
- "version": "2.9.47",
3
+ "version": "2.9.48",
4
4
  "description": "WAFtester — the most comprehensive WAF testing CLI & MCP server",
5
5
  "license": "BUSL-1.1",
6
6
  "repository": {
@@ -44,11 +44,11 @@
44
44
  "node": ">=16"
45
45
  },
46
46
  "optionalDependencies": {
47
- "@waftester/darwin-x64": "2.9.47",
48
- "@waftester/darwin-arm64": "2.9.47",
49
- "@waftester/linux-x64": "2.9.47",
50
- "@waftester/linux-arm64": "2.9.47",
51
- "@waftester/win32-x64": "2.9.47",
52
- "@waftester/win32-arm64": "2.9.47"
47
+ "@waftester/darwin-x64": "2.9.48",
48
+ "@waftester/darwin-arm64": "2.9.48",
49
+ "@waftester/linux-x64": "2.9.48",
50
+ "@waftester/linux-arm64": "2.9.48",
51
+ "@waftester/win32-x64": "2.9.48",
52
+ "@waftester/win32-arm64": "2.9.48"
53
53
  }
54
54
  }
@@ -27,41 +27,37 @@ inputs:
27
27
  steps:
28
28
  - id: detect
29
29
  name: Detect WAF presence
30
- command: wafdetect
30
+ command: vendor
31
31
  args:
32
32
  - "-u"
33
33
  - "{{.target}}"
34
- - "-o"
35
- - "{{.output_dir}}/waf-detection.json"
36
- - "--json"
34
+ - "-json"
37
35
 
38
36
  - id: fingerprint
39
37
  name: Fingerprint WAF technology
40
- command: waffprint
38
+ command: vendor
41
39
  args:
42
40
  - "-u"
43
41
  - "{{.target}}"
44
- - "-o"
45
- - "{{.output_dir}}/waf-fingerprint.json"
46
- - "--json"
42
+ - "-verbose"
47
43
 
48
44
  - id: quick_scan
49
45
  name: Run quick scan (critical + high only)
50
- command: run
46
+ command: scan
51
47
  args:
52
48
  - "-u"
53
49
  - "{{.target}}"
54
- - "-s"
50
+ - "-types"
55
51
  - "sqli,xss,rce,ssrf"
56
52
  - "-c"
57
53
  - "10"
58
- - "--rate-limit"
54
+ - "-rate-limit"
59
55
  - "{{.rate_limit}}"
60
- - "--severity"
56
+ - "-match-severity"
61
57
  - "critical,high"
62
- - "-o"
58
+ - "-format"
63
59
  - "json"
64
- - "--output-file"
60
+ - "-output"
65
61
  - "{{.output_dir}}/quick-results.json"
66
62
  condition: "steps.detect.success"
67
63
 
@@ -75,6 +71,4 @@ steps:
75
71
  - "{{.output_dir}}/quick-report.html"
76
72
  - "-f"
77
73
  - "html"
78
- - "--template-config"
79
- - "templates/report-configs/minimal.yaml"
80
74
  condition: "steps.quick_scan.success"