#include <stdio.h>
#include <string.h>
typedef struct {
char name[50];
int age;
char location[50];
char education[80];
char interests[5][30];
char motto[80];
} Person;
int main(void) {
Person mathias = {
.name = "Mathias Hansen",
.age = 18,
.location = "Vestfossen, Norway",
.education = "1st year, Digital Infrastructure & Cybersecurity - NTNU Gjovik",
.interests = {"Cybersecurity", "Networking", "Programming", "CTF Challenges", "Gaming"},
.motto = "Good code should be efficient AND secure"
};
printf("Hi, I'm %s\n", mathias.name);
printf("Studying: %s\n", mathias.education);
return 0;
}During the COVID-19 pandemic, I discovered my passion for coding โ starting with simple HTML and CSS projects and progressively expanding into Python, C#, and now C. What began as curiosity evolved into a deep commitment to cybersecurity and network security.
This year I led a real network security project for Eiker Energi AS, designing, securing and rolling out infrastructure across roughly 30 locations, including a self-built real-time monitoring tool for detecting connectivity and security anomalies.
My approach: Security-first development. I believe that elegant code must also be secure code.
โโ[mathias@kali]โ[~]
โโโโผ $ cat current_projects.txt
โ ๐ 1st year, Digital Infrastructure & Cybersecurity at NTNU Gjรธvik
โ ๐ Building and maintaining a MikroTik WireGuard VPN network
โ ๐ป Learning C, alongside Python and C#
โ ๐ Competing in CTF challenges to sharpen skills
โ ๐ Preparing for ethical hacking certifications
- ๐ฏ Gaming: Strategy games and FPS โ sharpening problem-solving skills and reflexes
- ๐ CTF Competitions: Regular participant in Capture The Flag challenges
- ๐ Continuous Learning: Always exploring new security trends and vulnerabilities
- ๐ก๏ธ Security Research: Studying the latest attack vectors and defense mechanisms
#include <stdio.h>
typedef struct {
const char *career[3];
const char *certifications[3];
const char *vision;
} FutureGoals;
int main(void) {
FutureGoals goals = {
.career = {"Security Analyst", "Ethical Hacker", "Penetration Tester"},
.certifications = {"Security+", "CEH (Certified Ethical Hacker)", "OSCP"},
.vision = "Protect systems and data from malicious actors using my knowledge for good"
};
printf("Vision: %s\n", goals.vision);
return 0;
}"The best defense is understanding the offense. Security isn't just about building wallsโit's about thinking like an attacker to protect like a defender."
I approach every project with security in mind. Whether it's a simple script or a complex application, I believe that secure code is good code, and good code is secure code.
I'm always interested in connecting with fellow developers, security enthusiasts, and anyone passionate about technology!
Open to collaborations, CTF teams, and exciting cybersecurity projects!
โญ๏ธ From CyberHansen | Made with โค๏ธ and lots of โ

