| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A collection of PowerShell scripts for Windows security analysis, incident response, and supply-chain threat detection.
Comprehensive npm supply chain security audit. Detects malicious package behavior, obfuscated payloads, credential theft indicators, and suspicious network activity. Originally developed to investigate the AICryptoTracker stealer supply-chain attack, now generalized for detecting similar threats.
What it checks:
.\npm-security-audit.ps1Pre-clone / pre-install repository security scanner. Run this before npm install, pip install, or any build commands to detect supply-chain threats embedded in a repository.
What it checks:
Returns exit code 1 if any CRITICAL findings are detected (suitable for CI gates).
# Scan current directory
.\pre-repo-scan.ps1
# Scan a specific repo
.\pre-repo-scan.ps1 -RepoDir C:\repos\suspicious-project
# Add custom known-bad packages
.\pre-repo-scan.ps1 -KnownBadPackages @('evil-pkg','malware-lib')General-purpose Windows forensic triage and incident response script. Performs an in-depth investigation across multiple evidence categories and exports structured JSON reports with SHA-256 hashes for chain-of-custody integrity.
Evidence categories:
# Basic triage (last 7 days)
.\forensic-triage.ps1
# Custom IOC patterns and extended lookback
.\forensic-triage.ps1 -IOCPatterns @('malware\.exe','evil\.dll','c2server\.com') -DaysBack 14
# Full investigation with hashing and extended event logs
.\forensic-triage.ps1 -OutputDir C:\Evidence\Case001 -CollectHashes -IncludeFullEventLogsThese scripts are provided for defensive security and incident response purposes only. Use responsibly and in accordance with applicable laws and organizational policies.
| Back | FazBrowse Home | New Git URL |