pragma python ^3.12.1
class AboutMe:
def __init__(self):
self.name = "Yasser Fekry π"
self.roles = [
"Bug Bounty Hunter π΅οΈββοΈ",
"Skilled Penetration Tester π οΈ",
"Full Stack Developer π»"
]
self.experience = (
"Extensive experience in identifying and exploiting security vulnerabilities π "
"in both web π and mobile π± applications."
)
self.expertise = [
"Testing systems for weaknesses π§βπ»",
"Providing security recommendations π",
"Ensuring applications are robust and secure π"
]
if __name__ == "__main__":
about_me = AboutMe()
about_me.display_about_me()
|
|
|
|