-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
68 lines (65 loc) · 2.81 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Blogs | Rohan j</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<link href="/styles.css" rel="stylesheet"/>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Rohan j</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/index.html"><span class="clr">Home</span></a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html"><span class="clr">Projects</span></a>
</li>
<li class="list-item-inline">
<a class="link link-active " href="/blogs.html"><span class="clr">Blogs</span></a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="images/blog.svg" />
<h1 class="hero-heading">My <span class="heading-inverted">Blogs</span></h1>
</header>
<hr>
<ul class="list-non-bullet">
<li>
<div class="container container-center">
<h1>Bug Bounty Writeups</h1>
<small>November, 2020</small>
<p>A collection of awesome write-ups from the best hackers in the worlds from topics ranging from bug bounties, CTFs, Hack the box walkthroughs, hardware challenges, real-life encounters and everything which can help other enthusiasts learn. Maintained by Hackrew. #SharingIsCaring</p>
<a class="link link-primary" href="https://medium.com/bugbountywriteup"><span class="clr">Visit</span></a>
</div>
</li>
<hr>
<li>
<div class="container container-center">
<h1>Bug Bounty Check List</h1>
<small>November, 2020</small>
<p>I just want to write a check list for myself. This article includes various vulnerability discovery method bypass methods. I hope you can read it carefully .</p>
<a class="link link-primary" href="https://medium.com/@cc1h2e1/bug-bounty-check-list-by-c1-2beb7ae3c116"><span class="clr">Visit</span></a>
</li>
<hr>
</ul>
<footer class="footer">
<div class="footer-header">Social Media presence</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/rohan-cce">
<span class="clr">Github</span>
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/rohan-j-ba489b19b/">
<span class="clr">Linkedin</span>
</a>
</li>
</ul>
</footer>
</body>
</html>