Showing questions tagged: Show all questions

downloading a file from an insecure source

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as p… (read more)

We have an electronic document management system in our company. The system is an internal system without access to the LAN. Firefox detects files downloaded from it as potentially dangerous after the last update. Is there a way to prevent files from this website from being detected as potentially dangerous?

Asked by Konrad Dymczuk Prieš 2 savaites

Last reply by zeroknight Prieš 2 savaites

White screen in Firefox

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but … (read more)

There are a few websites (e.g., https://thehermitagehotel.com/) that show up as a white screen (see attached) when I visit them from Firefox using my usual settings, but show up correctly if I use Firefox in private browsing mode. Turning off enhanced tracking protection does not resolve the problem. My browser privacy in Settings is set to "Custom" with everything checked, but changing to Standard and reloading the site does not fix the issue. As I noted above, the only thing that works is to open the site in private browsing mode. Most sites work fine. This problem is limited to 2-3 websites. My version of Firefox is 125.0.1 .

Asked by ellad.tadmor Prieš 4 dienas

Last reply by cor-el Prieš 4 dienas

You've compromised the passwords yourself

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently -… (read more)

Hi Every single one of my passwords is compromised according to you. Therefore I think the data breach is with Firefox . I have set up several unique passwords recently - how are they breached so soon? And why every single one. It is very suspicious. Regards Caroline

Asked by cazzyguy Prieš 1 savaitę

Last reply by jscher2000 - Support Volunteer Prieš 1 savaitę

Wyłączenie blokady reklam

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś … (read more)

Dzień dobry, W mojej przeglądarce chciałabym skorzystać z czatu GPT, ale pojawia się komunikat, że żeby skorzystać muszę wyłączyć blokadę reklam. Szukałam takiego czegoś w ustawieniach i firefox support, ale nie znalazłam nic co by pomogło w wyłączeniu blokady reklam. Czy mógłby mi ktoś pomóc i pokierować jak mogłabym wyłączyć blokadę reklam? Jeśli tak, byłabym wdzięczna.

Proszę o szybką odpowiedź

Pozdrawiam Lena Cieślak

Asked by Lena Cieślak Prieš 2 savaites

Last reply by cor-el Prieš 2 savaites

Firefox is blocking my own website

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox. … (read more)

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox.

Asked by joyce.fitch Prieš 5 dienas

Last reply by cor-el Prieš 5 dienas

recover passwords file

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue. now, … (read more)

Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue.

now, i created an admin windows account get access to my old user files, found the bookmarks file. the only thing left for me now is the passwords file.i did not a Firefox online account before today

the only way currently if i did not solve the wind10 login issue is the find the passwords file physically just like i did with the bookmarks file.


can anyone help with this ??


thanks

Asked by OMVW Prieš 1 savaitę

Last reply by cor-el Prieš 1 savaitę

whatsapp privacy

So Mozilla supports privacy rights- and I've supported Mozilla for that reason- but they want Whatsapp to be censored for "misinformation" ? How does that go togeth… (read more)

So Mozilla supports privacy rights- and I've supported Mozilla for that reason- but they want Whatsapp to be censored for "misinformation" ? How does that go together? Whatsapp was supposed to be encrypted and not even Whatsapp was supposed to know the content of messages. How would they know about misinformation? And how do they get to decide what's misinformation now?

Asked by Elke's Firefox Prieš 1 savaitę

Last reply by TyDraniu Prieš 1 savaitę

What and where is my Security Key and how do I touch it?

Please see the attached image. Firefox believes I have a security key. What is a security key? Where do I find it? Why does Firefox think I have one? And why is the… (read more)

Please see the attached image.

Firefox believes I have a security key.

What is a security key? Where do I find it? Why does Firefox think I have one?

And why is there no helpful information to explain this confusing UX?

Asked by kurrent93 Prieš 2 savaites

Last reply by zeroknight Prieš 2 savaites

Usernames

When logging into an account there are multiple usernames (incorrect or older.) I would like to remove or delete them, but keep the current passwords. Is that possible … (read more)

When logging into an account there are multiple usernames (incorrect or older.) I would like to remove or delete them, but keep the current passwords.

Is that possible without deleting the account?

Thank you, rldelahay

Asked by Regina Prieš 3 dienas

Last reply by cor-el Prieš 2 dienas

I want to write an addon firewall but it fails

#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (read more)

#!/bin/bash

# Verzeichnis erstellen
mkdir FoxyAddOnFirewall
cd FoxyAddOnFirewall || exit

# package.json erstellen
cat <<EOF > package.json
{
  "title": "Foxy AddOn Firewall",
  "name": "foxy-addon-firewall",
  "description": "A Firefox addon to control internet access for other addons",
  "author": "Your Name",
  "version": "1.0.0",
  "license": "MIT"
}
EOF

# background.js erstellen
cat <<EOF > background.js
var permissionManager = Components.classes["@mozilla.org/permissionmanager;1"]
                        .getService(Components.interfaces.nsIPermissionManager);

// Addon-Liste abrufen
function getAllAddons() {
    var {AddonManager} = Components.utils.import("resource://gre/modules/AddonManager.jsm", {});
    return new Promise(function(resolve, reject) {
        AddonManager.getAllAddons(function(addons) {
            resolve(addons);
        });
    });
}

// GUI aktualisieren
function updateUI() {
    getAllAddons().then(function(addons) {
        var addonList = document.getElementById("addon-list");
        addonList.innerHTML = ""; // Zurücksetzen der Liste

        addons.forEach(function(addon) {
            var listItem = document.createElement("li");
            listItem.textContent = addon.name;
            
            var blockButton = document.createElement("button");
            blockButton.textContent = "Block";
            blockButton.addEventListener("click", function() {
                blockInternetAccessForAddon(addon);
            });

            listItem.appendChild(blockButton);
            addonList.appendChild(listItem);
        });
    });
}

// Internetzugriff für ein bestimmtes Addon blockieren
function blockInternetAccessForAddon(addon) {
    var host = addon.getResourceURI("").host;
    permissionManager.remove(host, "allAccess");
    console.log("Internetzugriff für " + addon.name + " wurde blockiert.");
}

document.addEventListener("DOMContentLoaded", function() {
    updateUI(); // GUI beim Laden der Seite aktualisieren
});
EOF

# index.html erstellen
cat <<EOF > index.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Foxy AddOn Firewall</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <h1>Foxy AddOn Firewall</h1>
  <p>Welcome to Foxy AddOn Firewall!</p>

  <h2>Installed Addons:</h2>
  <ul id="addon-list">
    <!-- Addon-Liste wird hier eingefügt -->
  </ul>

  <script src="background.js"></script>
</body>
</html>
EOF

# style.css erstellen
cat <<EOF > style.css
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  text-align: center;
}

