#!/usr/bin/python
# -*- coding: utf-8 -*-
class SecurityResearcher:
def __init__(self):
self.name = "Haq"
self.role = "Security Researcher, Web Developer"
self.language_spoken = ["en_US"]
self.portfolio = "https://1hehaq-portfolio.pages.dev"
def say_hi(self):
print("Thanks for stopping by!")
print(f"Check out my portfolio at: {self.portfolio}")
me = SecurityResearcher()
me.say_hi()
graph TB
classDef default fill:#0d1117,stroke:#E7CFAA,color:#E7CFAA,stroke-width:2px,font-size:14px
classDef category fill:#0d1117,stroke:#E7CFAA,color:#E7CFAA,stroke-width:3px,font-size:16px
classDef root fill:#0d1117,stroke:#E7CFAA,color:#E7CFAA,stroke-width:4px,font-size:18px
Root(("Skills"))
%% Main Structure
Root === Languages["Programming"]
Root === Security["Security"]
Root === Bounty["Bug Bounty"]
%% Languages Section
Languages --> Core["Core"]
Languages --> Web["Web"]
Core --> Go[".go"]
Core --> Python[".python"]
Core --> C[".c/.cpp"]
Core --> Java[".java"]
Core --> Shell[".shell"]
Web --> JavaScript[".javascript"]
Web --> CSS[".css"]
Web --> HTML[".html"]
%% Security Section
Security --> Testing["Testing"]
Security --> Environment["Environment"]
Testing --> Burp["Burp Suite"]
Testing --> Post["Postman"]
Environment --> Linux["Linux"]
Environment --> Docker["Docker"]
Environment --> Git["Git"]
Environment --> VSCode["VS Code"]
%% Bug Bounty Section
Bounty --> BC["Bugcrowd"]
Bounty --> H1["HackerOne"]
Bounty --> Int["Intigriti"]
class Root root
class Languages,Security,Bounty,Core,Web,Testing,Environment category