Wilders Security Forums  

Go Back   Wilders Security Forums > Software, Hardware and General Services > other software & services
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread
  #726  
Old June 20th, 2012, 07:53 PM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Is anyone familar with a similar extension to Nimi Web Cleaner (Chrome extension that blocks ads and trackers based on regular expressions) for Firefox?
  #727  
Old June 21st, 2012, 02:06 AM
vasa1's Avatar
vasa1 vasa1 is offline
Massive Poster
 
Join Date: May 2010
Posts: 3,988
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
Is anyone familar with a similar extension to Nimi Web Cleaner (Chrome extension that blocks ads and trackers based on regular expressions) for Firefox?
Why the insistence on regex? There's nothing special about regex, AFAICT. Regex can easily have unintended consequences and making successful exceptions to regex isn't the simplest thing. From what I saw of Nimi, one had to depend on the author's lists in any case.
__________________
One can't be too rich, too thin, or too secure
  #728  
Old June 21st, 2012, 04:57 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by vasa1
Why the insistence on regex? There's nothing special about regex, AFAICT. Regex can easily have unintended consequences and making successful exceptions to regex isn't the simplest thing. From what I saw of Nimi, one had to depend on the author's lists in any case.

Well, the main reason being that I actually like Nimi Web Cleanser. It may break something, but it does allow exclusions in a per-site basis, for the different shields. But, is there anything not breaking anything?

Anyway, was just wondering if there's anything similar for Firefox?

By the way, apparently Do Not Track Plus for Firefox, by Abine, also allows to add Internet Explorer TPLs, but only from one of Microsoft TPL URLs. I don't recall which one; but, you can't add TPLs from Fanboy's website, for instance.
  #729  
Old June 21st, 2012, 05:36 AM
kupo kupo is offline
Frequent Poster
 
Join Date: Jan 2011
Posts: 918
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
Is anyone familar with a similar extension to Nimi Web Cleaner (Chrome extension that blocks ads and trackers based on regular expressions) for Firefox?
Try looking at Karma Blocker
__________________
Do not feed the trolls!
  #730  
Old June 21st, 2012, 05:40 AM
vasa1's Avatar
vasa1 vasa1 is offline
Massive Poster
 
Join Date: May 2010
Posts: 3,988
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by skudo12
Try looking at Karma Blocker
Have you tried it and are you using it? I did for a while and have a thread somewhere here. I found it quite difficult to understand.

SimpleBlock is easier but getting the exceptions right is tough.
__________________
One can't be too rich, too thin, or too secure
  #731  
Old June 21st, 2012, 11:13 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by skudo12
Try looking at Karma Blocker

Thanks!

I downloaded it, and it does have some regex entries. It will take sometime to learn how to configure it properly, though. The official website isn't very helpful.

It has a default list, so it should make it easier to understand how it works.



By the way, is anyone familiar with an extention that allows controlling JavaScript like Chrome does? There are two things I like about Chrome, regarding JavaScript. When JavaScript is blocked, it reveals a JavaScript icon in the address bar where the user can allow it, and it's also possible to whitelist/blacklist by TLD (top level domain, such as *.com, etc). I wish this could be possible in Firefox, but so far found no extension. Bummer.
  #732  
Old June 21st, 2012, 11:56 AM
moontan's Avatar
moontan moontan is offline
Massive Poster
 
Join Date: Sep 2010
Location: Québec
Posts: 3,116
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
By the way, is anyone familiar with an extention that allows controlling JavaScript like Chrome does? There are two things I like about Chrome, regarding JavaScript. When JavaScript is blocked, it reveals a JavaScript icon in the address bar where the user can allow it, and it's also possible to whitelist/blacklist by TLD (top level domain, such as *.com, etc). I wish this could be possible in Firefox, but so far found no extension. Bummer.

NoScript?

anyway, i may have changed my mind about blocking javascripts.
the web is not what it was 5 years ago and js are becoming more and more present everywhere.
which makes it even more of a headache trying to manage all this.

i think trying to 'fight' js is a losing proposition.
__________________
| Linux Mint || NoScript || Image for Linux + BootIt Bare Metal |
  #733  
Old June 21st, 2012, 02:55 PM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by moontan
NoScript?

anyway, i may have changed my mind about blocking javascripts.
the web is not what it was 5 years ago and js are becoming more and more present everywhere.
which makes it even more of a headache trying to manage all this.

i think trying to 'fight' js is a losing proposition.



Not really what I want, though. I started to wonder, after seeing it as a reply to one of my security measures in Chromium, regarding JavaScript. http://www.wilderssecurity.com/showp...44&postcount=7

Considering that user x942 mentions even better than NoScript, I'm assuming he/she is doing the same for Firefox. The thing is, there's no way to do it natively, so it must be some extension... other than NoScript.

It's amazing the amount of extensions I got to use to have the minimal experience I got with Chromium, natively.
  #734  
Old June 22nd, 2012, 08:56 AM
tlu's Avatar
tlu tlu is offline
Very Frequent Poster
 
Join Date: Sep 2004
Posts: 2,065
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by vasa1
Why the insistence on regex? There's nothing special about regex, AFAICT. Regex can easily have unintended consequences and making successful exceptions to regex isn't the simplest thing.

Right. Besides, ABP also uses Regex. But Wladimir Palant found that this can slow down the extension: That's why the ABP filter lists have been using "simple" rules for quite some time.
  #735  
Old June 22nd, 2012, 10:56 AM
vasa1's Avatar
vasa1 vasa1 is offline
Massive Poster
 
Join Date: May 2010
Posts: 3,988
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by tlu
Right. Besides, ABP also uses Regex. But Wladimir Palant found that this can slow down the extension: That's why the ABP filter lists have been using "simple" rules for quite some time.
I mentioned elsewhere that I've given up trying other blockers and Privoxy and am now using just ABP (though I'm still not using any of the pre-made filter lists).
__________________
One can't be too rich, too thin, or too secure
  #736  
Old June 22nd, 2012, 11:20 AM
guest
 
Posts: n/a
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
By the way, is anyone familiar with an extention that allows controlling JavaScript like Chrome does? There are two things I like about Chrome, regarding JavaScript. When JavaScript is blocked, it reveals a JavaScript icon in the address bar where the user can allow it, and it's also possible to whitelist/blacklist by TLD (top level domain, such as *.com, etc). I wish this could be possible in Firefox, but so far found no extension. Bummer.

I think NoScript has that functionality. See: http://noscript.net/features/#blacklist
  #737  
Old June 22nd, 2012, 09:26 PM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by skudo12

Have you tried it?
  #738  
Old June 23rd, 2012, 03:01 AM
Pinga's Avatar
Pinga Pinga is offline
Frequent Poster
 
Join Date: Aug 2006
Location: Europe
Posts: 941
Default Re: What are the "Must Have" extensions for Firefox

NoTrace is a project by ISISLab of the Informatics department of the University of Salerno:
Quote:
NoTrace provides support for (novice and expert) users, awareness about privacy loss and personalized recommendations to limit it.
It is still a bit rough around the edges and sluggish, but quite comprehensive and promising!

http://isis.dia.unisa.it/projects/NoTrace/index.html
__________________
The really important kind of freedom involves attention, and awareness, and discipline, and effort, and being able truly to care about other people and to sacrifice for them, over and over, in myriad petty little unsexy ways, every day.
- David Foster Wallace
  #739  
Old June 24th, 2012, 01:36 AM
LockBox LockBox is offline
Very Frequent Poster
 
Join Date: Nov 2004
Posts: 2,081
Default Re: What are the "Must Have" extensions for Firefox

Wow - a thread started six and a half years ago. That can be dangerous if someone is not paying attention to the date.


For me:

- Readability
- ABP
- Springpad
- Roboform Pro

Some interesting things mentioned. I'm going to check a couple out - especially RefControl.
  #740  
Old June 24th, 2012, 07:08 AM
Daveski17's Avatar
Daveski17 Daveski17 is offline
Massive Poster
 
Join Date: Nov 2008
Location: Lloegyr
Posts: 5,320
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by LockBox
Wow - a thread started six and a half years ago. That can be dangerous if someone is not paying attention to the date.


For me:

- Readability

I like Readability as well. Have you ever used Reader 3.4?
__________________
Quis custodiet ipsos custodes?
  #741  
Old June 24th, 2012, 07:31 AM
Pinga's Avatar
Pinga Pinga is offline
Frequent Poster
 
Join Date: Aug 2006
Location: Europe
Posts: 941
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by LockBox
especially RefControl.
Don't forget RequestPolicy:

https://www.requestpolicy.com/
__________________
The really important kind of freedom involves attention, and awareness, and discipline, and effort, and being able truly to care about other people and to sacrifice for them, over and over, in myriad petty little unsexy ways, every day.
- David Foster Wallace
  #742  
Old June 25th, 2012, 09:49 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by Pinga
Don't forget RequestPolicy:

https://www.requestpolicy.com/

I gave it a try, and it does work great. That's its problem. After installing, I opened Softpedia and PCWorld, and to be able to view those websites properly, I had to create quite a few exception rules. Sadly, by right-clicking RP icon, we can only temporarily allow the scripts. Then, in the Preferences, there's no way to double-click Temporary to make it permanent. I actually had to write those rules from scratch again. Bummer.