h1 {
  color: #007bff;
}

h2 {
  margin-top: 20px;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
EOF

# manifest.json erstellen
cat <<EOF > manifest.json
{
  "manifest_version": 2,
  "name": "Foxy AddOn Firewall",
  "version": "1.0",
  "description": "A Firefox addon to control internet access for other addons",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "management"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icon.png"
  }
}
EOF

# Icon herunterladen
wget -O icon.png "https://img.icons8.com/ios-filled/50/000000/firewall.png"

# Installationsanweisungen anzeigen
echo "FoxyAddOnFirewall wurde erfolgreich initialisiert!"
echo "Um das Addon in Firefox zu installieren:"
echo "1. Öffnen Sie Firefox und geben Sie 'about:debugging' in die Adressleiste ein."
echo "2. Klicken Sie auf 'Dieses Firefox installieren' unter 'Temporäre Add-ons laden'."
echo "3. Navigieren Sie zum Verzeichnis 'FoxyAddOnFirewall' und wählen Sie die 'manifest.json' Datei aus."
echo "4. Das Addon wird nun installiert und kann verwendet werden."

Asked by j.sobiech Prieš 1 savaitę

Last reply by jscher2000 - Support Volunteer Prieš 1 savaitę

How can i update my Mozilla Firefox

I trust this message finds you well. I am currently using Mozilla Firefox as my preferred web browser and I'm interested in ensuring that I have the latest version instal… (read more)

I trust this message finds you well. I am currently using Mozilla Firefox as my preferred web browser and I'm interested in ensuring that I have the latest version installed for optimal performance and security.

Could you provide a step-by-step guide on how to update Mozilla Firefox to the latest version? I'm curious about the frequency of updates and whether the process varies for different operating systems I'm using windows.

