Closed ghost closed 5 years ago
The IUAM JS challenge appends the fragment identifier (#hashtag) of the window.location to the form's action URI before submission. Cloudscraper is not currently mimicking this behavior.
window.location
Example JS challenge:
window.addEventListener("DOMContentLoaded", function() { setTimeout(function() { // ... document.getElementById("jschl_answer").value = Number() f.action += location.hash; f.submit(); }, 4000); }, false);
@VeNoMouS
Interesting... I did see that the other day... but thought nothing of it..
Looking at mitm's / debugging... it doesn't actually send that hash from what I can see...
The IUAM JS challenge appends the fragment identifier (#hashtag) of the
window.location
to the form's action URI before submission. Cloudscraper is not currently mimicking this behavior.Example JS challenge: