18 lines
757 B
PHP
18 lines
757 B
PHP
<?php
|
|
// WordPress login decoy — sends the right html markers for wp fingerprinting.
|
|
header("X-Powered-By: WordPress/6.4.2");
|
|
?><!DOCTYPE html>
|
|
<html><head>
|
|
<title>Log In ‹ Newploit Blog — WordPress</title>
|
|
<meta name="generator" content="WordPress 6.4.2">
|
|
</head><body class="login wp-core-ui">
|
|
<div id="login">
|
|
<h1><a href="https://wordpress.org/">WordPress</a></h1>
|
|
<form name="loginform" id="loginform" action="/login.php" method="post">
|
|
<p><label>Username or Email Address<br><input type="text" name="log" id="user_login"></label></p>
|
|
<p><label>Password<br><input type="password" name="pwd" id="user_pass"></label></p>
|
|
<p class="submit"><input type="submit" name="wp-submit" value="Log In"></p>
|
|
</form>
|
|
</div>
|
|
</body></html>
|