Quick Reference

Reference Cards

Essential tables from the study guide — bookmark this page for fast review.

📡 Ports & Protocols

Know these cold for the CompCert assessment. Focus on encrypted vs. unencrypted alternatives.

PortProtocolEncrypted?Secure Alternative
20/21FTP❌ NoSFTP (22), FTPS (990)
22SSH / SFTP / SCP✅ Yes
23Telnet❌ NoSSH (22)
25SMTP❌ NoSMTPS (587/465)
53DNS❌ NoDoH (443), DoT (853)
67/68DHCP❌ NoDHCP snooping
80HTTP❌ NoHTTPS (443)
110POP3❌ NoPOP3S (995)
143IMAP❌ NoIMAPS (993)
161/162SNMP❌ No (v1/v2)SNMPv3
389LDAP❌ NoLDAPS (636)
443HTTPS✅ Yes
3389RDP⚠️ OptionalRDP over VPN

🪟 Windows Event IDs

Critical Security and System log events for investigation and auditing.

Event IDLogDescription
1102SecurityAudit log was cleared
4624SecuritySuccessful account logon
4625SecurityFailed account logon
4648SecurityLogon using explicit credentials
4672SecuritySpecial privileges assigned to new logon
4720SecurityA user account was created
4722SecurityA user account was enabled
4725SecurityA user account was disabled
4732SecurityMember added to security-enabled local group
4738SecurityA user account was changed
7045SystemA new service was installed in the system

🐧 Linux Commands

Essential commands organized by category — know the syntax and purpose.

CategoryCommandPurpose
NavigationpwdPrint working directory
ls -laList all files with details
cd /pathChange directory
find / -name "file"Search for files by name
grep "pattern" fileSearch text in files
cat / less / head / tailView file contents
Permissionschmod 750 fileChange file permissions
chown user:group fileChange file ownership
find / -perm -4000Find SUID files
ls -laView permissions
Usersuseradd -m userCreate user
passwd userSet password
usermod -aG group userAdd user to group
id userShow user info
Networkingip addr showShow IP configuration
ss -tulnpShow listening ports
ping hostTest connectivity
nmap targetScan ports
Monitoringps auxList processes
top / htopReal-time process monitor
tail -f /var/log/auth.logWatch auth log live

⚡ PowerShell Commands

Windows security investigation and system administration commands.

TaskCommand
View security eventsGet-EventLog -LogName Security -Newest 50
Find failed loginsGet-EventLog -LogName Security -InstanceId 4625
List local usersGet-LocalUser
List admin group membersGet-LocalGroupMember -Group "Administrators"
Check running servicesGet-Service | Where-Object {$_.Status -eq "Running"}
View network connectionsGet-NetTCPConnection -State Established
Check firewall statusGet-NetFirewallProfile
View scheduled tasksGet-ScheduledTask | Where-Object {$_.State -ne "Ready"}

📊 Risk Formulas

Memorize these three formulas — they appear in scenario questions.

SLE = AV × EF

Single Loss Expectancy = Asset Value × Exposure Factor
How much you lose from a single incident.

ALE = SLE × ARO

Annualized Loss Expectancy = SLE × Annualized Rate of Occurrence
Expected yearly cost of a specific risk.

Risk = Threat × Vulnerability × Impact

Qualitative Risk Assessment
A conceptual model for evaluating overall risk.

🎯 CVSS Score Ranges

Common Vulnerability Scoring System severity levels (0.0–10.0).

Score RangeSeverityAction
0.0NoneInformational
0.1 – 3.9LowScheduled patch
4.0 – 6.9MediumPrioritized patch
7.0 – 8.9HighExpedited remediation
9.0 – 10.0CriticalImmediate action

🔄 NIST IR Phases

The four-phase NIST incident response lifecycle.

#Phase
1Preparation
2Detection & Analysis
3Containment, Eradication & Recovery
4Post-Incident Activity

📁 Linux File Permissions

Numeric (octal) permission values.

ValuePermission
0No permissions (---)
1Execute (--x)
2Write (-w-)
4Read (r--)
5Read + Execute (r-x)
6Read + Write (rw-)
7Full (rwx)

⏱️ Order of Volatility

Collect evidence in this order — most volatile first.

#SourceVolatility
1CPU registers & cacheMost volatile
2RAM / running processesVery high
3Network state / connectionsHigh
4Temporary file systemsModerate
5Hard drive / diskModerate
6Remote logging dataLow
7Physical configurationLow
8Archival media (backups)Least volatile

📜 Key Regulatory Frameworks

Know the scope and requirements of each framework.

FrameworkScope
HIPAAProtected Health Information (PHI)
PCI DSSPayment card data
GDPREU personal data protection
SOXPublic company financial reporting
FERPAStudent education records
GLBAFinancial institution customer data