Security Researcher and Bugbounty Hunter
CTFer and Whitehat
package main
type Me struct{
Code string
Job string
BestAndFavoriteSkill string
SweetHeart string
}
func main() {
me := &Me{
Job: "Security Researcher and RedTeam",
SweetHeart: "01",
Code: "PHP and Go and Python and Java and Rust",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}