File tree Expand file tree Collapse file tree 1 file changed +58
-1
lines changed
Expand file tree Collapse file tree 1 file changed +58
-1
lines changed Original file line number Diff line number Diff line change 1- # zeropath-cli
1+ # ZeroPath CLI
2+
3+ ZeroPath CLI provides command-line access to ZeroPath's AI-powered security scanning platform. Our scanning detects:
4+ - Authentication and authorization vulnerabilities
5+ - Application logic flaws
6+ - Dependency issues and outdated packages (with SCA reachability)
7+ - Security misconfigurations
8+ - Command injection vulnerabilities
9+ - File inclusion and path traversal attacks
10+ - Secrets / hardcoded credentials
11+ - And more
12+
13+ ## Installation
14+
15+ ``` bash
16+ # macOS Intel
17+ wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos -O zeropath
18+ chmod +x zeropath
19+ sudo mv zeropath /usr/local/bin/
20+
21+ # macOS ARM (Apple Silicon)
22+ wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-macos-arm64 -O zeropath
23+ chmod +x zeropath
24+ sudo mv zeropath /usr/local/bin/
25+
26+ # Linux x64
27+ wget https://github.com/ZeroPathAI/zeropath-cli/releases/latest/download/zeropath-linux -O zeropath
28+ chmod +x zeropath
29+ sudo mv zeropath /usr/local/bin/
30+
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/
35+ ```
36+
37+ ## Usage
38+
39+ ``` bash
40+ # Authenticate
41+ zeropath auth < clientId> < clientSecret>
42+
43+ # Scan a directory
44+ zeropath scan < directory> < outputFile>
45+
46+ # Show help
47+ zeropath --help
48+ ```
49+
50+ ## Support
51+
52+ 53+ - [ Discord Community] ( https://discord.gg/ZRqDvZ6qjJ )
54+ - [ Issue Tracker] ( https://github.com/ZeroPathAI/zeropath-cli/issues )
55+
56+ ## License
57+
58+ Copyright © 2024 ZeroPath Corp. All rights reserved.
You can’t perform that action at this time.
0 commit comments