Advertisement
FlyFar

info.html

Jul 19th, 2023
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.57 KB | Cybersecurity | 0 0
  1. <!Doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <link rel="stylesheet" href="style.css">
  6.         <script src="functions.js"></script>
  7.         <meta name="viewport" content="width=device-width, initial-scale=0.8">
  8.         <meta charset="utf-8">
  9.         <title>Wi-Fi Ducky</title>
  10.         <meta name="description" content="Wi-Fi enabled USB HID">
  11.         <meta name="author" content="Spacehuhn - Stefan Kremser">
  12.         <meta name="viewport" content="width=device-width, initial-scale=1">
  13.         <link rel="stylesheet" href="normalize.css">
  14.         <link rel="stylesheet" href="skeleton.css">
  15.     </head>
  16.     <body>
  17.         <nav>
  18.             <a href="index.html">Scripts</a>
  19.             <a href="live.html">Live Execute</a>
  20.             <a href="settings.html">Settings</a>
  21.             <ul class="nav right">
  22.                 <a href="info.html">Info</a>
  23.             <ul>
  24.         </nav>
  25.         <div id="error"></div>
  26.         <div class="container">
  27.             <div class="row">
  28.                 <div class="twelve columns">
  29.                     <h1 class="header">Info</h1>
  30.                     <p>
  31.                         <span class="bold">Wi-Fi Ducky v.1.1<br /><br />
  32.                         Copyright (c) 2017 Stefan Kremser</span><br />
  33.                         This project is licensed under the MIT License - see the <a href="license">license file</a> file for details.<br />
  34.                         <br />
  35.                         The source code is available on <a href="https://github.com/spacehuhn/wifi_ducky" target="_blank">GitHub</a>.<br />
  36.                         <br />
  37.                         <span class="bold">Sources and Additional Links:</span><br />
  38.                         <a href="https://github.com/esp8266/Arduino">ESP8266 SDK</a> - licensed under the GNU Lesser General Public License v2.1<br />
  39.                         <a href="https://github.com/me-no-dev/ESPAsyncWebServer">ESPAsyncWebServer</a> - copyright <a href="https://github.com/me-no-dev">Me No Dev</a><br />
  40.                         <a href="https://github.com/me-no-dev/ESPAsyncTCP">ESPAsyncTCP</a> - licensed under the GNU Lesser General Public License v3.0<br />
  41.                         <a href="https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Duckyscript">Ducky Script</a> - copyright <a href="https://www.hak5.org/">Hak5</a><br />
  42.                         <a href="https://github.com/Seytonic/Duckduino-microSD">Duckduino</a> Ducky Script interpreter - copyright <a href="https://www.youtube.com/seytonic">Seytonic</a><br />
  43.                         <a href="http://getskeleton.com/">Skeleton</a> CSS - licensed under the MIT License<br />
  44.                     </p>
  45.                     <hr />
  46.                     <h2>Update</h2>
  47.                     <p class="bold">Select the .bin file and press upload.</p>
  48.                     <form method='POST' action='/update' enctype='multipart/form-data'>
  49.                         <input type='file' name='update'>
  50.                         <input type='submit' class="button-primary right" value='Upload'>
  51.                     </form>
  52.                 </div>
  53.             </div>
  54.         </div>
  55.        
  56.        
  57.     </body>
  58. </html>
Tags: info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement