Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.46 KB

File metadata and controls

41 lines (27 loc) · 1.46 KB

🔍 Daily Malicious Code Scan

For an overview of all available workflows, see the main README.

The Daily Malicious Code Scan workflow examines files changed in the past 72 hours, searching for secret exfiltration, out-of-context code, suspicious network activity, system access patterns, obfuscation, and supply chain indicators. Findings appear as GitHub code-scanning alerts with threat scores and remediation recommendations.

Installation

# Install the 'gh aw' extension
gh extension install github/gh-aw

# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/daily-malicious-code-scan

This walks you through adding the workflow to your repository.

How It Works

graph LR
    A[Daily Schedule] --> B[Fetch Recent Changes]
    B --> C[Scan for Patterns]
    C --> D{Threats Found?}
    D -->|Yes| E[Create Code Scanning Alert]
    D -->|No| F[Report: All Clear]
Loading

Usage

Configuration

This workflow works out of the box with any repository and programming language. No additional configuration is required.

After editing run gh aw compile to update the workflow and commit all changes to the default branch.

Learn More