Skip to content

Commit 429893f

Browse files
committed
Merge branch 'master' of github.com:Hackmanit/Web-Cache-Vulnerability-Scanner
2 parents 538043a + 4c1b46b commit 429893f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ and can adapt to a specific web cache for more efficient testing. It is highly c
5252

5353
# Installation
5454
## Option 1: Pre-built Binary
55-
Prebuilt binaries of WCVS are provided on the [releases page](https://github.com/Hackmanit/Web-Cache-Vulnerability-Scanner/releases). These releases include 2 default wordlists, as well.
55+
Prebuilt binaries of WCVS are provided on the [releases page](https://github.com/Hackmanit/Web-Cache-Vulnerability-Scanner/releases).
5656
## Option 2: Kali Linux / BlackArch Repository
5757
- Kali Linux: `apt install web-cache-vulnerability-scanner`
5858
- BlackArch: `pacman -S wcvs`

buildBinariesLinux.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,43 @@ version=1.4.2
55
goos=windows
66
goarch=amd64
77
GOOS=$goos GOARCH=$goarch go build -o wcvs.exe
8-
zip build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".zip wcvs.exe wordlists/headers wordlists/parameters
8+
zip build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".zip wcvs.exe
99

1010
# Linux amd64
1111
goos=linux
1212
goarch=amd64
1313
GOOS=$goos GOARCH=$goarch go build -o wcvs
14-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
14+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
1515

1616
# Linux arm64
1717
goos=linux
1818
goarch=arm64
1919
GOOS=$goos GOARCH=$goarch go build -o wcvs
20-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
20+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
2121

2222
# Darwin/MacOS amd64
2323
goos=darwin
2424
goarch=amd64
2525
GOOS=$goos GOARCH=$goarch go build -o wcvs
26-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
26+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
2727

2828
# Darwin/MacOS arm64
2929
goos=darwin
3030
goarch=arm64
3131
GOOS=$goos GOARCH=$goarch go build -o wcvs
32-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
32+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
3333

3434
# FreeBSD amd64
3535
goos=freebsd
3636
goarch=amd64
3737
GOOS=$goos GOARCH=$goarch go build -o wcvs
38-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
38+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
3939

4040
# OpenBSD amd64
4141
goos=openbsd
4242
goarch=amd64
4343
GOOS=$goos GOARCH=$goarch go build -o wcvs
44-
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs wordlists/headers wordlists/parameters
44+
tar cfvz build/web-cache-vulnerability-scanner_"$version"_"$goos"_"$goarch".tar.gz wcvs
4545

4646
# reset GOOS and GOARCH
4747
set GOOS=

0 commit comments

Comments
 (0)