Bash - Name & Identity
#!/bin/bash
# 0xbbuddha Identity Configuration
USERNAME="0xbbuddha"
REAL_NAME="Killian PRIN-ABEIL"
COMPANY="Aukfood"
SCHOOL="Oteria"Python - Role & Specialization
class CybersecurityRole:
def __init__(self):
self.title = "Cybersecurity Student & Open-Source Contributor"
self.specializations = [
"Red Team Operations",
"Purple Team Analysis",
"Tool Development"
]Go - Skills & Interests
package main
import "fmt"
func main() {
skills := map[string][]string{
"Programming Languages": {"Bash", "Python", "Go", "CMake"},
"Security Tools": {"Metasploit", "Caido", "Nmap", "Wazuh", "CrowdSec"},
"Frameworks": {"MITRE ATT&CK", "OWASP"},
"Current Interests": {"Penetration Testing", "Malware Analysis", "Tool development"},
"Currently Learning": {"Web3 Security", "DevSecOps", "Pentest Tool Development"},
}
for category, items := range skills {
fmt.Printf("%s:\n", category)
for _, item := range items {
fmt.Printf(" - %s\n", item)
}
fmt.Println()
}
}CMake - Contact & Links
# 0xbbuddha Contact Configuration
cmake_minimum_required(VERSION 3.20)
project(ContactInfo)
# Contact Information
set(EMAIL "killian@archimedeos.org")
set(GITHUB "https://github.com/0xbbuddha")
set(LINKEDIN "https://www.linkedin.com/in/killianprinabeil/")
# Professional Platforms
set(TRYHACKME "https://tryhackme.com/p/bouddha")
set(HACKTHEBOX "https://app.hackthebox.com/profile/1551480")
set(ROOTME "https://www.root-me.org/0xbbuddha")
# Personal Brand
set(WEBSITE "https://www.aukfood.fr")
set(BLOG "https://www.aukfood.fr/nos-actualites/")



