Zobrazenie otázok označených: Zobraziť všetky otázky

Primary pass work

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would … (ďalšie informácie)

I tried to delete my primary password online, but system would not allow me to do so. I have exhausted all avenues to seek help, but to no avail. Any assistance would be greatly appreciated. Tmg3842@yahoo.com

Otázku položil(a) tmg3842 Pred 6 dňami

Posledná odpoveď od cor-el Pred 6 dňami

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… (ďalšie informácie)

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?

Otázku položil(a) Konrad Dymczuk Pred 6 dňami

Posledná odpoveď od zeroknight Pred 6 dňami

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ś … (ďalšie informácie)

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

Otázku položil(a) Lena Cieślak Pred 1 týždňom

Posledná odpoveď od cor-el Pred 1 týždňom

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… (ďalšie informácie)

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?

Otázku položil(a) Elke's Firefox Pred 4 dňami

Posledná odpoveď od TyDraniu Pred 4 dňami

Username data field

While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved. I navig… (ďalšie informácie)

While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved.

I navigated to an entirely new site the other day and it requested a username and password. When the cursor was in the Username field, a set of proposed entries showed up. These were all (recognizable) first names - not emails. When I checked the Privacy and Security settings, I couldn't find any of the names in stored data. While this may be just cached entries for similar fields ("username" or "name" etc...), the list I saw was heavily curated. One of the names I don't ever recall even entering in any name field (and wouldn't have been used for any login) - but even if I had, the list that I saw was far from exhaustive and would only have been a very specific subset of any data I would have entered into any "name" or "username" field.

Is there somewhere I can find how that list was generated?

Thank you,

Otázku položil(a) nikolai42 Pred 4 hodinami

Posledná odpoveď od jscher2000 - Support Volunteer Pred 2 hodinami

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… (ďalšie informácie)

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?

Otázku položil(a) kurrent93 Pred 1 týždňom

Posledná odpoveď od zeroknight Pred 1 týždňom

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": "… (ďalšie informácie)

  1. !/bin/bash
  1. Verzeichnis erstellen

mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit

  1. 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

  1. 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

  1. index.html erstellen

cat <<EOF > index.html <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">

Foxy AddOn Firewall

Welcome to Foxy AddOn Firewall!

Installed Addons:

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

  1. 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

  1. 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

  1. Icon herunterladen

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

  1. 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."

Otázku položil(a) j.sobiech Pred 1 hodinou

Posledná odpoveď od jscher2000 - Support Volunteer Pred 54 minútami

Recent issue viewing my Shopify site

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have thi… (ďalšie informácie)

Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have this issue on Safari, or on Firefox when I open a private browsing window. It is something to do with Firefox, but I don't want to have to open a private window every time I go to my store. Is there a solution? This has only been happening for the last few days. Thanks

Otázku položil(a) leslie.day Pred 6 dňami

Posledná odpoveď od zeroknight Pred 6 dňami

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 -… (ďalšie informácie)

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

Otázku položil(a) cazzyguy Pred 5 dňami

Posledná odpoveď od jscher2000 - Support Volunteer Pred 5 dňami

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… (ďalšie informácie)

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,

Otázku položil(a) Karla withak Pred 5 mesiacmi

Posledná odpoveď od Paul Pred 4 mesiacmi

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… (ďalšie informácie)

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.

Otázku položil(a) rilo Pred 3 mesiacmi

Posledná odpoveď od cor-el Pred 3 mesiacmi

Logins and password losts

My profile is not able to recover saved password. Logins.json file copied in the new profile but password not visible. In the default profile logins.json.corrupt appeared… (ďalšie informácie)

My profile is not able to recover saved password. Logins.json file copied in the new profile but password not visible. In the default profile logins.json.corrupt appeared. I am looking for a procedure to recover information in corrupted profile. Can you help?

Otázku položil(a) Testone99 Pred 3 mesiacmi

Posledná odpoveď od cor-el Pred 3 mesiacmi

Decryption tool for passwords in Firefox

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software th… (ďalšie informácie)

Back in November 2023 I had the misfortune of a software engineer not doing his job correctly and he reinstalled the OS on my laptop instead of repairing some software that wasn't functioning correctly. Mercifully, I have had Microsoft support working on recovering my data, which has proved a tremendous task. 4 months and counting.


We have now finally managed to recover my passwords for my browsers, but they are encrypted. Microsoft Support have therefore asked if Mozilla do a decryption tool as they cannot open the file without it being decrypted first. If I was using Microsoft Edge, they would have been able to assist as that is a Microsoft product, but as Firefox is a third party application, they've asked for assistance. By the way, these are NOT scammers or hackers 'helping' me, but Microsoft support and I get everything emailed about our support etc.

Thanks in advance.

Otázku položil(a) darrenallen73 Pred 1 mesiacom

Posledná odpoveď od TechHorse Pred 2 dňami