-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
65 lines (49 loc) · 2.61 KB
/
index.php
File metadata and controls
65 lines (49 loc) · 2.61 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Meta Tags -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ShellShock Test</title>
<meta name="description" content="Unknown Error" />
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,200,200italic,300,300italic,400italic,600,600italic,700,700italic,900' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="/favicon.ico">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/customx.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/purify.js"></script>
<script src="js/customx.js"></script>
</head>
<body>
<div class="container">
<div class="middle">
<div class="row">
<h1 class="title">ShellShock Test</h1>
<h2><a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-6271">CVE-2014-6271</a></h2>
<h4>A severe vulnerability was disclosed in bash that affects is present on most Linux, BSD, and Unix-like systems, including Mac OS X. Per the vulnerability identified as CVE-2014-6271 (nicknamed <b>Shellshock</b>), bash does not stop processing after the function definition, leaving it vulnerable to malicious functions containing trailing commands <a href="https://community.rapid7.com/community/infosec/blog/2014/09/25/bash-ing-into-your-network-investigating-cve-2014-6271">More Info</a></h4>
<input type="text" name="url" placeholder="URL" id="url" class="form-control"/>
<br />
<button name="check" onclick="check()" class="btn btn-primary btn-lg" >Check</button>
<br /><h4>Example : http://example.com/cgi-bin/check.cgi </h4><br />
<div id="loading" style="display: none;"><img src="img/spinner.gif" /></div>
</div>
<div class="row">
<h2 class="title"><u>Get in Touch</u></h2>
<h3 class="title-description">Mail me : <a href="mailto:dhaval@dr4cun0.com">dhaval@dr4cun0.com</a></h3>
</div>
</div>
</div>
<div aria-hidden="true" aria-labelledby="mySmallModalLabel" role="dialog" tabindex="-1" class="modal fade bs-example-modal-sm in" style="display: none;">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button data-dismiss="modal" class="close" type="button"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<b id="mySmallModalLabel" class="modal-title">Info</b>
</div>
<div class="modal-body" id="data">
</div>
</div>
</div>
</div>
</body>
</html>