-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
390 lines (376 loc) ยท 12.9 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html lang="en">
<head>
<meta
name="google-site-verification"
content="LrFuU9MCsJ619gmixamCFDb32DboLPi6HgL2tgOPaOA"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Complete Bug Bounty Roadmap</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Bug Bounty Roadmap: From Beginner to Advanced</h1>
<p>Your complete guide to mastering Bug Bounty Hunting</p>
</header>
<section id="introduction">
<h2>Introduction to Bug Bounty</h2>
<p>
Bug bounties are a way for ethical hackers to find vulnerabilities in a
company's systems and get rewarded for responsibly reporting them. To
become proficient, you need to learn various aspects of web security,
tools, and techniques.
</p>
<p>
Follow this roadmap step by step to become an expert Bug Bounty hunter.
</p>
</section>
<section id="basics">
<h2>1. Basics of Networking & Web Technology</h2>
<p>
Understand the fundamentals of how the web works, including protocols
like HTTP/HTTPS, DNS, and how data travels across the web. Familiarize
yourself with web development basics such as HTML, CSS, and JavaScript.
</p>
<ul>
<li>
Resource:
<a
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Overview"
target="_blank"
>MDN Web Docs - HTTP Overview</a
>
</li>
<li>
Resource:
<a
href="https://youtube.com/playlist?list=PLkW9FMxqUvyZaSQNQslneeODER3bJCb2K&si=UvaM6-OMbS5u31DJ"
target="_blank"
>YouTube - Networking Basics</a
>
</li>
<li>
Resource:
<a href="https://www.w3schools.com/html/" target="_blank"
>W3Schools - HTML, CSS, and JavaScript</a
>
</li>
</ul>
</section>
<section id="web-app-security">
<h2>2. Learn Web Application Security Fundamentals</h2>
<p>
Before diving into bug hunting, you should learn how web applications
work, their architecture, and common vulnerabilities.
</p>
<ul>
<li>
Resource:
<a href="https://owasp.org/www-project-top-ten/" target="_blank"
>OWASP Top 10</a
>
- The most critical web application security risks
</li>
<li>
Resource:
<a href="https://www.udemy.com/share/1050Fc/" target="_blank"
>Udemy - Web Security Fundamentals</a
>
</li>
<li>
Resource:
<a href="https://www.hacksplaining.com/" target="_blank"
>Hacksplaining</a
>
- Interactive security learning
</li>
</ul>
</section>
<section id="reconnaissance">
<h2>3. Master Reconnaissance</h2>
<p>
Recon is one of the most crucial steps in bug bounty hunting. Learning
to gather information effectively will improve your chances of finding
vulnerabilities.
</p>
<ul>
<li>
Resource:
<a
href="https://youtu.be/27s49iO4J4k?si=fLUSej3XVFgvkEes"
target="_blank"
>YouTube - Recon for Bug Bounties</a
>
</li>
<li>
Resource:
<a href="https://reconftw.com/" target="_blank"
>ReconFTW - Automated Recon Framework</a
>
</li>
<li>
Tool:
<a href="https://github.com/OWASP/Amass" target="_blank"
>OWASP Amass</a
>
- Advanced network mapping
</li>
</ul>
</section>
<section id="vulnerability-exploration">
<h2>4. Vulnerability Discovery & Exploitation</h2>
<p>
Now that you've mastered recon, it's time to explore vulnerabilities.
The most common types include XSS, SQLi, SSRF, CSRF, and more.
</p>
<ul>
<li>
Resource:
<a
href="https://portswigger.net/web-security/all-materials"
target="_blank"
>PortSwigger Academy</a
>
- Web Security Labs
</li>
<li>
Resource:
<a href="https://www.hacker101.com/" target="_blank">Hacker101</a> -
Bug Bounty Training Platform
</li>
<li>
Resource:
<a
href="https://www.youtube.com/playlist?list=PLhixgUqwRTjxglIswKp9mpkfPNfHkzyeN"
target="_blank"
>YouTube - Web Vulnerabilities Playlist</a
>
</li>
</ul>
</section>
<section id="tools">
<h2>5. Essential Bug Bounty Tools</h2>
<p>
There are a number of tools that will make your bug bounty hunting
process easier. From network scanning to vulnerability exploitation,
knowing how to use these tools is key.
</p>
<ul>
<li>
Burp Suite:
<a href="https://portswigger.net/burp" target="_blank">Burp Suite</a>
- The #1 tool for web vulnerability scanning
</li>
<li>
Nmap: <a href="https://nmap.org/" target="_blank">Nmap</a> - Network
scanning tool
</li>
<li>
SQLMap:
<a href="https://github.com/sqlmapproject/sqlmap" target="_blank"
>SQLMap</a
>
- Automated SQL injection tool
</li>
<li>
Sublist3r:
<a href="https://github.com/aboul3la/Sublist3r" target="_blank"
>Sublist3r</a
>
- Subdomain enumeration
</li>
<li>
Resource:
<a
href="https://youtu.be/4WqymtvuWZQ?si=5lR_paYeOIOlSvEQ"
target="_blank"
>YouTube - Top Bug Bounty Tools</a
>
</li>
<li>
Brup Suite Course In Hindi
<a href="https://youtube.com/playlist?list=PLa2xctTiNSCjVzFfxTn_UKkd-sS34EQaF&si=-3-HeOuc8yWexqqx" target="_blank">Burpsuite Course Hindi</a>
</li>
<li>
Brup Suite Course In English
<a href="https://youtu.be/slxHpp7ilYU?si=oNUwu-NFeoemYo-T" target="_blank">Burpsuite Course English</a>
</li>
<li>
OWASP Zap Tutorial
<a href="https://youtube.com/playlist?list=PLH8n_ayg-60J9i3nsLybper-DR3zJw6Z5&si=pGrg1fTWBtl2UvF0" target="_blank">OWASP Zap Playlist</a>
</li>
</ul>
</section>
<section id="advanced">
<h2>6. Advanced Techniques and Specializations</h2>
<p>
Once you've mastered the basics, dive into more advanced topics like
mobile app security, source code review, and advanced recon methods.
</p>
<ul>
<li>
Resource:
<a href="https://www.udemy.com/share/1074hk/" target="_blank"
>Udemy - Advanced Bug Bounty Hunting</a
>
</li>
<li>
Resource:
<a
href="https://github.com/nahamsec/Resources-for-Beginner-Bug-Bounty-Hunters"
target="_blank"
>NahamSec - Advanced Recon Resources</a
>
</li>
<li>
Resource:
<a
href="https://youtube.com/playlist?list=PLF7JR1a3dLONdkRYU_8-5OcgOzrWe2549&si=nDEeBVxbzcOsYMX5"
target="_blank"
>YouTube - STรK (Advanced Bug Bounty Techniques)</a
>
</li>
</ul>
</section>
<section id="ctfs">
<h2>7. Practice: CTFs and Real-World Programs</h2>
<p>
After learning, the best way to grow is by practicing. Capture The Flag
(CTF) platforms provide real-world like environments for practicing your
skills.
</p>
<ul>
<li>
Resource:
<a href="https://www.hackthebox.com/" target="_blank">Hack The Box</a>
</li>
<li>
Resource:
<a href="https://tryhackme.com/" target="_blank">TryHackMe</a>
</li>
<li>
Resource:
<a
href="https://github.com/winterrdog/tryhackme-free-rooms"
target="_blank"
>
400+ Try Hack Me Free Rooms List
</a>
</li>
<li>
Resource:
<a href="https://ctftime.org/" target="_blank"
>CTFTime - Upcoming CTF Events</a
>
</li>
<li>
Resource:
<a href="https://pentesterlab.com/" target="_blank">Pentester Lab</a>
</li>
</ul>
</section>
<section id="motivation">
<h2>8. ๐ฅ Motivation for Bug Hunters ๐ฅ</h2>
<!-- Motivation Messages -->
<div class="motivation-section">
<h3>๐ ๏ธ Keep Pushing, Even When It Gets Hard ๐ช</h3>
<ul>
<li>
<blockquote>"The only way to become a master is to stay a student."</blockquote>
<p>Every challenge, every bounty, and every setback is an opportunity to learn something new.</p>
</li>
<li>
<blockquote>"Exploits are hidden in plain sightโfind the gaps, and you'll find the rewards."</blockquote>
<p>Most people stop just before they find that critical vulnerability. Keep going when others quit!</p>
</li>
<li>
<blockquote>"If it was easy, everyone would do it."</blockquote>
<p>It's a battle of wits, and only the most persistent win.</p>
</li>
<li>
<blockquote>"It's not about having time; it's about making time."</blockquote>
<p>Make time every day to sharpen your skills, even if it's just an hour.</p>
</li>
</ul>
</div>
<!-- Inspirational Quotes Section -->
<div class="quotes-section">
<h2>๐ฅ Words to Keep You Going When You Want to Quit ๐ฅ</h2>
<ul>
<li>
<blockquote>"Success is not final, failure is not fatal: It is the courage to continue that counts."
<br> โ Winston Churchill
</blockquote>
</li>
<li>
<blockquote>"I am not a product of my circumstances. I am a product of my decisions."
<br> โ Stephen Covey
</blockquote>
</li>
<li>
<blockquote>"The harder you work for something, the greater youโll feel when you finally achieve it."</blockquote>
</li>
<li>
<blockquote>"Every obstacle is a stepping stone. Keep your eyes on the prize."</blockquote>
</li>
</ul>
</div>
<!-- Closing Words -->
<div class="closing-section">
<h3>๐ดโโ ๏ธ Your Effort Today = A Zero-Day Tomorrow ๐ดโโ ๏ธ</h3>
<p>Every time youโre up late at night staring at code, testing payloads, or digging through HTTP responses, you're inching closer to finding a zero-day exploit that could change your life. Bug bounty hunting is about patience, persistence, and never settling for โgood enough.โ</p>
<p>Keep hacking, keep learning, and never give up. The rewards are out there waiting for you.</p>
</div>
</section>
<!-- Add more sections here as needed -->
<section id="manual-resources">
<h2>9. Bonus Resources</h2>
<p>
Here you can find additional resources that I have curated for Bug
Bounty Hunting. These resources may include full course, tutorials,
tools, and more.
</p>
<ul>
<!-- Example of how you can add resources -->
<li>
<h3>Bug Bounty Free Traning ( In Hindi )</h3>
<p>
Complete Bug Bounty course free avaliable on youtube live lectures.
And further classes going on
</p>
<a
href="https://youtube.com/playlist?list=PLOJR6EhNalnu7hgxu7QhA9GrF9i23JX9A&si=hjpS935rs3pcyf7V"
target="_blank"
>Live Bug Bounty Traning ( hindi )</a
>
</li>
<li>
<h3>Bug Hunting Course</h3>
<p>Second bonus course with with upto 74 lectures.</p>
<a
href="https://youtube.com/playlist?list=PLJ18l2m4Gsa_d-WrmQYi6AcjQCxRZ0wG1&si=y7j02ykMPwT8XAMU"
target="_blank"
>Bug Hunting Playlist</a
>
</li>
<!-- Add more resources here -->
</ul>
</section>
<footer>
<h3>Connect with me</h3>
<p>Follow me on social media for more tips and updates:</p>
<ul>
<li><a href="https://github.com/n4itr0-07">Github</a></li>
<li><a href="https://x.com/n4itr0_07">X</a></li>
<li>
<a href="https://www.linkedin.com/in/salik-seraj-naik">LinkedIn</a>
</li>
<!-- <li><a href="#">Social Link 4</a></li>
<li><a href="#">Social Link 5</a></li> -->
</ul>
</footer>
</body>
</html>