-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgithub.html
41 lines (37 loc) · 1.3 KB
/
github.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bounty Search Engine</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<h1>Bounty Search Engine</h1>
<p class="animated-text">Dig into repositories...</p>
<p>Be cautious, knowledge is power!</p>
</div>
<!-- GitHub Dorks Section -->
<div class="dorks-container">
<h2>GitHub Dorks for Bug Bounty</h2>
<p>
<a href="https://github.com/Vulnpire/bounty-search-engine" target="_blank">GitHub Repo</a><br><br>
</p>
<input type="text" id="domainInput" class="search-input" placeholder="Enter a domain...">
<button id="updateDomainButton" class="search-button">Update Domain</button>
<ul id="dorkList"></ul>
</div>
<!-- Paging Links -->
<div class="paging">
<a href="index.html">Google Dorks</a>
<a href="shodan.html">Shodan Dorks</a>
</div>
<!-- Footer -->
<div class="footer">
© 2024 Bounty Search Engine | Stay Anonymous
</div>
<script src="js/github.js"></script>
</body>
</html>