@waftester/linux-x64 2.8.0 → 2.8.2
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/README.md +31 -4
- package/bin/waf-tester +0 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,11 +1,38 @@
|
|
|
1
|
-
# Platform Binary
|
|
1
|
+
# WAFtester Platform Binary
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://npmjs.com/package/@waftester/cli)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package contains the pre-built WAFtester binary for a specific OS/architecture combination. It is automatically installed as part of [`@waftester/cli`](https://npmjs.com/package/@waftester/cli) via `optionalDependencies`.
|
|
6
|
+
|
|
7
|
+
## Do Not Install Directly
|
|
8
|
+
|
|
9
|
+
Install the main package instead — it selects the correct binary for your platform automatically:
|
|
6
10
|
|
|
7
11
|
```bash
|
|
12
|
+
# Run without installing
|
|
13
|
+
npx -y @waftester/cli scan --target https://example.com
|
|
14
|
+
|
|
15
|
+
# Or install globally
|
|
8
16
|
npm install -g @waftester/cli
|
|
9
17
|
```
|
|
10
18
|
|
|
11
|
-
|
|
19
|
+
## How It Works
|
|
20
|
+
|
|
21
|
+
`@waftester/cli` declares all 6 platform packages as `optionalDependencies` with `os` and `cpu` constraints. npm installs only the package matching your system:
|
|
22
|
+
|
|
23
|
+
| Package | Platform |
|
|
24
|
+
|---|---|
|
|
25
|
+
| `@waftester/darwin-x64` | macOS Intel |
|
|
26
|
+
| `@waftester/darwin-arm64` | macOS Apple Silicon |
|
|
27
|
+
| `@waftester/linux-x64` | Linux x64 |
|
|
28
|
+
| `@waftester/linux-arm64` | Linux arm64 |
|
|
29
|
+
| `@waftester/win32-x64` | Windows x64 |
|
|
30
|
+
| `@waftester/win32-arm64` | Windows arm64 |
|
|
31
|
+
|
|
32
|
+
## What Is WAFtester?
|
|
33
|
+
|
|
34
|
+
The most comprehensive WAF testing CLI — detect, fingerprint, and bypass Web Application Firewalls with 2,800+ payloads, 70+ tamper scripts, and quantitative security metrics.
|
|
35
|
+
|
|
36
|
+
- [GitHub](https://github.com/waftester/waftester)
|
|
37
|
+
- [Main npm package](https://npmjs.com/package/@waftester/cli)
|
|
38
|
+
- [Documentation](https://github.com/waftester/waftester/blob/main/docs/EXAMPLES.md)
|
package/bin/waf-tester
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@waftester/linux-x64",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.2",
|
|
4
4
|
"description": "WAFtester binary for Linux x64",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
|
+
"author": "WAFtester <hello@waftester.com> (https://github.com/waftester)",
|
|
6
7
|
"repository": {
|
|
7
8
|
"type": "git",
|
|
8
9
|
"url": "git+https://github.com/waftester/waftester.git"
|