Additionally, I'd like to understand if there are any precautions I should take before initiating the update, such as saving bookmarks or ensuring compatibility with installed extensions.

Furthermore, are there any notable features or improvements in the latest version that I should be aware of? I want to make the most of the browser's capabilities and stay informed about any enhancements.

Thank you in advance for your assistance. I appreciate your expertise in guiding me through the Firefox update process.

Best regards,

Asked by Karla withak Prieš 5 mėnesius

Last reply by Paul Prieš 4 mėnesius

Unlocking about:config Minimum TLS Preference

I need to edit minimum TLS version in order to remotely manage order device that use TLS 1.0. I'm using FireFox 102 and the security.tls.version.min is grayed out and I c… (read more)

I need to edit minimum TLS version in order to remotely manage order device that use TLS 1.0. I'm using FireFox 102 and the security.tls.version.min is grayed out and I cannot edit.

Asked by rilo Prieš 3 mėnesius

Last reply by cor-el Prieš 3 mėnesius

Stop Google "Sign-in" Pop-ups

Since pretty much the beginning of the internet, pop-ups were deemed a significant annoyance, so much so it diminished and ruined the users’ browsing experience and signi… (read more)

Since pretty much the beginning of the internet, pop-ups were deemed a significant annoyance, so much so it diminished and ruined the users’ browsing experience and significantly reduced efficiencies. Hence the addition of pop-up blocking settings to all browsers long ago.

However, for some unknown reason Firefox gives Google a free pass and allows their “sign-in” pop-up that pop-ups seemingly on every website you visit where you then have to then manually close the pop-up on pretty much every single website you visit - even though you have the pop-up blocker setting on ( and the only way to turn off a pop-up blocker is to specifically add a website to allow for pop-ups).

This is absolutely horrible and not acceptable. If you have the pop-up setting on, no pop-up should be allowed to get through no matter what it is or the source. If you allow one pop-up to continue then you should be allowing hundreds of thousands of other pop-ups as well. But you wouldn’t as you know this would be unacceptable, but again, somehow Firefox allows Google’s pop-up to go through and it pop-ups on pretty much every single website you visit.

Note that I selected Privacy and Security Setting as the "topic" above as that is were Firefox has it's pop-up setting (and where you can add exceptions to allow pop-ups for specific websites)

Asked by mg123 Prieš 6 mėnesius

Last reply by zeroknight Prieš 5 mėnesius

can't add certificate

hi, well I deleted and distrusted a certificate. now I'm trying to import the same certificate but it doesn't work. when i add the certificate i does not show anything on… (read more)

hi, well I deleted and distrusted a certificate. now I'm trying to import the same certificate but it doesn't work. when i add the certificate i does not show anything on the certs list.

Asked by baharhosseini7698 Prieš 5 mėnesius

Last reply by cor-el Prieš 5 mėnesius

Intermittent Master Password Recognition Issue with External Keyboard on Firefox for Ubuntu

Hello, I've encountered a recurring issue with Firefox on Ubuntu where my master password is sporadically not recognized when typed using my external wireless keyboard. … (read more)

Hello,

I've encountered a recurring issue with Firefox on Ubuntu where my master password is sporadically not recognized when typed using my external wireless keyboard. This problem does not occur consistently but is particularly frustrating when it does, as it forces me to switch to my laptop's keyboard for input. I'm certain the password is entered correctly; after multiple careful attempts (3-5 times), the issue persists, leading to unnecessary stress and inconvenience.

    • Environment:**

- **Operating System:** Latest version of Ubuntu - **Hardware:** Dell Latitude laptop with a Contour external wireless keyboard, connected through a Dell docking station. This setup is shared with another laptop (HP) via the docking station.

    • Observations:**

- The issue seems to occur sporadically and is not reproducible on demand, adding to the frustration. - It has happened notably on the first login attempt after the computer's first boot of the day. - On one occasion, the problem led me to change my master password under the mistaken belief it had been compromised.

    • Impact:**

This intermittent recognition issue disrupts my workflow and significantly affects my user experience with Firefox. The necessity to switch input methods and the initial misinterpretation of the problem as a security concern are particularly concerning.

I hope this detailed feedback assists in identifying and resolving the issue. Thank you for your attention to this matter Firefox.

Sincerely, Daniel

Asked by Daniel Prieš 2 mėnesius

Last reply by cor-el Prieš 2 mėnesius