Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.32 KB

nodepay.md

File metadata and controls

45 lines (33 loc) · 1.32 KB

NodePay Cookie Extractor

⚠️ Disclaimer

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.

📌 Steps to Extract the NodePay Cookie

Step 1: Open Developer Console

  1. Open your web browser.
  2. Go to the NodePay website and log in to your account.
  3. Open the Developer Console:
    • Chrome/Edge: Press F12 or Ctrl + Shift + I, then go to the Console tab.
    • Firefox: Press F12 or Ctrl + Shift + K.
    • Safari: Press Cmd + Option + C (Enable "Develop" menu in settings if needed).

Step 2: Execute the Script

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();