CV - Emilija Kastratović

import datetime

# Professional career — Emilija Kastratović

class ProfessionalExperience:

def airbus_defence_and_space(self):

role = "Working Student — AI Tool Development"

company = "Airbus Defence and Space"

location = "Ulm, Germany"

period = "Mar 2026 – present"

skills = ["Software Engineering", "Agentic AI", "LLMs"]

def hitachi_rail_gts(self):

role = "Working Student — Penetration Testing"

company = "Hitachi Rail GTS Deutschland"

location = "Germany"

period = "Feb 2025 – Feb 2026"

skills = ["Cybersecurity", "Kali Linux", "Penetration Testing", "Jenkins"]

highlights = [

"Performed penetration testing on railway systems and products.",

"Created and maintained custom Kali Linux ISO with automated builds using Jenkins.",

"Developed a custom Burp Suite plugin to simulate railway-specific traffic protocols for security testing purposes.",

]

def denso_automotive(self):

role = "Working Student — Fundamental Technology R&D"

company = "DENSO Automotive Deutschland"

location = "Germany"

period = "Oct 2023 – Nov 2024"

skills = ["Apache Kafka", "Cybersecurity", "Python"]

highlights = [

"CONNECT Horizon Europe research program focusing on Trust Management in VANETs.",

"Implemented, tested, and maintained a Python-based Cooperative Adaptive Cruise Control (CACC) module within SUMO traffic simulations, using Apache Kafka for real-time vehicle communication on Ubuntu Linux.",

"Integrated communication between the Trust Assessment Framework (TAF) and partner systems to dynamically migrate CACC instances between ECUs based on Trust Levels.",

]

def mercedes_benz_tech_innovation(self):

role = "Working Student — CarIT Security"

company = "Mercedes-Benz Tech Innovation"

location = "Stuttgart, Germany"

period = "Oct 2021 – Sep 2023"

skills = ["Cybersecurity", "Project Management", "Python"]

highlights = [

"Developed a Python-based tool for automated cybersecurity analysis of vehicular network architectures.",

"Performed vulnerability analysis on vehicle systems to identify security weaknesses.",

"Assisted with project management tasks, including documentation and review processes.",

"Bachelor's Thesis: "Comparing different vehicle architectures based on attack path analysis".",

]

# End of ProfessionalExperience

if __name__ == "__main__":

exp = ProfessionalExperience()

exp.mercedes_benz_tech_innovation()

exp.denso_automotive()

exp.hitachi_rail_gts()

exp.airbus_defence_and_space()