Stored passwords wiped. AGAIN.
Moderator: trava90
Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
I know, but this has been going on for so long I just curse it out when I find out. More imporantly though, when I am prompted to save a password, it can easily have been months since the password was deleted, because again, what's the default amount of time a website login is kept in cookies? (or however it works)
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Heh, first crash just as I reloaded Amazon.de
Passwords seem intact.
Passwords seem intact.
Code: Select all
Faulting application name: palemoon.exe, version: 6.8.0.9420, time stamp: 0x68f0c050
Faulting module name: mozjs.dll, version: 0.0.0.0, time stamp: 0x68f0c1e9
Exception code: 0xc0000005
Fault offset: 0x000000000037f9ba
Faulting process id: 0x2A70
Faulting application start time: 0x1DC85FBA63F9143
Faulting application path: C:\Program Files\Pale Moon\palemoon.exe
Faulting module path: C:\Program Files\Pale Moon\mozjs.dll
Report Id: 8d295915-7bb9-43d9-9b0d-dcdc2fc04a30
Faulting package full name:
Faulting package-relative application ID: -
Moonchild
- Project founder

- Posts: 38821
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Stored passwords wiped. AGAIN.
That looks like one of the pertinent crashes to desktop that were fixed for 34.0
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
I get these occasionally (totally random crashes to desktop) and have been for a long time. Often enough to feel suspicious about my PC (which is otherwise stable and passed 8-12 hours of multiple different stress tests) but still somewhat uncommon to always wave it off as a random crap that's impossible to troubleshoot.
Just curious, how do you even figure out what's causing these as a dev?
Just curious, how do you even figure out what's causing these as a dev?
-
Moonchild
- Project founder

- Posts: 38821
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Stored passwords wiped. AGAIN.
Off-topic:
I keep the object tree of release builds, which allows me to have all the symbols and compiler intermediates handy for the final release builds like what you're running, allowing debugging of running programs built in that tree.
Basically, the method is:
This doesn't always work, especially not when it's something deep inside JS, dealing with garbage collection, or some exotic shenanigans in C++ or if the code in question has been optimized away by the compiler into a binary blob without direct references.
I hope that's clear!
Having the crash address and module (in this case mozjs.dll) gets me quite far in finding out where the crash occurred.LuftWafflePilot wrote: ↑2026-01-16, 09:02Just curious, how do you even figure out what's causing these as a dev?
I keep the object tree of release builds, which allows me to have all the symbols and compiler intermediates handy for the final release builds like what you're running, allowing debugging of running programs built in that tree.
Basically, the method is:
- Look at the crash module (mozjs.dll) and the offset address (0x000000000037f9ba)
- Run the release version of the browser
- Fire up Visual studio and attach the debugger to the running browser
- Pause execution in the debugger (making sure it's paused in our code, not a system call)
- Look up the base address of the loaded module that crashed (in VS's modules pane) - This is needed because of ASLR.
- Use a hex calculator to find the exact address in the running browser (add offset to base)
- Jump to the address in the disassembly view. This will pinpoint the exact crash statement
- Usually I then use "go to source code" for an easier view without raw assembly.
This doesn't always work, especially not when it's something deep inside JS, dealing with garbage collection, or some exotic shenanigans in C++ or if the code in question has been optimized away by the compiler into a binary blob without direct references.
I hope that's clear!
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Off-topic:
Oh ok!
So let's say in the case of the most recent examples of these weird crashes that you managed to solve, was it some Mozilla code (which I assume what it is judging by the file name) that simply didn't play nice with PM or what kind of obscure problem?
Oh ok!
So let's say in the case of the most recent examples of these weird crashes that you managed to solve, was it some Mozilla code (which I assume what it is judging by the file name) that simply didn't play nice with PM or what kind of obscure problem?
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Not related to the topic, but I've just had another weird instant crash.
Faulting application name: palemoon.exe, version: 6.8.0.9517, time stamp: 0x6970a7ed
Faulting module name: mozjs.dll, version: 0.0.0.0, time stamp: 0x6970a979
Exception code: 0xc0000005
Fault offset: 0x00000000003b6e48
Faulting process id: 0x40D0
Faulting application start time: 0x1DC8EA6F7BA7F33
Faulting application path: C:\Program Files\Pale Moon\palemoon.exe
Faulting module path: C:\Program Files\Pale Moon\mozjs.dll
Report Id: 0f6217e9-8d24-4221-8ee3-8f57dd295908
Faulting package full name:
Faulting package-relative application ID:
Faulting application name: palemoon.exe, version: 6.8.0.9517, time stamp: 0x6970a7ed
Faulting module name: mozjs.dll, version: 0.0.0.0, time stamp: 0x6970a979
Exception code: 0xc0000005
Fault offset: 0x00000000003b6e48
Faulting process id: 0x40D0
Faulting application start time: 0x1DC8EA6F7BA7F33
Faulting application path: C:\Program Files\Pale Moon\palemoon.exe
Faulting module path: C:\Program Files\Pale Moon\mozjs.dll
Report Id: 0f6217e9-8d24-4221-8ee3-8f57dd295908
Faulting package full name:
Faulting package-relative application ID:
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
and another 
Faulting application name: palemoon.exe, version: 6.8.0.9517, time stamp: 0x6970a7ed
Faulting module name: xul.dll, version: 6.8.0.9517, time stamp: 0x6970a987
Exception code: 0xc0000005
Fault offset: 0x000000000087dc29
Faulting process id: 0x3F8C
Faulting application start time: 0x1DC8FA229B1BCC6
Faulting application path: C:\Program Files\Pale Moon\palemoon.exe
Faulting module path: C:\Program Files\Pale Moon\xul.dll
Report Id: 69a9d61f-d202-4f7b-8814-9a7cccbad4ca
Faulting package full name:
Faulting package-relative application ID:
Faulting application name: palemoon.exe, version: 6.8.0.9517, time stamp: 0x6970a7ed
Faulting module name: xul.dll, version: 6.8.0.9517, time stamp: 0x6970a987
Exception code: 0xc0000005
Fault offset: 0x000000000087dc29
Faulting process id: 0x3F8C
Faulting application start time: 0x1DC8FA229B1BCC6
Faulting application path: C:\Program Files\Pale Moon\palemoon.exe
Faulting module path: C:\Program Files\Pale Moon\xul.dll
Report Id: 69a9d61f-d202-4f7b-8814-9a7cccbad4ca
Faulting package full name:
Faulting package-relative application ID:
-
andyprough
- Board Warrior

- Posts: 1266
- Joined: 2020-05-31, 04:33
Re: Stored passwords wiped. AGAIN.
Maybe a bad memory stick??
Or has it been a long time since you cleaned the internal fans and changed thermal paste?
Or has it been a long time since you cleaned the internal fans and changed thermal paste?
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Ugh, what? No.
-
Bilbo47
- Lunatic

- Posts: 383
- Joined: 2017-11-18, 04:24
Re: Stored passwords wiped. AGAIN.
KeePass in particular, without any add-on, fills login fields only when the hotkey is pressed. One could test/prove this by ensuring KeePass is not running, then start PM, and visit a site that requires logging in whenever the browser was restarted. The site that works like that for me is PM forum. This would show how PM by itself works with auto-fill fields.
A different program KeePassXC works more tightly with FF forex while still not-being an add-on. Username field forex displays a KPCX icon, reminding user to first unlock the password vault so that password can be passed from vault to browser.
Other options like add-ons provide a bridge between the vault program and the browser, and they can further take over the browser's built-in auto-fill feature.
-
Moonchild
- Project founder

- Posts: 38821
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Stored passwords wiped. AGAIN.
If not related to the topic, please don't post in it.
If you're having crashes, you can also just report them on the issue tracker (don't lump them together if the crash signatures are different! in general one issue per crash if they are in different modules or at different offsets) or alternatively put them in their own thread on the forum.
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
I don't understand what are you telling me. I know how Keepass works, I've been using it for years.Bilbo47 wrote: ↑2026-01-28, 20:44KeePass in particular, without any add-on, fills login fields only when the hotkey is pressed. One could test/prove this by ensuring KeePass is not running, then start PM, and visit a site that requires logging in whenever the browser was restarted. The site that works like that for me is PM forum. This would show how PM by itself works with auto-fill fields.
A different program KeePassXC works more tightly with FF forex while still not-being an add-on. Username field forex displays a KPCX icon, reminding user to first unlock the password vault so that password can be passed from vault to browser.
Other options like add-ons provide a bridge between the vault program and the browser, and they can further take over the browser's built-in auto-fill feature.
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Where is the issue tracker though? I don't see any link on the main website. There is nothing in the FAQ section of the forums either.Moonchild wrote: ↑2026-01-29, 09:18If not related to the topic, please don't post in it.
If you're having crashes, you can also just report them on the issue tracker (don't lump them together if the crash signatures are different! in general one issue per crash if they are in different modules or at different offsets) or alternatively put them in their own thread on the forum.
-
jobbautista9
- Board Warrior

- Posts: 1136
- Joined: 2020-11-03, 06:47
- Location: Philippines
Re: Stored passwords wiped. AGAIN.
From the contact page:
Pale Moon feedback wrote: Please post in the public boards for any technical support questions, unconfirmed bugs or general feedback, taking care to use the board that best matches your type of question or feedback. If you have a security issue to report, please use the info found on this website in the standard .well-known/security.txt location. If you are reporting a confirmed bug for our developer community to look at, please go to https://repo.palemoon.org/ -- Front-end browser issues belong in MoonchildProductions/Pale-Moon, while the majority of issues dealing with everything else belong in our platform repo MoonchildProductions/UXP.

Tired of creating stuff!
Avatar artwork by Shinki669: https://www.pixiv.net/artworks/113645617
XUL add-ons developer. You can find a list of add-ons I manage at http://rw.rs/~job/software.html.
-
Mæstro
- Keeps coming back

- Posts: 908
- Joined: 2019-08-13, 00:30
- Location: Casumia
Re: Stored passwords wiped. AGAIN.
Swedish is specified with Sweden’s country code, presumably in contrast to Finland, but Dutch is not specified with Holland’s, as opposed to Belgium for Flemish. How curious…jobbautista9 wrote: ↑2026-01-30, 13:22info found on this website in the standard .well-known/security.txt location.
‘Life is a fever dream Mæstro would enjoy.’
‘How is your computer at 96°C and not on fire?’
All posts 100% organic. Ash is the best letter.
What is being nice online?
Debian 10 ELTS / Official PM build
‘How is your computer at 96°C and not on fire?’
All posts 100% organic. Ash is the best letter.
What is being nice online?
Debian 10 ELTS / Official PM build
-
andyprough
- Board Warrior

- Posts: 1266
- Joined: 2020-05-31, 04:33
Re: Stored passwords wiped. AGAIN.
I'm not sure what this response is supposed to communicate, but if I was having these kinds of crashes I'd want to make sure I'm not having memory issues or overheating. There are programs for all OS's that allow you to monitor CPU temperature and to test your memory sticks. And if you haven't cleaned your fans and changed your thermal paste for a long time, that can have a major impact on proper cooling.
-
Octopuss
- Lunatic

- Posts: 412
- Joined: 2021-02-19, 20:46
Re: Stored passwords wiped. AGAIN.
Tracker and posting in forums are two totally different things. I was thinking there was a Github page or something, but I guess it works completely differently with PM.jobbautista9 wrote: ↑2026-01-30, 13:22From the contact page:
Pale Moon feedback wrote: Please post in the public boards for any technical support questions, unconfirmed bugs or general feedback, taking care to use the board that best matches your type of question or feedback. If you have a security issue to report, please use the info found on this website in the standard .well-known/security.txt location. If you are reporting a confirmed bug for our developer community to look at, please go to https://repo.palemoon.org/ -- Front-end browser issues belong in MoonchildProductions/Pale-Moon, while the majority of issues dealing with everything else belong in our platform repo MoonchildProductions/UXP.
It's supposed to mean it's irrelevant. My PC is rock stable, which I know for a fact. If there were any such problems,I wouldn't get a (edit) just random occasional crashes with one specific program that doesn't do anything terribly specific.andyprough wrote: ↑2026-01-30, 15:47I'm not sure what this response is supposed to communicate, but if I was having these kinds of crashes I'd want to make sure I'm not having memory issues or overheating. There are programs for all OS's that allow you to monitor CPU temperature and to test your memory sticks. And if you haven't cleaned your fans and changed your thermal paste for a long time, that can have a major impact on proper cooling.
If I can pass 12 hours of multiple different stress tests, I think it's safe to assume the program itself (or in this case whatever inherited Firefox garbage or something) is the culprit.
But you do have a point this could be an indicator of a hardware problem under different circumstances.
Last edited by Octopuss on 2026-01-30, 16:48, edited 1 time in total.
-
Moonchild
- Project founder

- Posts: 38821
- Joined: 2011-08-28, 17:27
- Location: Sweden
Re: Stored passwords wiped. AGAIN.
Off-topic:
, and some might mistakenly think Slovenian too).
Primarily because I only really know Swedish as spoken in Sweden (not the other territories, like Finland where the variant is högsvenska), and have no trouble with Flemish or even South-African Dutch variants close to Afrikaans or literally any flavour of English, so it's all good (so not specified). And it tends to be clearer that it's Swedish if specifying the country code (which everyone knows) while "sv" might be mistaken for something else (country code for El Salvador, or Fips-10 for SvalbardMæstro wrote: ↑2026-01-30, 14:16Swedish is specified with Sweden’s country code, presumably in contrast to Finland, but Dutch is not specified with Holland’s, as opposed to Belgium for Flemish. How curious…jobbautista9 wrote: ↑2026-01-30, 13:22info found on this website in the standard .well-known/security.txt location.![]()
"There is no point in arguing with an idiot, because then you're both idiots." - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite
-
andyprough
- Board Warrior

- Posts: 1266
- Joined: 2020-05-31, 04:33
Re: Stored passwords wiped. AGAIN.
Sorry, I looked up your graphics card just now and that's recent vintage, I'm often talking to people with much older hardware on this forum but that's not you. I shouldn't have assumed you were using old equipment.Octopuss wrote: ↑2026-01-30, 16:04It's supposed to mean it's irrelevant. My PC is rock stable, which I know for a fact. If there were any such problems,I wouldn't get a (edit) just random occasional crashes with one specific program that doesn't do anything terribly specific.
If I can pass 12 hours of multiple different stress tests, I think it's safe to assume the program itself (or in this case whatever inherited Firefox garbage or something) is the culprit.
But you do have a point this could be an indicator of a hardware problem under different circumstances.
Are you using antivirus of any sort? I see that those programs are sometimes implicated in similar application crashes. For example in the discussion of this report of Chrome crashing on Windows: https://learn.microsoft.com/en-us/answe ... correctly-(0xc