Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/31/2023 in all areas

  1. That's not really the case - Zadig is used to install the libusb driver, that makes it possible for Chrome to access the USB devices. Sony driver (the one used for SonicStage) locks the NetMD device down - it makes it unavailable for other apps to use. It's still necessary to use Zadig (or a 32-bit libusb driver in general) to run Web Minidisc on a 32-bit Windows system.
    1 point
  2. Hello! Just thought I'll report it here, if you're trying to create an account without a connection with an already existing account like Google or alike, it's simply impossible to do so, because of incorrectly loaded reCaptcha. To make this account I had to rewrite the part of the site responsible for the captcha. If anyone else is experiencing the same difficulties, here are the steps I used to create my account: Go to https://forums.sonyinsider.com/register/ In devtools, open the `head` tag and remove all the scripts that mention recaptcha Add a new script, with `src="https://www.google.com/recaptcha/api.js"` Execute the following JavaScript code: const captcha = document.querySelector("[data-ipscaptcha]"); const parent = captcha.parentElement; captcha.remove(); const newCaptcha = document.createElement("div"); parent.appendChild(newCaptcha); grecaptcha.ready(() => grecaptcha.render(newCaptcha, {sitekey: "6LdgERMTAAAAAC4kTmm7BH1laShX3teATAV_6FIY"})); After that, you should be able to click on the captcha and create your account by executing the following JS code (the submit button is broken): document.querySelector("form").submit();
    1 point
×
×
  • Create New...