UNPKG

beef-npm

Version:

Node.js package to install and interact with BeEF (Browser Exploitation Framework)

75 lines (69 loc) 2.7 kB
<!-- Copyright (c) 2006-2024 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - https://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.12.4.min.js"></script> <script> function showfriends() { $("#hamper").hide(); $("#friends").show(); } function showHamper() { $("#friends").hide(); $("#hamper").show(); } </script> <script src="/hook.js"></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> &nbsp; <button type="button" onclick="showHamper();">Order Your BeEF-Hamper</button> <div id="friends"> <ul> <li><a href="https://beefproject.com" target="_blank">The Browser Exploitation Framework Project homepage</a> <li><a href="https://github.com/beefproject/beef/wiki" target="_blank">BeEF Wiki</a></li> <li><a href="http://browserhacker.com/" target="_blank">Browser Hacker's Handbook</a></li> <li><a href="https://slashdot.org/" target="_blank">Slashdot</a> </ul> </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>