My scripting proficiency lies mostly within Windows PowerShell, but I've recently built automation on macOS and Linux distros. These scripts apply knowledge from CompTIA A+, Network+, and Security+ in practical ways. I will soon sit exams for PenTest+ and CEH, with aspirations rooted in cybersecurity.
# Cached thumbnail reset & DISM/SFC checks
Get-ChildItem "$env:userprofile\AppData\Local\Microsoft\Windows\Explorer" -Filter "thumbcache_*" | Remove-Item -Force
sfc /scannow
dism /online /cleanup-image /restorehealth
chkdsk C: /f /r
Stop-Process -Name explorer -Force; Start-Process explorer.exe
A step-by-step walkthrough of reconnaissance, exploitation, and remediation phases against a fictional web app.
View on GitHub