cavi-au / Consent-O-Matic

Browser extension that automatically fills out cookie popups based on your preferences

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Document "Let us know" processes

JohnVeness opened this issue · comments

Can you add some documentation, e.g. in the README, as to what happens after we click the "Let us know" button when autofill doesn't work? E.g. what exactly is submitted and to where? And is there a way we can check the submissions to track if they are accepted or rejected?

+1 news?

Can't fully answer this but from a look at the code:

document.querySelector("#unhandled_send").addEventListener("click", () => {
fetch("https://gdprconsent.projects.cavi.au.dk/report.php?url=" + encodeURIComponent(url));
document.querySelector(".unhandledtab").style.display = "none";
document.querySelector(".unhandledtab_complete").style.display = "block";
setTimeout(() => {
window.close();
}, 1250);
});

We can see:

  1. What is submitted? - The site's URL you are reporting, e.g. www.facebook.com
  2. To where? - Sent as a URL-encoded query string to https://gdprconsent.projects.cavi.au.dk/report.php which currently resolves to 185.45.23.237 (an IP address owned by Aarhus University Miscellaneous Services)
  3. Can we check/track submissions? - Can't answer this one unfortunately 🤷

And if you debug the add-on, this is confirmed:
Screenshot from 2024-06-27 10-10-28