1
- # ZeroPath CLI
1
+ <p align =" center " >
2
+ <a href =" https://zeropath.com " >
3
+ <img src="https://sfo-zp-fe-assets.sfo3.cdn.digitaloceanspaces.com/ZeroPathPatch.svg" />
4
+ </a >
5
+ </p >
2
6
3
7
ZeroPath CLI provides command-line access to ZeroPath's AI-powered security scanning platform. Our scanning detects:
4
8
- Authentication and authorization vulnerabilities
@@ -8,51 +12,60 @@ ZeroPath CLI provides command-line access to ZeroPath's AI-powered security scan
8
12
- Command injection vulnerabilities
9
13
- File inclusion and path traversal attacks
10
14
- Secrets / hardcoded credentials
11
- - And more
15
+ - ** And more**
12
16
13
17
## Installation
14
18
19
+ ### macOS Intel
15
20
``` bash
16
- # macOS Intel
17
21
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos -O zeropath
18
22
chmod +x zeropath
19
23
sudo mv zeropath /usr/local/bin/
24
+ ```
20
25
21
- # macOS ARM (Apple Silicon)
26
+ ### macOS ARM (Apple Silicon)
27
+ ``` bash
22
28
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos-arm64 -O zeropath
23
29
chmod +x zeropath
24
30
sudo mv zeropath /usr/local/bin/
31
+ ```
25
32
26
- # Linux x64
33
+ ### Linux x64
34
+ ``` bash
27
35
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-linux -O zeropath
28
36
chmod +x zeropath
29
37
sudo mv zeropath /usr/local/bin/
38
+ ```
30
39
31
- # Linux ARM64
32
- wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-linux-arm64 -O zeropath
33
- chmod +x zeropath
34
- sudo mv zeropath /usr/local/bin/
40
+ ### Windows x64
41
+ ``` powershell
42
+ # Download using PowerShell
43
+ Invoke-WebRequest -Uri https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-windows.exe -OutFile zeropath.exe
44
+ # Add to PATH - run in Command Prompt as Administrator
45
+ move zeropath.exe "C:\Windows\System32\"
35
46
```
36
47
37
48
## Usage
38
49
50
+ ### Authentication
39
51
``` bash
40
- # Authenticate
41
52
zeropath auth < clientId> < clientSecret>
53
+ ```
42
54
43
- # Scan a directory
55
+ ### Scanning
56
+ ``` bash
44
57
zeropath scan < directory> < outputFile>
58
+ ```
45
59
46
- # Show help
60
+ ### Help
61
+ ``` bash
47
62
zeropath --help
48
63
```
49
64
50
65
## Support
51
-
52
66
53
67
- [ Discord Community] ( https://discord.gg/ZRqDvZ6qjJ )
54
68
- [ Issue Tracker] ( https://github.com/ZeroPathAI/zeropath-cli/issues )
55
69
56
70
## License
57
-
58
71
Copyright © 2024 ZeroPath Corp. All rights reserved.
0 commit comments