I hope they can solve this, somehow. I'll have to see how to create a file to import those rules; maybe it gets easier that way.

Anyway, nice extension.
  #743  
Old June 25th, 2012, 10:51 AM
tlu's Avatar
tlu tlu is offline
Very Frequent Poster
 
Join Date: Sep 2004
Posts: 2,065
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
I hope they can solve this, somehow. I'll have to see how to create a file to import those rules; maybe it gets easier that way.

Well, that's easy since you can export your rules to a text file. You'll see that it's a very simple one.

BTW, have you noticed that RP offers an Initial Configuration button that adds a lot of default rules which make life a bit easier?
  #744  
Old June 25th, 2012, 11:07 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by tlu
Well, that's easy since you can export your rules to a text file. You'll see that it's a very simple one.

Yes, it is.

Quote:
BTW, have you noticed that RP offers an Initial Configuration button that adds a lot of default rules which make life a bit easier?

I did. Unfortunately, it only has services that are used by millions of users. So, Softpedia, etc are out of the equation. But, it's great it has that default list.
  #745  
Old June 26th, 2012, 03:43 AM
Pinga's Avatar
Pinga Pinga is offline
Frequent Poster
 
Join Date: Aug 2006
Location: Europe
Posts: 941
Default Re: What are the "Must Have" extensions for Firefox

This is cute:

http://mycroft.mozdev.org/search-eng...name=sitecheck

http://sitecheck.sucuri.net/scanner/
__________________
The really important kind of freedom involves attention, and awareness, and discipline, and effort, and being able truly to care about other people and to sacrifice for them, over and over, in myriad petty little unsexy ways, every day.
- David Foster Wallace
  #746  
Old June 26th, 2012, 10:11 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by Sadeghi85
It's possible, but it's not the most easy-to-use tool for the job, I use HttpFox for that purpose.

But I use that feature to create my own blocklist, you'd be surprised by the number of tracking urls that aren't blocked by easylist and fanboy.
[...]

That extension is really great, if you're used to Chromium. It's a nice replacement to Chromium's native features chrome://net-internals/#dns and chrome://net-internals/#events.
  #747  
Old June 29th, 2012, 05:32 PM
Ashanta Ashanta is offline
Frequent Poster
 
Join Date: Aug 2007
Location: Europe
Posts: 415
Default Re: What are the "Must Have" extensions for Firefox

What about starting a Private Browsing along with the old 'Anonymizer Nevercookie' + Ghostery add-ons ?
__________________
Realtime
AppGuard + Private Firewall + Exploit Shield free version

On Demand:
Shadow Defender, Hitman Pro 3.7, TDS Killer, Vba32 Anti-Rootkit, Rogue Killer, Combofix

Last edited by Ashanta : June 29th, 2012 at 05:41 PM.
  #748  
Old July 1st, 2012, 10:48 AM
m00nbl00d m00nbl00d is offline
Incredibly Massive Poster
 
Join Date: Jan 2009
Posts: 6,454
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by Ashanta
What about starting a Private Browsing along with the old 'Anonymizer Nevercookie' + Ghostery add-ons ?

I'm running Firefox with Private Browsing + RequestPolicy + AdBlock Plus with Fanboy Complete Adblock and country specific list + Abine DNT+. I also have a few more extensions, but not related with quite related with privacy...

DNT+ blocks what RequestPolicy can't block and whatever Fanboy's list doesn't have. I've seen it blocking a few trackers, especially from Omniture.

I wasn't familiar with Anonymizer Nevercookie. Will have to take a look at it.
  #749  
Old July 1st, 2012, 10:57 AM
xxJackxx's Avatar
xxJackxx xxJackxx is offline
Very Frequent Poster
 
Join Date: Oct 2008
Location: USA
Posts: 2,533
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by Pinga
Don't forget RequestPolicy:

https://www.requestpolicy.com/

I tried it for a few days a while back. It was just WAY too much work to use.
  #750  
Old July 1st, 2012, 10:58 AM
tlu's Avatar
tlu tlu is offline
Very Frequent Poster
 
Join Date: Sep 2004
Posts: 2,065
Default Re: What are the "Must Have" extensions for Firefox

Quote:
Originally Posted by m00nbl00d
DNT+ blocks what RequestPolicy can't block

Hm, what would that be? AFAIK, RP blocks what you don't explicitly allow.
 

Wilders Security Forums > Software, Hardware and General Services > other software & services « Previous Thread | Next Thread »

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Settings
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 09:31 PM.


Powered by vBulletin® Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright ©2002 - 2013, Wilders Security Forums