- ID de exploración:
- fc1615f5-498c-4d50-acc8-865d12415bdfFinalizado
- URL enviada:
- https://www.stretchoid.com/
- Informe finalizado:
Enlaces: 0 encontrados
Los enlaces salientes identificados en la página
Variables JavaScript: 5 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
$ | function |
jQuery | function |
Mensajes de registro de la consola: 0 encontrados
Mensajes registrados en la consola web
HTML
El cuerpo HTML sin procesar de la página
<html><head>
<title>Stretchoid Opt-Out</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(e){
e.preventDefault();
let cidr = document.getElementById("cidr").value;
if (!cidr) {
message = "Not a valid CIDR. Please use notation like 150.150.150.0/24"
const elem = document.getElementById("cidrError");
elem.textContent = message;
elem.style.color = 'red';
return
}
data = {
name: document.getElementById("name").value,
email: document.getElementById("email").value,
ipAddress: cidr,
note: document.getElementById("notes").value
};
$.ajax({
url: "optout",
type: "POST",
data: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
timeout: 5000,
success: function(response_data,s) {
message = "Thank you for opting out (CIDR block " + cidr + ").";
$("div").html(message);
},
error: function(response_data,s) {
message = "There was an error submitting your request. Please refresh the page and try again";
$("div").html(message);
}
});
});
});
</script>
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="index.css" rel="stylesheet">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
</head>
<body>
<div class="main-container">
<div class="logo">
<img src="logo.png" alt="Stretchoid" width="325" height="200">
</div>
<hr class="line1">
<div class="description">
<p>
Stretchoid is a platform that helps identify an organization's online services.
</p>
<p>
Sometimes this activity is incorrectly identified by security systems, such as firewalls, as malicious. Our activity is completely harmless. However, if you would prefer that we do not scan your infrastructure, please submit the following information:
</p>
</div>
<div class="opt-out-form">
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="John Doe">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="[email protected]">
<label for="cidr">CIDR Block:</label>
<div id="cidrError"></div>
<input type="text" id="cidr" name="cidr" placeholder="10.0.0.1/24">
<label for="notes">Additional Information:</label>
<textarea id="notes" name="notes" placeholder="We are opting out ..." style="height: 200px"></textarea>
<button>Opt Out</button><br>
</form>
</div>
<div class="padding"></div>
</div>
</body></html>