View previous topic :: View next topic |
Author |
Message |
Beep
Cadet
Joined: May 08, 2004
Posts: 3
Location: UK
|
Posted: Sat May 08, 2004 10:45 am Post subject: Filter help wanted |
|
|
I am trying to block a tracker from http://www.statcounter.com/
The code being used is
Code: |
<!-- Start of StatCounter Code -->
<script type="text/javascript" language="javascript">
var sc_project=286758;
var sc_invisible=1;
</script>
<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com" target="_blank"><img src="http://c1.statcounter.com/counter.php?sc_project=286758&%3bjava=0" alt="traffic analyzer" border="0"></a> </noscript>
<!-- End of StatCounter Code --> |
Can anyone help? Thanks
|
|
Back to top |
|
|
Kye-U
Sergeant
Joined: Oct 18, 2003
Posts: 149
|
Posted: Sat May 08, 2004 12:42 pm Post subject: |
|
|
New Filter:
Code: |
[Patterns]
Name = "StatCounter Remover"
Active = TRUE
URL = "$TYPE(htm)"
Bounds = "$NEST(<((|no)script),</((|no)script)>)"
Limit = 512
Match = "(*counter.js*|*sc_(project|invisible)*)$SET(1=)"
Replace = "\1" |
Old Filters:
Quote: |
Try this for a more complete removal:
Code: |
[Patterns]
Name = "StatCounter Remover"
Active = TRUE
Limit = 512
Match = "<!-- Start of StatCounter Code -->*<!-- End of StatCounter Code -->$SET(1=)"
Replace = "\1" |
Or this for a simple nullifier:
Code: |
[Patterns]
Name = "StatCounter Remover 2"
Active = TRUE
Limit = 256
Match = "<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js">"
Replace = "<script type="Shonenscript" language="Shonenscript" src="http://www.statcounter.com/counter/counter.js">" |
|
Last edited by Kye-U on Sat May 08, 2004 5:32 pm, edited 2 times in total
|
|
Back to top |
|
|
Beep
Cadet
Joined: May 08, 2004
Posts: 3
Location: UK
|
Posted: Sat May 08, 2004 12:55 pm Post subject: |
|
|
Thanks , I am still showing up in the stats though.
Is this correct?
|
|
Back to top |
|
|
Kye-U
Sergeant
Joined: Oct 18, 2003
Posts: 149
|
Posted: Sat May 08, 2004 5:05 pm Post subject: |
|
|
I recommend downloading hpHOSTS and running it once per week ^_^
The first one is eDexter; more information can be found here:
http://www.accs-net.com/hosts/eDexter.html
Basically, it just speeds up loading times by acting as a server that replaces missing AD links with clear pictures.
Description: |
eDexter 1.35 + Clear GIFs |
|
Download |
Filename: |
eDexter135.zip |
Filesize: |
191.51 KB |
Downloaded: |
24 Time(s) |
Description: |
|
Download |
Filename: |
hpHOSTS_Updater.zip |
Filesize: |
68.75 KB |
Downloaded: |
24 Time(s) |
|
|
Back to top |
|
|
Kye-U
Sergeant
Joined: Oct 18, 2003
Posts: 149
|
Posted: Sat May 08, 2004 5:30 pm Post subject: |
|
|
Here is an updated version of the StatCounter Remover:
Code: |
[Patterns]
Name = "StatCounter Remover"
Active = TRUE
URL = "$TYPE(htm)"
Bounds = "$NEST(<((|no)script),</((|no)script)>)"
Limit = 512
Match = "(*counter.js*|*sc_(project|invisible)*)$SET(1=)"
Replace = "\1" |
|
|
Back to top |
|
|
Beep
Cadet
Joined: May 08, 2004
Posts: 3
Location: UK
|
Posted: Sat May 08, 2004 6:57 pm Post subject: |
|
|
Great, that works. Thanks a lot for your help. |
|
Back to top |
|
|
Kye-U
Sergeant
Joined: Oct 18, 2003
Posts: 149
|
Posted: Sat May 08, 2004 7:46 pm Post subject: |
|
|
Beep wrote: |
Great, that works. Thanks a lot for your help. |
Glad to be of service
|
|
Back to top |
|
|
|