feat: add script to dump firebase auth

This commit is contained in:
2026-01-29 01:04:26 -03:00
parent b246afdc7f
commit 9571e32e61
+10
View File
@@ -0,0 +1,10 @@
console.log('scanning localstorage')
const keys = Object.keys(localStorage).filter(k => k.startsWith("firebase:authUser"));
if (keys.length > 0) {
const data = JSON.parse(localStorage.getItem(keys[0]));
console.log("found in localstorage:", data.stsTokenManager);
} else {
console.error("no session found");
}