Skip to content

Commit 9d88408

Browse files
authored
Update README.md
1 parent 50bb423 commit 9d88408

File tree

1 file changed

+27
-14
lines changed

1 file changed

+27
-14
lines changed

README.md

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
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>
26

37
ZeroPath CLI provides command-line access to ZeroPath's AI-powered security scanning platform. Our scanning detects:
48
- Authentication and authorization vulnerabilities
@@ -8,51 +12,60 @@ ZeroPath CLI provides command-line access to ZeroPath's AI-powered security scan
812
- Command injection vulnerabilities
913
- File inclusion and path traversal attacks
1014
- Secrets / hardcoded credentials
11-
- And more
15+
- **And more**
1216

1317
## Installation
1418

19+
### macOS Intel
1520
```bash
16-
# macOS Intel
1721
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos -O zeropath
1822
chmod +x zeropath
1923
sudo mv zeropath /usr/local/bin/
24+
```
2025

21-
# macOS ARM (Apple Silicon)
26+
### macOS ARM (Apple Silicon)
27+
```bash
2228
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos-arm64 -O zeropath
2329
chmod +x zeropath
2430
sudo mv zeropath /usr/local/bin/
31+
```
2532

26-
# Linux x64
33+
### Linux x64
34+
```bash
2735
wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-linux -O zeropath
2836
chmod +x zeropath
2937
sudo mv zeropath /usr/local/bin/
38+
```
3039

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\"
3546
```
3647

3748
## Usage
3849

50+
### Authentication
3951
```bash
40-
# Authenticate
4152
zeropath auth <clientId> <clientSecret>
53+
```
4254

43-
# Scan a directory
55+
### Scanning
56+
```bash
4457
zeropath scan <directory> <outputFile>
58+
```
4559

46-
# Show help
60+
### Help
61+
```bash
4762
zeropath --help
4863
```
4964

5065
## Support
51-
5266
5367
- [Discord Community](https://discord.gg/ZRqDvZ6qjJ)
5468
- [Issue Tracker](https://github.com/ZeroPathAI/zeropath-cli/issues)
5569

5670
## License
57-
5871
Copyright © 2024 ZeroPath Corp. All rights reserved.

0 commit comments

Comments
 (0)