Full Time BugBounty Hunter and a wannabe hacker
I like doing various things related to hacking. I do full time bugbounty hunting. If you have any other questions please feel free to contact me @0xdln
package main
type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}
func main(){
me := &Me{
Job: "Full Time Bug Bounty Hunter",
Pronouns: "He/Him",
Code: "Python,Bash,Golang and Everything",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}