Jump to content

Featured Replies

Posted
  • Administrators
comment_3748

wasender-keygen.png.f131ccdc8d6123870f0c4c6c71e65e44.png

This is a html version of Wasender Keygen.

Paste the code into notepad and save the file extension as html. that's all.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WASender Keygen</title>
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
  }
  .container {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  input[type="text"],
  input[type="number"],
  input[type="submit"],
  button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  input[type="submit"]:hover {
    background-color: #0056b3;
  }
  #output {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    overflow-wrap: break-word;
  }
  #copyButton {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #copyButton:hover {
    background-color: #0056b3;
  }
</style>
</head>
<body>

<div class="container">
  <h2>WASender Keygen</h2>
  <form id="base64Form">
    <input type="text" id="textInput" placeholder="Enter activation code">
    <input type="number" id="validDays" placeholder="Enter valid days" min="1" value="">
    <input type="submit" value="Generate">
    <button id="pasteButton">Paste & Generate</button>
  </form>
  <div id="output"></div>
  <button id="copyButton">Copy key</button>
</div>

<script>
document.getElementById("base64Form").addEventListener("submit", function(event) {
  event.preventDefault();
  generateKey();
});

document.getElementById("pasteButton").addEventListener("click", function() {
  var copiedText = navigator.clipboard.readText().then(clipboardText => {
    if (clipboardText.trim() !== "") {
      document.getElementById("textInput").value = clipboardText.trim();
      generateKey();
    }
  });
});

function generateKey() {
  var inputText = document.getElementById("textInput").value.trim();
  var validDays = parseInt(document.getElementById("validDays").value);
  var startDate = new Date();
  var endDate = new Date(startDate.getTime() + validDays * 24 * 60 * 60 * 1000);
 
  if (inputText === "") {
    alert("Please enter your activation code.");
    return;
  }

  var finalEncodedText = '{"ActivationCode":"' + btoa(inputText) + '","validDays":' + validDays + ',"StartDate":"' + startDate.toISOString().split('T')[0] + 'T00:07:01.3075397+05:00","EndDate":"' + endDate.toISOString().split('T')[0] + 'T00:07:01.3075397+05:00","Item_id":"35762285","purchasecode":"db2d42a5-7682-48d6-a10d-2421352ff54b"}';
  var doubleEncodedText = btoa(finalEncodedText);
  var outputDiv = document.getElementById("output");
  var copyButton = document.getElementById("copyButton");
  outputDiv.innerText = doubleEncodedText;
  outputDiv.style.display = "block";
  copyButton.style.display = "block";
}

document.getElementById("copyButton").addEventListener("click", function() {
  var outputText = document.getElementById("output").innerText;
  var tempInput = document.createElement("input");
  tempInput.value = outputText;
  document.body.appendChild(tempInput);
  tempInput.select();
  document.execCommand("copy");
  document.body.removeChild(tempInput);
  alert("Result copied to clipboard!");
});
</script>

</body>
</html>

 

  • Views 1.9k
  • Created
  • Last Reply

Posted Images

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.


Guest
Reply to this topic...

Similar Content