Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ jobs:
command: release-pr
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}cl
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@

```bash
# Install
# Install
cargo install syncable-cli

# Analyze any project

# Analyze any project
sync-ctl analyze /path/to/your/project

Expand Down Expand Up @@ -213,8 +210,6 @@ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
# Run tests
cargo test

# Check code quality
cargo clippy
# Check code quality
cargo clippy

Expand Down
4 changes: 4 additions & 0 deletions src/analyzer/security/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ pub enum SecurityCategory {
NetworkSecurity,
/// Compliance and regulatory requirements
Compliance,
/// Code injection vulnerabilities (eval, exec, etc.)
CodeInjection,
/// Command injection vulnerabilities (subprocess, os.system, etc.)
CommandInjection,
}

/// A security finding with details and remediation
Expand Down
2 changes: 2 additions & 0 deletions src/analyzer/security/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ use thiserror::Error;

pub mod core;
pub mod javascript;
pub mod python;
pub mod patterns;
pub mod config;
pub mod gitignore;

pub use core::{SecurityAnalyzer, SecurityReport, SecurityFinding, SecuritySeverity, SecurityCategory};
pub use javascript::JavaScriptSecurityAnalyzer;
pub use python::PythonSecurityAnalyzer;
pub use patterns::SecretPatternManager;
pub use config::SecurityAnalysisConfig;
pub use gitignore::{GitIgnoreAnalyzer, GitIgnoreStatus, GitIgnoreRisk};
Expand Down
Loading