Files
bashbunny-payloads/payloads/library/Captiveportal/portal.html
jumbopackets 0f2ddd9abe Change username input tag's type attribute from "username" to "text"
"username" is not a valid value for the type attribute in an input tag,
which causes it to fail formal validation.  Probably would never
*really* affect anything, but...you know...
2017-03-26 15:55:43 -04:00

18 lines
406 B
HTML
Executable File

<html>
<head>
<title>Captive Portal</title>
<style type="text/css">
body {
text-align: center;
}
</style>
</head>
<body>
<h1>Captive Portal</h1>
<form method="post">
Username: <input type="text" name="username"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Log in">
</form>
</body>
</html>