This script extracts your Teneo 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 Teneo website and log in to your account.
- Open the Developer Console:
- Chrome/Edge: Press
F12orCtrl + Shift + I, then go to the Console tab. - Firefox: Press
F12orCtrl + 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("accessToken");
if (npToken) {
console.log("accessToken:", npToken);
} else {
console.log("accessToken not found in Local Storage. Log in again");
}
}
printNpToken();