Initial commit - 611 cybersecurity skills across all subdomains

This commit is contained in:
mukul975
2026-02-25 10:47:44 +01:00
commit 22a7ab1462
1765 changed files with 280648 additions and 0 deletions
@@ -0,0 +1,32 @@
# Standards and References - EvilGinx3 Initial Access
## MITRE ATT&CK References
| Technique ID | Name | Tactic |
|-------------|------|--------|
| T1566.002 | Phishing: Spearphishing Link | Initial Access |
| T1557 | Adversary-in-the-Middle | Credential Access |
| T1539 | Steal Web Session Cookie | Credential Access |
| T1078 | Valid Accounts | Initial Access, Persistence |
| T1556 | Modify Authentication Process | Credential Access |
| T1550.004 | Use Alternate Authentication Material: Web Session Cookie | Lateral Movement |
## Industry Standards
- **PTES** - Pre-Engagement and Intelligence Gathering phases
- **OWASP Testing Guide** - Authentication Testing
- **NIST SP 800-63B** - Digital Identity Guidelines: Authentication
- **CISA Advisory AA22-277A** - Threat Actors Exploiting MFA Bypass Techniques
## Official Resources
- EvilGinx Project: https://github.com/kgretzky/evilginx2
- GoPhish: https://getgophish.com/
- EvilGoPhish: https://github.com/fin3ss3g0d/evilgophish
- Certificate Transparency Logs: https://crt.sh
## Research Papers
- Microsoft Storm-1167 AiTM Phishing Campaign Analysis (2023)
- Deepwatch: Catching the Phish - Detecting Evilginx & AiTM
- BDO Security: MFA-Phishing as Initial Access in Red Teaming
@@ -0,0 +1,60 @@
# Workflows - EvilGinx3 Initial Access
## End-to-End AiTM Phishing Workflow
```
1. Reconnaissance
├── Identify target authentication service (M365, Google, Okta)
├── Analyze target MFA implementation (SMS, Authenticator, FIDO2)
├── Register lookalike domain with appropriate TLD
└── Categorize domain to avoid URL filtering
2. Infrastructure Setup
├── Deploy VPS and configure DNS records
├── Install and configure EvilGinx3
├── Enable phishlet for target service
├── Verify SSL certificate provisioning
└── Create and test lure URLs
3. Phishing Delivery
├── Craft pretext email with social engineering
├── Configure GoPhish or SMTP relay for delivery
├── Send phishing emails to authorized targets
└── Monitor delivery and open rates
4. Credential and Session Capture
├── Monitor EvilGinx3 session dashboard
├── Capture credentials as victims authenticate
├── Capture session cookies (MFA bypass tokens)
└── Export session data for exploitation
5. Session Hijacking
├── Import session cookies into attacker browser
├── Navigate to target service with hijacked session
├── Validate access to victim's account
└── Enumerate accessible resources
6. Persistence and Escalation
├── Create application-specific passwords
├── Register attacker device in Azure AD / Entra ID
├── Add OAuth application consents
└── Establish email forwarding rules for persistence
7. Reporting
├── Document attack chain with evidence
├── Record number of successful captures
├── Identify defensive gaps exploited
└── Provide remediation recommendations
```
## Cookie Import Workflow
```
1. From EvilGinx3 session output, copy cookie data
2. Open browser with Cookie-Editor extension
3. Navigate to target service login page
4. Clear existing cookies for the domain
5. Import captured cookies via Cookie-Editor
6. Refresh the page to obtain authenticated session
7. Verify access to victim's account
```