Hi, I'm Austin,

Cybersecurity Enthusiast & Problem Solver

Welcome to my portfolio where I build, break, and secure digital systems.

View My Projects

        
Headshot of Austin Dachel

About Me

I’m passionate about cybersecurity, especially being hands-on with things like ethical hacking, digging into digital forensics, and figuring out how to build systems that actually stay secure. What started as curiosity has turned into a career path focused on learning fast, solving problems, and staying one step ahead of threats.

I’ve spent time working on:

I stay active in the community by being a participating member of:

I have my degree in Computer Information Systems with a concentration in Cybersecurity:

Projects

Vulnerability Scanner

A Python-based vulnerability scanner that detects common web application flaws and generates detailed reports.

View Project
CTF Toolkit

A collection of scripts and tools for Capture The Flag competitions, including encoders, decoders, and exploit templates.

View Project
Network Visualization

An interactive network visualization tool to map and analyze network traffic and potential attack paths.

View Project
Sample Code Snippet
# Python: Simple port scanner
import socket
for port in range(20, 1024):
    s = socket.socket()
    result = s.connect_ex(('127.0.0.1', port))
    if result == 0:
        print(f"Port {port} is open")
    s.close()
      

Contact

Get in touch

austinD.projects@proton.me