mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
0f27c20d8d
This is meant mainly for testing purposes and as a reference implementation showing how OSU SPP server could be implemented. This is not suitable for any real production use in its current form. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
19 lines
330 B
PHP
19 lines
330 B
PHP
<html>
|
|
<head>
|
|
<title>Hotspot 2.0 subscription remediation</title>
|
|
</head>
|
|
<body>
|
|
|
|
<?php
|
|
|
|
echo "SessionID: " . $_GET["session_id"] . "<br>\n";
|
|
|
|
echo "<a href=\"redirect.php?id=" . $_GET["session_id"] . "\">Complete user subscription remediation</a><br>\n";
|
|
|
|
?>
|
|
|
|
This will provide a new machine-generated password.
|
|
|
|
</body>
|
|
</html>
|