I’m a Cyber Security Engineer passionate about Web Application Security, actively hunting bugs, diving into Malware Analysis and Reverse Engineering, and jumping into CTFs whenever I get the chance.
You can read my articles related to reverse engineering on my medium blog
- ✉️ You can contact me at [email protected]
package main
type Me struct{
Pronouns string
BestAndFavoriteSkill string
}
func main() {
me := &Me{
Pronouns: "He/Him",
BestAndFavoriteSkill: "Web Hacking, Reverse Engineering and Malware Analysis :D"
}
_ = me
}