#!/usr/bin/python
# -*- coding: utf-8 -*-
class Main:
def __init__(self):
self.name = "Gabriel Marchi"
self.alias = "Lotus"
self.role = ["SIEM engineer"]
self.language_spoken = ["pt_BR", "en_US"]
self.assignments = [
"Threat hunting",
"Create use cases",
"Develop scripts",
"Tune SIEM alerts",
"Analyze logs",
"Investigate incidents"
]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
def show_assignments(self):
print(f"\nAssignments of {self.name} ({', '.join(self.role)}):\n")
for i, assignment in enumerate(self.assignments, 1):
print(f"{i}. {assignment}")
me = Main()
me.say_hi()
me.show_assignments()
✏️
studying for Security +
Developer with a background in Cybersecurity, focused on automation, C#/Python development, and passionate about security. Always learning and exploring.
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.

