$ whoami
> shubham@shipt:~$ Cybersecurity Enthusiast | Web Developer | Passionate about Coding & Hacking
$ ./skills.sh --list-top
> [Loaded]: C/C++ | Python | JavaScript | Social Engineering | Web Development | Linux
$ shubham -a
> OS: Kali Linux (amd64) | Alias: CyberOS
$ ps aux | grep active-projects
> ACTIVE: Cyber-Library | Portfolio | Python-Mini-Projects | Keylog-v6
$ cat /etc/address | grep contact
> Location: Noida | Email: shubscript213@gmail.com
Hi, I'm Shubham.
I'm learning web development and exploring cybersecurity. I enjoy coding, trying ethical hacking tools, and building small projects as I improve my skills step by step.
- 🛡️ Focus: Ethical hacking, web development, cybersecurity fundamentals
- 🔬 Interests: Penetration testing, web security, CTF competitions, cloud security
- 💻 Skills: C/C++, Python, JavaScript, HTML/CSS, Web Development, Linux, Bash, GitHub, Git
- 🌐 Communities: Active in cybersecurity forums and open-source projects
- 🎓 Learning: Advancing in hacking, network security, and secure coding practices
My mission is to become a Hacker.
#include <iostream>
const std::string RED = "\033[1;31m";
const std::string BLUE = "\033[1;34m";
const std::string PURPLE= "\033[1;35m";
const std::string RESET = "\033[0m";
int main() {
std::cout << RED << " ____ " << BLUE << "__ __ \n"
<< RED << " / __ \\ " << BLUE << "| \\/ |\n"
<< RED << "| | | | " << BLUE << "| \\ / |\n"
<< RED << "| | | | " << BLUE << "| |\\/| |\n"
<< RED << "| |__| | " << BLUE << "| | | |\n"
<< RED << " \\____/ " << BLUE << "|_| |_|\n"
<< PURPLE << "\n ~ OM ~\n"
<< RESET;
return 0;
}