Security Enthusist
I am a Computer Engineer who is currently studying from National Forensic Sciences University, who has a keen interest in Web Application Security and who enjoy doing bug bounties.
Coming to the practical implementation, I love making scripts in Bash and tools in golang to automate processes that take lots of time while pentesting web applications. On the way of doing that made me think to write blogs on the hunting Bugs so that I can share my experience with other enthusiasts
package main
type Me struct{
Pronouns string
Code string
BestAndFavoriteSkill string
}
func main() {
me := &Me{
Pronouns: "He/Him",
Code: "Bash and Golang",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}