-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
87 lines (76 loc) · 3.02 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
<!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">Find what you're looking for in the matrix...</p>
<div class="search-container">
<button id="searchButton" class="search-button">Search</button>
<input type="text" id="searchInput" class="search-input" placeholder="Enter search term...">
</div>
<div class="results-container" id="resultsContainer"></div>
<div class="pagination-controls" id="paginationControls"></div>
<p>Be cautious, knowledge is power!</p>
</div>
<!-- Google Dorks Section -->
<div class="dorks-container">
<h2>Google Dorks for Bug Bounty</h2>
<p>
<a href="https://github.com/Vulnpire/bounty-search-engine" target="_blank">GitHub Repo</a><br><br>
</p>
<div class="search-container">
<input type="text" id="domainInput" class="search-input" placeholder="Enter domain...">
<button id="updateDomainButton" class="search-button">Update Domain</button>
</div>
<ul id="dorkList"></ul>
</div>
<div id="notification" style="display: none; position: fixed; top: 20px; right: 20px; background-color: #1a1a1a; color: #00ff00; padding: 10px; border: 2px solid #00ff00; border-radius: 5px;">
Notification
</div>
<!-- <div id="cheatsheets-pane">✎</div>
<div id="cheatsheets" style="display: none;">
<div>
<h6>Cheatsheets</h6>
<ul>
<li><a href="#" target="_blank">Cheatsheet Link Test</a> | Description</li>
<li><a href="#" target="_blank">Cheatsheet Link Test</a> | Description</li>
<li><a href="#" target="_blank">Cheatsheet Link Test</a> | Description</li>
</ul>
</div>
<div>
<h6>Writeups</h6>
<ul>
<li><a href="#" target="_blank">Writeup Link Test</a> | Description</li>
<li><a href="#" target="_blank">Writeup Link Test</a> | Description</li>
<li><a href="#" target="_blank">Writeup Link Test</a> | Description</li>
</ul>
</div>
<div>
<h6>Dorks</h6>
<ul>
<li><a href="#" target="_blank">Dork Link Test</a> | Description</li>
<li><a href="#" target="_blank">Dork Link Test</a> | Description</li>
<li><a href="#" target="_blank">Dork Link Test</a> | Description</li>
</ul>
</div>
</div>
-->
<!-- Paging Links -->
<div class="paging">
<a href="shodan.html">Shodan Dorks</a>
<a href="github.html">GitHub Dorks</a>
</div>
<!-- Footer -->
<div class="footer">
© 2024 Bounty Search Engine | Stay Anonymous
</div>
<script src="js/google.js"></script>
</body>
</html>