-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
122 lines (111 loc) · 3.89 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About the Developer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.container {
width: 80%;
max-width: 900px;
margin: 50px auto;
background-color: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 20px;
}
h2 {
color: #2980b9;
text-align: center;
}
p {
font-size: 1.1rem;
line-height: 1.8;
text-align: justify;
}
.contact-info {
margin-top: 30px;
padding-top: 20px;
border-top: 2px solid #eee;
text-align: center;
}
.social-links {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
margin-top: 20px;
}
.social-links li {
margin: 0 15px;
}
.social-links a {
text-decoration: none;
color: #2980b9;
font-size: 1.5rem;
}
.pro-edition {
background-color: #27ae60;
color: white;
padding: 10px 15px;
border-radius: 5px;
text-decoration: none;
font-size: 1.2rem;
margin-top: 15px;
display: inline-block;
}
.footer {
text-align: center;
margin-top: 40px;
font-size: 0.9rem;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>About the Developer</h1>
<h2>Abhinav Singwal</h2>
<p>
I am Abhinav Singwal, a passionate and dedicated Security Researcher. With a keen interest in cybersecurity,
I have been actively involved in discovering vulnerabilities and helping organizations secure their digital
assets. My mission is to provide open-source solutions to the cybersecurity community and make it easier for
bug hunters to identify and fix vulnerabilities.
</p>
<p>
As the creator of BugBoard, I developed this tool with the intent to simplify vulnerability detection and
empower security researchers. BugBoard is a gift to the bug hunting community, enabling researchers to
identify security flaws quickly and effectively.
</p>
<div class="contact-info">
<h3>Contact Me</h3>
<p>If you have any questions, suggestions, or need assistance, feel free to reach out to me:</p>
<ul class="social-links">
<li><a href="https://www.linkedin.com/in/bug-bounty-hunter/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/hacker01x" target="_blank">GitHub</a></li>
</ul>
<p>You can also contact me directly via email at: <strong>abhinavsingwal@gmail.com</strong></p>
<a href="https://buymeacoffee.com/abhinavsingwal" target="_blank" class="pro-edition">
Support me on BuyMeACoffee
</a>
<p>If you'd like to get the pro edition of BugBoard or need further assistance, feel free to reach out.
Your suggestions are always welcome, and I am happy to help.</p>
</div>
</div>
<div class="footer">
<p>BugBoard is a free, open-source gift to bug hunters. Enjoy exploring and contributing!</p>
</div>
</body>
</html>