forked from xombra/iceweasel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefs.js
151 lines (100 loc) · 4.38 KB
/
prefs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// prefs.js
// Pagina de Inicio
pref("browser.startup.homepage", "http://xombra.com");
// Activar y desactivar Plugin (Flash y Java)
// Es bueno desactivarlo en equipos con menos de 512 RAM |
// Además le da un poco mas de seguridad sin importar el tamaño de
// RAM que se posea
pref("plugin.state.flash",0);
pref("plugin.state.java",0);
// animación al descargar:
// Opcion recomendada desactivarlo en equipos con menos de 512 RAM
pref("browser.download.animateNotifications",false);
// Activar por default la navegación privada
pref("browser.privatebrowsing.autostart",true);
// Activar por default Borrar todo el historial el usuario tendra todas las opciones tildadas:
pref("privacy.cpd.cache", true);
pref("privacy.cpd.downloads", true);
pref("privacy.cpd.cookies", true);
pref("privacy.cpd.formdata", true);
pref("privacy.cpd.offlineApps", true);
pref("privacy.cpd.passwords", true);
pref("privacy.cpd.siteSettings", true);
pref("privacy.cpd.sessions", true);
pref("privacy.cpd.siteSettings", true);
pref("privacy.cpd.history", true);
// Para limpiar cuando se cierre el navegador:
pref("privacy.clearOnShutdown.cache", true);
pref("privacy.clearOnShutdown.cookies",true);
pref("privacy.clearOnShutdown.downloads",true);
pref("privacy.clearOnShutdown.formdata",true);
pref("privacy.clearOnShutdown.history",true);
pref("privacy.clearOnShutdown.offlineApps",true);
pref("privacy.clearOnShutdown.passwords",true);
pref("privacy.clearOnShutdown.sessions", true);
pref("privacy.clearOnShutdown.siteSettings",true);
pref("privacy.sanitize.sanitizeOnShutdown",true);
// Rechazar pop-up
pref("privacy.popups.policy", 1);
pref("dom.disable_open_during_load", true);
pref("browser.popups.showPopupBlocker", true);
// Evitar que almacene y/o recuerde data de formularios:
pref("signon.rememberSignons", false);
pref("signon.autofillForms", false);
pref("services.sync.prefs.sync.signon.rememberSignons",false)
// Dar un toque más de seguridad (evita posibles malware... aunque no definitivo)
pref("browser.safebrowsing.malware.enabled",true);
pref("browser.safebrowsing.enabled",true);
// Maxima de DNS cache
pref("network.dnsCacheEntries",400);
// Número máximo de segundos para almacenar en caché las entradas DNS.
pref("network.dnsCacheExpiration",240);
pref("network.dnsCacheExpirationGracePeriod",240);
// Habilita el cache
pref("network.http.use-cache",true);
// habilitar el link prefetching
pref("network.prefetch-next",true);
// No permitir el tracking
pref("privacy.donottrackheader.enabled",true);
pref("privacy.trackingprotection.enabled",true);
pref("privacy.donottrackheader.value", 1);
// Evitar que Iceweaserl muestre los PDF
pref("PDFjs.disable",true);
user_pref("plugin.disable_full_page_plugin_for_types", "application/pdf");
// Hacemos que el navegador autodetecte configuracion de la redes
pref("network.proxy.type",5);
// Buscador por default
pref("browser.search.defaultenginename","DuckDuckGo");
user_pref("browser.search.selectedEngine","DuckDuckGo");
pref("keyword.URL","https://duckduckgo.com/?t=lm&q=");
pref("browser.search.hiddenOneOffs","DuckDuckGo,Startpage");
//Determina la forma en que se aceptaran las cookies en dos solo acepta sesion actual
user_pref("network.cookie.lifetimePolicy",2);
// Mejora en Velocidad de peticion
pref("network.http.pipelining",true);
pref("network.http.proxy.pipelining",true);
pref("network.http.pipelining.maxrequests",32);
// Mejora Seguridad
pref("network.http.pipelining.ssl",true);
pref("network.http.proxy.pipelining",true);
// se evita filtrar tu verdadera dirección IP
pref("media.peerconnection.enabled", false);
pref("media.peerconnection.use_document_iceservers", false);
// Desactivar Pocket
pref("browser.pocket.api", "");
pref("browser.pocket.enabled", false);
pref("browser.pocket.site", "");
// Desactivar WebGL (Riesgo de seguridad
// https://security.stackexchange.com/questions/13799/is-webgl-a-security-concern
pref("webgl.disabled", true);
// Evitar el envio de referer
pref("network.http.referer.trimmingPolicy", 1);
pref("network.http.referer.XOriginPolicy", 1);
pref("network.http.sendRefererHeader", 0);
// deshabilitar completamente Hello
pref("loop.enabled", false);
// Deshabilitad por obsoleto
// https://community.qualys.com/blogs/securitylabs/2013/03/19/rc4-in-tls-is-broken-now-what
//https://community.qualys.com/thread/14655
pref("security.ssl3.dhe_rsa_aes_128_sha", false);
pref("security.ssl3.dhe_rsa_aes_256_sha", true);