-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-demo.ps1
More file actions
17 lines (12 loc) · 738 Bytes
/
Copy pathrun-demo.ps1
File metadata and controls
17 lines (12 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Write-Host "🎬 Starting CloudGuardStack Demo" -ForegroundColor Cyan
# Clear the terminal
Clear-Host
Write-Host "Step 1: Generating Demo Security Findings..." -ForegroundColor Yellow
Write-Host "Generating IAM security findings..." -ForegroundColor Green
python scanners/iam_entitlement/demo_generator.py
Write-Host "`nGenerating storage security findings..." -ForegroundColor Green
python scanners/storage_auditor/demo_generator.py --include-remediation-plan
Write-Host "`nStep 2: Opening Security Analysis Notebook..." -ForegroundColor Yellow
code notebooks/security_analysis.ipynb
Write-Host "`n✨ Demo environment is ready!" -ForegroundColor Cyan
Write-Host "You can now start your screen recording and follow the demo script."