Skip to content

Instantly share code, notes, and snippets.

View jmcamposdev's full-sized avatar
🚀
Continuous Learning

José María jmcamposdev

🚀
Continuous Learning
View GitHub Profile
@jmcamposdev
jmcamposdev / solveWaveRecaptcha.js
Last active August 1, 2023 08:18
Solved WAVE Recaptcha (Missing form label)
window.addEventListener("load", (event) => {
let grecaptchaContainer = document.querySelector(".grecaptcha-badge");
if (grecaptchaContainer) {
let grecaptchaTextarea = grecaptchaContainer.querySelector("textarea");
let grecaptchaLabel = document.createElement("label");
grecaptchaLabel.textContent = "Recaptcha";
grecaptchaLabel.style.fontSize = "0px";
grecaptchaLabel.setAttribute("for", grecaptchaTextarea.id);
grecaptchaContainer.appendChild(grecaptchaLabel);
}
@jmcamposdev
jmcamposdev / solveWaveEmptyLinks.js
Last active August 1, 2023 08:09
Solved WAVE (Empty Links)