Firefox complementos deshabilitados en masa por un certificado caducado

Colapsar
X
 
  • Filtrar
  • Tiempo
  • Mostrar
Limpiar Todo
nuevos mensajes
  • noSign
    Super Moderator
    • Dec
    • 4151

    Firefox complementos deshabilitados en masa por un certificado caducado

    Un certificado caducado en Firefox, deshabilita los complementos para millones de usuarios, y también evita en los usuarios la re-activación o (re) instalación de extensiones.
    https://www.zdnet.com/article/firefo...ificate-issue/
    Editado por última vez por noSign; 04/05/2019, 10:45:08.
  • Luismi
    Senior Member
    • Dec
    • 329

    #2
    Si, a mi me ha desactivado el traductor Traslator
    Saludos
    Luis Miguel

    Comentario

    • noSign
      Super Moderator
      • Dec
      • 4151

      #3
      1) about:config y buscamos la cadena devtools.chrome.enabled y lo ponemos en true.

      2) Pulsando CTRL+SHIF+J abrimos el modo consola y metemos esto exactamente:

      // Re-enable all extensions 

      async function set_addons_as_signed() {
      Components.utils.import("resource://gre/modules/addons/XPIDatabase.jsm");
      Components.utils.import("resource://gre/modules/AddonManager.jsm");
      let addons = await XPIDatabase.getAddonList(a => true);

      for (let addon of addons) {
      // The add-on might have vanished, we'll catch that on the next startup
      if (!addon._sourceBundle.exists())
      continue;

       if( addon.signedState != AddonManager.SIGNEDSTATE_UNKNOWN )
      continue;

      addon.signedState = AddonManager.SIGNEDSTATE_NOT_REQUIRED;
      AddonManagerPrivate.callAddonListeners("onProperty Changed", 
      addon.wrapper,
      ["signedState"]);
      await XPIDatabase.updateAddonDisabledState(addon);
      }
      XPIDatabase.saveChanges();
      }

      set_addons_as_signed();




      Hasta que lo solucionen habrá que hacerlo diariamente.
      Editado por última vez por noSign; 04/05/2019, 15:03:35.

      Comentario

      • Luismi
        Senior Member
        • Dec
        • 329

        #4
        A ver si lo solucionan, por que es un coñazo tener que hacerlo diariamente
        Saludos
        Luis Miguel

        Comentario

        • jmtella
          Administrator
          • Nov
          • 19902

          #5
          Incluso pasa en el Firefox de TOR...

          Comentario

          • jmtella
            Administrator
            • Nov
            • 19902

            #6
            Update: Mozilla is now rolling out a fix for the issue affecting add-ons to release, beta, and nightly users on desktop and should automatically be applied to Firefox in the next few hours. However, it relies upon remaining opted into "Studies" found in the Firefox preferences under Privacy & Security > FireFox Data Collection and Use and making sure that Allow Firefox to install and run studies is enabled in addition to Allow Firefox to send technical and interaction data to Mozilla. These options can be disabled after the fix has been applied.

            In the meantime, Mozilla is still working on a general fix that does not rely on the above configuration.

            Comentario

            • noSign
              Super Moderator
              • Dec
              • 4151

              #7
              Firefox: Solución para los complementos deshabilitados

              Mozilla has provided a preliminary update that will create a new intermediate certificate with the same name / key but an updated validity period.
              Mozilla continues to work to solve the problem completely.

              Download: Currently not suitable for the ESR versions

              https://storage.googleapis.com/moz-f...0.2-signed.xpi

              Fuente.:
              https://www.deskmodder.de/blog/2019/...katsproblemen/

              Comentario

              • Luismi
                Senior Member
                • Dec
                • 329

                #8
                Ya me dejo volver a instalar el traductor Translator
                Saludos
                Luis Miguel

                Comentario

                • Waldin
                  Senior Member
                  • Jul
                  • 1034

                  #9
                  Originalmente publicado por noSign Ver Mensaje
                  Firefox: Solución para los complementos deshabilitados

                  Mozilla has provided a preliminary update that will create a new intermediate certificate with the same name / key but an updated validity period.
                  Mozilla continues to work to solve the problem completely.

                  Download: Currently not suitable for the ESR versions

                  https://storage.googleapis.com/moz-f...0.2-signed.xpi

                  Fuente.:
                  https://www.deskmodder.de/blog/2019/...katsproblemen/
                  Gracias :-)

                  Comentario

                  Trabajando...
                  X