Best Cybersecurity Projects to Boost Your Resume

Listen to this Post

If you’re looking to break into cybersecurity or enhance your skills, these six beginner-friendly projects will help you gain hands-on experience and make your resume stand out:

Project 1: Secure Access with Azure Active Directory (AD)
Project Guide: https://lnkd.in/eX__TrFn
Learn how to configure secure identity and access management using Azure AD.

You Should Know:

  • Azure AD Commands:
    Connect-AzureAD 
    New-AzureADUser -DisplayName "Test User" -PasswordProfile $PasswordProfile -UserPrincipalName "[email protected]" -AccountEnabled $true 
    
  • Enable MFA:
    Set-MsolUser -UserPrincipalName "[email protected]" -StrongAuthenticationRequirements @{} 
    

Project 2: Build a Phishing Attack Simulator

Project Guide: https://lnkd.in/ezgpQaKb

Simulate phishing attacks to test organizational security awareness.

You Should Know:

  • Linux Phishing Tools:
    git clone https://github.com/trustedsec/social-engineer-toolkit 
    cd social-engineer-toolkit 
    ./setoolkit 
    
  • Windows Defender Exclusions (For Testing):
    Add-MpPreference -ExclusionPath "C:\Phishing_Test" 
    

Project 3: Work on Your Own IT Ticketing System
Project Guide: https://lnkd.in/gtFSfMw3
Develop a ticketing system to manage IT support requests.

You Should Know: