Showing questions tagged:

Security Concerns: Saved forms (across VMs) and password (after clearing all history).

v155.9.1esr Debian 12 I'm testing different Debian 12 on multiple VMs, it came to my surprise to see that my VPN hash I used on a website the day before was saved by Fire… (மேலும் படிக்க)

v155.9.1esr Debian 12

I'm testing different Debian 12 on multiple VMs, it came to my surprise to see that my VPN hash I used on a website the day before was saved by Firefox on the new VM.

The Sync was on but then which one saved my form (hash)?

  1. Numbered list item Logins & Passwords ? note: The hash was not a login but a form. If Firefox saves all the form, you should explicitly rename Logins by any forms/inputs.
  2. Numbered list item History? note: I hope this is only URLs.

If Firefox is savings "forms" (input fields) not just "logins" then it should be explicitly written. Is it an expected behavior?

தீர்வுற்றது Archived 2 214

Delete an account with a lot of personal information on there

I'm encountering some difficulties with my current account, which is locked out. I would like to request assistance from the support team to help me delete my account and… (மேலும் படிக்க)

I'm encountering some difficulties with my current account, which is locked out. I would like to request assistance from the support team to help me delete my account and remove my personal information from the platform. However, I'm having trouble finding the contact information for the support team. I couldn't locate their email address or phone number, and I'm hesitant to post my personal email address and information on a public forum.

I'm feeling quite frustrated, as I've never encountered such challenges with an app before. It appears that I'm unable to reach the Firefox support team at the moment. Can someone please provide guidance on how I can securely and privately request their assistance in deleting my account and personal information?

I had to create a new account just to post this question because my original account got locked out. This happened because I recently acquired a new phone and didn't transfer the two-step authentication information to my new device.

தீர்வுற்றது Archived 7 212

Cannot access Ralph's coupons

I cannot access grocery coupons from Ralphs Market. When I try, I receive the message: Secure Connection Failed An error occurred during a connection to www.ralphs.com.… (மேலும் படிக்க)

I cannot access grocery coupons from Ralphs Market. When I try, I receive the message: Secure Connection Failed

An error occurred during a connection to www.ralphs.com. The page you are trying to view cannot be shown because the authenticity of the received data could not be verified. Please contact the website owners to inform them of this problem.

தீர்வுற்றது Locked Archived 3 206

What information is shared with sidebar chat AI provider?

The page https://support.mozilla.org/en-US/kb/ai-chatbot lacks the list of data shared with the chatbot AI providers. It would be nice to know how it is done, how to revi… (மேலும் படிக்க)

The page https://support.mozilla.org/en-US/kb/ai-chatbot lacks the list of data shared with the chatbot AI providers. It would be nice to know how it is done, how to review the data, and how pages can provide better data.

தீர்வுற்றது Archived 6 203

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware. Is this something I should make exceptions for? Or is it ris… (மேலும் படிக்க)

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware. Is this something I should make exceptions for? Or is it riskware. I'm running Win 11

தீர்வுற்றது Archived 4 201

Firefox says I am forbidden to enter a site

Firefox periodically says I am "forbidden" to enter my Kaiser website (KP.org). I know what Mozilla recommends as a fix, which is to clear data and cookies. But this crea… (மேலும் படிக்க)

Firefox periodically says I am "forbidden" to enter my Kaiser website (KP.org). I know what Mozilla recommends as a fix, which is to clear data and cookies. But this creates more problems because I have to re-enter passwords and other settings. This is a problem Mozilla's website reports has been occurring for YEARS! Why can't Mozilla/Firefox fix this? Please tell me there is a better way to fix this problem.

David Karp dkarpcal@gmail.com or cloverdavid@gmail.com

தீர்வுற்றது Archived 3 191

trr domains

Hi, I would like to know which version of Mozilla used this setting of network.trr.excluded-domains: 'sbl-xbl[.]spamhaus[.]org, localhost.that.never.exists'. The default … (மேலும் படிக்க)

Hi, I would like to know which version of Mozilla used this setting of network.trr.excluded-domains: 'sbl-xbl[.]spamhaus[.]org, localhost.that.never.exists'. The default is 'undefined' as I checked in 127.0.1 and the older 124. I also contacted support of extensions that I used, no evidence of both excluded domains. Can anyone help me? Thanks a lot \!o!/

தீர்வுற்றது Archived 1 184

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user pr… (மேலும் படிக்க)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

தீர்வுற்றது Archived 2 184

Firefox Privacy Enhanced Mode inadvertently blocking OneTrust privacy software domains

We use a privacy technology vendor named OneTrust to power much of our privacy infrastructure. This morning, two websites reported Firefox users are encountering site fun… (மேலும் படிக்க)

We use a privacy technology vendor named OneTrust to power much of our privacy infrastructure.

This morning, two websites reported Firefox users are encountering site functionality problems when trying to exercise their privacy rights, such as opting out of sharing data and targeted advertising. My team investigated and was able to reproduce the reported bug.

We discovered the cause of the bug is that Firefox's Privacy Enhanced Mode is by default blocking two domains from our privacy vendor OneTrust which are critical to the functioning of our CMP (Consent Management Platform): - cookielaw.org - onetrust.com

These two domains are used solely for the essential services needed to run our privacy software. They're not used for marketing, sales, or advertising. Blocking them not only causes site functionality issues it keeps our users from being able to exercise their privacy rights.

I've attached two screenshots here showing the network calls and domains.

Can Mozilla please quickly review this bug and remove these two domains from the blocklist powering Privacy Enhanced Mode?

தீர்வுற்றது Archived 2 182

Google Fi Microphone Permissions

Hi, I'm wondering if anyone can help me here. I use Google Fi to make and receive calls from my browser. I accidentally denied microphone permissions to Google Fi from th… (மேலும் படிக்க)

Hi,

I'm wondering if anyone can help me here. I use Google Fi to make and receive calls from my browser. I accidentally denied microphone permissions to Google Fi from the Firefox dropdown prompt and I cannot find how to get it back.

When I click the dropdown menu, I see no options to enable or disable permissions. I also do not see anything listed in the Security settings of the browser. When I check the google fi settings, I see it complaining about denied permissions though.

I've attached screenshots. Does anyone know where I can revoke the blocked permissions?

Thanks,

தீர்வுற்றது Archived 1 178

Access to Website Being Denied: Brute Force Bot Was Blocked

When using Firefox (latest) and attempting to login into a website I get an error (see attached image) generated by the host's server's firewall. It appears it thinks I'm… (மேலும் படிக்க)

When using Firefox (latest) and attempting to login into a website I get an error (see attached image) generated by the host's server's firewall. It appears it thinks I'm a bot. When I use Firefox's privacy mode I don't get this error. I would prefer not to use privacy mode. I contacted the administrator of the website I'm attempting to access and he couldn't offer any help.

When I use Google Chrome browser I don't encounter the above problem. This leads me to believe it's not an issue with my Avast Anti-Tracking and Antivirus settings.

Any help would be appreciated.

Chrys

தீர்வுற்றது Archived 2 177

Correct syntax for privacy.fingerprintingProtection.granularOverrides?

Hello, I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites b… (மேலும் படிக்க)

Hello,

I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites by setting privacy.fingerprintingProtection to "true" and entering "+JSDateTimeUTC" in privacy.fingerprintingProtection.overrides in about:config.

Now according to docs, privacy.fingerprintingProtection.granularOverrides "can be used to add or remove features on a domain granular level if privacy.fingerprintingProtection is enabled," but I can't figure out how to get it working.

Any input is appreciated.

தீர்வுற்றது Archived 2 176

Still getting Newsletter Emails after unsubscribing

I have unsubscribed from all newsletter after receiving the first email but days later I'm still getting emails from Firefox (e.g. Superpower #4: See if your info has bee… (மேலும் படிக்க)

I have unsubscribed from all newsletter after receiving the first email but days later I'm still getting emails from Firefox (e.g. Superpower #4: See if your info has been leaked).

This is an incredibly bad user experience and to my knowledge illegal in the EU.

I'm probably still within that journey but the journey should terminate the moment I clicked unsubscribed.

தீர்வுற்றது Locked Archived 5 174

Save one autofill entry for usernames across all sites?

I have a unique annoyance wherein I use a considerably long email address for many sites. I've gotten tired of typing it out whenever it comes up and wish for it to be pr… (மேலும் படிக்க)

I have a unique annoyance wherein I use a considerably long email address for many sites. I've gotten tired of typing it out whenever it comes up and wish for it to be preserved as an autofill across all sites so I no longer have to, similar to how your phone may suggest your email address in autocomplete.

Unfortunately, as far as I can tell, you can only manually add autofills for specific sites and with password attached. So my question is, is there a way to make the address be a suggested autofill on username/email address boxes across all sites?

(not interested in having form history saved, just want this one specific form entry)

தீர்வுற்றது Archived 4 171

refresh/reload feature needs to be changed

Lately I've had to reload/refresh pages more frequently because of download issues. In order to the in FF I need to press the F5 key. To do the same thing in either Edge … (மேலும் படிக்க)

Lately I've had to reload/refresh pages more frequently because of download issues. In order to the in FF I need to press the F5 key. To do the same thing in either Edge or Chrome all I need to do is right click and a little popup screen shows me the reload/refresh right there. Much more convenient to use. FF should use a similar technique.

தீர்வுற்றது Archived 2 171

Exceptions reset after Firefox update

Firefox removes the exceptions after every update and they have to be manually re-added. This is a very frustrating user experience. Can you please help me identify if th… (மேலும் படிக்க)

Firefox removes the exceptions after every update and they have to be manually re-added. This is a very frustrating user experience. Can you please help me identify if this is an issue with Firefox that can be updated or is it an issue with some setting I have setup.

Exceptions that get reset - Cookies and Site Data, Pop-ups, Add-ons, etc.

Permissions that get reset - All of them Location, Camera, Microphone, etc.

  • Side note, the Troubleshooting Information section below has a link to share data, that link does not open in a new window. It opened in this same window, erasing all the content I had typed up the first time.
தீர்வுற்றது Archived 3 161

How do I receive audible notifications on on my Macbook Pro of a new substitute teaching job offer from Frontline Education.com?

Currently I must sign on to Frontline Education to see if there are any new substitute teaching job offers available 24/7. I would like to receive audible notifications … (மேலும் படிக்க)

Currently I must sign on to Frontline Education to see if there are any new substitute teaching job offers available 24/7. I would like to receive audible notifications on my Macbook Pro or Apple ipad or Apple iphone to alert me to a new job offer so that I can then go to my device and look at the job offer. Thank you. John Marshall

தீர்வுற்றது Archived 2 160

Why Firefox labels Paypal as an unsafe site.

I've posted before but no answer as to why Firefox labels Paypal as an unsafe site. I don't know where to change settings to allow it without the warning. I've just ign… (மேலும் படிக்க)

I've posted before but no answer as to why Firefox labels Paypal as an unsafe site. I don't know where to change settings to allow it without the warning. I've just ignored the warning and continued but it is annoying.

தீர்வுற்றது Archived 14 160