forked from grt1st/wooyun_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>乌云搜索|search from wooyun.org</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link href="//lib.baomitu.com/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="//lib.baomitu.com/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="//lib.baomitu.com/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript">function gradeChange(){var objS=document.getElementById("pid");var grade=objS.options[objS.selectedIndex].value;document.getElementById("iden").value=grade;}</script>
<style type="text/css">
.container{
width: 800px;
margin: 0 auto;
position: relative;
top: 270px;
}
.fff{
width: 400px;
margin: 0 auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-left">
<a class="navbar-brand" href="#">search from wooyun.org</a>
</div>
<div class="navbar-right">
<ul class="nav navbar-nav">
<li><a href="./index.html">home</a></li>
<li><a href="#">about</a></li>
<li><a href=""></a></li>
</ul>
</div>
</nav>
<div class="container jumbotron">
<form action="search.php" method="GET" name="dir" class="form-inline fff">
<select class="form-control" id="pid" onchange="gradeChange()">
<option value="bugs">漏洞库</option>
<option value="drops">知识库</option>
<option value="author">提交者</option>
</select>
<input type="hidden" name="kind" value="bugs" id="iden">
<input type="text" name="keywords" placeholder="keywords" class="form-control">
<input type="submit" value="乌云一下" class="btn btn-success">
</form>
</div>
<nav class="navbar navbar-default navbar-fixed-bottom" role="navigation">
<p class="navbar-text navbar-left">公开漏洞、知识库等数据来自于wooyun.org</p>
<!--<p class="navbar-text navbar-right">written by grt1st</p> -->
</nav>
</body>
</html>