This script extracts your NodePay authentication token.
- Do not share it with anyone.
- Do not execute random scripts in your browser.
- Anyone with this token can log into your account without needing your password.
- Open your web browser.
- Go to the NodePay website and log in to your account.
- Open the Developer Console:
- Chrome/Edge: Press
F12
orCtrl + Shift + I
, then go to the Console tab. - Firefox: Press
F12
orCtrl + Shift + K
. - Safari: Press
Cmd + Option + C
(Enable "Develop" menu in settings if needed).
- Chrome/Edge: Press
Copy and paste the following JavaScript code into the Console and press Enter:
/**
* DISCLAIMER: THIS SCRIPT EXTRACTS YOUR COOKIE.
* DO NOT SHARE IT WITH ANYONE. DO NOT EXECUTE RANDOM SCRIPTS IN YOUR BROWSER.
* ANYONE WITH THIS COOKIE CAN LOG INTO YOUR ACCOUNT WITHOUT NEEDING YOUR PASSWORD.
*/
function printNpToken() {
const npToken = localStorage.getItem("np_token");
if (npToken) {
console.log("np_token:", npToken);
} else {
console.log("np_token not found in Local Storage.");
}
}
printNpToken();