Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hpguru

Pages: [1] 2 3 ... 16
1
Other / new tutorial about the if-then-else structure
« on: September 01, 2002, 05:18:11 PM »
Great job altosax!

Facing each other,
a thousand miles apart.

2
Spam Blockers / Images without extension
« on: September 01, 2002, 05:57:01 AM »
This may not be exactly what you had in mind but this filter can remove images scripts style sheets and favicons which either have no extension or which have meta-data appended. Just change it to meet your own needs.


Name = "Kill Objects with Appended Meta-Data or without Extension"
Active = TRUE
URL = "$TYPE(htm)"
Bounds = "<(img|script|link)s[^>]++(src|href)=*>(*</script>|)"
Limit = 325
Match = "(^*(src|href)=$AV(*.(gif|jpg|jpeg|jpe|ico|js|css|vbs|png|bmp|xbm)))*"



Facing each other,
a thousand miles apart.

Edited by - hpguru on 01 Sep 2002  07:23:50

3
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 07:51:17 PM »
Well of course. If they didn't already have your IP there would be no connection at all. These filters simply address how your IP is being used in meta data appended to the url, not to prevent them from getting your IP address. After all, they aren't appending your IP and other meta data to your query just to make it profound looking.

Facing each other,
a thousand miles apart.

Edited by - hpguru on 31 Aug 2002  21:07:28

4
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 06:59:45 PM »
Here is another to take care of IP Cookies in 302 redirects. It will prevent your browser from being redirected twice.


In = TRUE
Out = FALSE
Key = "Location: IP Cookie Spoofer (In)"
Match = "XXX.XXX.XXX.XXX3"
Replace = "$LST(ClientIP)13"



Facing each other,
a thousand miles apart.

5
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 06:36:09 PM »
Here's my take

 
In = FALSE
Out = TRUE
Key = "IP-Cookie: IP Cookie Spoofer (Out)"
Match = "$URL(XXX.XXX.XXX.XXX3)"
Replace = "IP Cookie Spoofed!$JUMP($LST(ClientIP)13)"

 


Facing each other,
a thousand miles apart.

6
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 06:10:57 PM »
JD, I just tried your filter and it's working good but I would recommend omitting the equal sign. If it is missing or some other character precedes your IP then the filter won't match and you are tagged & bagged.


Edit: I would also delete the u or replace it with h since it sends that header with your IP included.

Edited by - hpguru on 31 Aug 2002  19:21:19

7
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 07:52:00 AM »
Hmmmmmmmmmmmm...

Facing each other,
a thousand miles apart.

8
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 04:25:38 AM »
I created a simple filter to alert me when my IP address is matched and found another site that is doing this. Dogpile.com and possibly Findwhat.com. Here's a filter for Dogpile.


Name = "DogPile: Kill FindWhat.com IP Cookies"
Active = TRUE
URL = "search.dogpile.com"
Bounds = "<a*href=$AV(*findwhat.com/results.asp*ip_address=*)*>"
Limit = 800
Match = "*href=$AV(*ip_address=*;mt=)*"
Replace = "<a href="http://findwhat.com/results.asp?MT=&filter_pref=0" "
          "target="_blank">"



Now you know why they call it "Dogpile". BTW the replacement url I chose should allow you to bypass acceptance of their results preference cookie and assumes you would want unfiltered results. I haven't tested this filter except in the test window but it should work.

Facing each other,
a thousand miles apart.

9
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 01:47:43 AM »
Hi Jor, Glad you like them. Can you think of a better name for them?

Facing each other,
a thousand miles apart.

Edited by - hpguru on 31 Aug 2002  02:48:21

10
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 01:22:29 AM »
Here is another filter just for Webcrawler which you don't have to change. It will work regardless of your IP.


Name = "Webcrawler IP Cookies"
Active = TRUE
Multi = TRUE
URL = "*.webcrawler.com/"
Bounds = "<input*name=$AV(userip)*>"
Limit = 55
Match = "value=$AV(*)1"
Replace = "value="127.0.0.1"1"


Facing each other,
a thousand miles apart.

11
Privacy / IP Cookies: For lack of a better name
« on: August 31, 2002, 12:32:00 AM »
I mentioned in an earlier post that Webcrawler is inserting visitors IP addresses into their search queries. My Personal Info Protector filter blocked this but today I got to thinking it might be better to replace my IP with say 127.0.0.1 or 0.0.0.0 since I like using Webcrawler from time to time.

So I wrote a couple filters, one for the url replacement and another for the associated referer. Didn't really know what to call them so I thought that this is somewhat like a cookie that is stored on the server, hence IP Cookies.



[HTTP headers]
In = FALSE
Out = TRUE
Key = "Referer: IP Cookies I (out)"
Match = "XXX.XXX.XXX.XXX1"
Replace = "127.0.0.11"


In = FALSE
Out = TRUE
Key = "URL: IP Cookies II (out)"
Match = "XXX.XXX.XXX.XXX1"
Replace = "$JUMP(127.0.0.11)"


To use the filters replace the string XXX.XXX.XXX.XXX with your IP address. If you are on a dialup or you have a dynamic IP address that changes frequently then you may as well not bother with these filters.

Any thoughts?


Facing each other,
a thousand miles apart.

12
Site Specific / Search Engine Silliness
« on: August 30, 2002, 10:59:27 PM »
I made a few changes to the "Google Links in New Window" filter to fix an issue where it failed to match the url. The zipped config in my previous post has been updated.

 

Name = "Google Links in New Window"
Active = TRUE
URL = "*.google.com/(search|groups)wq=w"
Bounds = "$NEST(<p*>*,<as*/a>)"
Limit = 400
Match = "(<a*shref=$AV(w)*)1>2</a>"
Replace = "1>2</a><br>1 target="_blank">"
          "<strong>[Open in a New Window]</strong></a>"



Facing each other,
a thousand miles apart.

13
Community Discussions (Non-Forum Related) / Proggys & Downloads
« on: August 30, 2002, 08:53:45 PM »
quote:

quote:

Hi to all Proxo-friends and HP(48|49) users.



, this is not for me.
i'm a hp15c user (i buyed it in 1986, and still work).

altosax.

 



Must be kind of tough getting that thing in you shirt pocket.

http://www.satake-usa.com/pages/products/cereal/weighing/HP15C_semi-automatic_packer.htm

Facing each other,
a thousand miles apart.

Edited by - hpguru on 30 Aug 2002  21:54:22

14
Community Discussions (Non-Forum Related) / Proggys & Downloads
« on: August 29, 2002, 10:31:44 PM »
quote:

xcalc, at http://www.tordivel.no/xcalc/
the only calculator i know using the rpn notation, if you have ever used an hp calculator you will love this.



Thank you!

Here's mine. I already turned Jak on to these.

eDexter
Freeware
http://www.pyrenean.com/
A tiny webserver that listens on 127.0.0.1:80
that speeds up web surfing when used with an ad blocking
hosts file. It serves a 1x1 transparent gif. Works with PAC
files.

Yankee Clipper Plus
Make-My-Dayware (Freeware)
http://www.levasseur.net/YCP/
Best Clipboard Manager Available. Runs in the System Tray.

RBTray
Freeware
http://www.geocities.com/SiliconValley/Sector/3244/
Allows you to minimize almost any window to the System Tray
by right clicking it's minimize button.

Wallpaper Changer
Freeware
http://www.wallpaperchanger.de/
A great little wallpaper changer that runs in the systray.

DeskSweeper
Freeware
http://no-nonsense-software.com/freeware/
Allows you to hide all the desktop icons (Wallpaper Changer
does this too). Runs in Systray.

Diskeeper
http://www.executive.com/diskeeper/diskeeper.asp
Trialware
A very good MS certified disk defragmenter.

Kaspersky Anti-Virus (AVP)
Shareware
http://www.kasperskylabs.com/
IMHO Best All Around Antivirus/trojan scanner.

Eraser
Freeware
http://www.heidi.ie/eraser/
Best and most robust file & disk shredder. It's
35 pass Gutmann wipe will render any file totally
and completely unrecoverable. Also allows for
scheduled disk/file wipes.

Imad's PGP
Freeware
http://freepages.computers.rootsweb.com/~irfaiad/
Strongest PGP Available.

DriveCrypt
Shareware
http:www.drivecrypt.com/
With 1344bit blowfish and SHA2 it is simply the best hard
disk encryption available. Add DriveCrypt Plus and you can
encrypt your whole disk including the OS. You can also get
the older freeware Scramdisk for Win9x at
http://www.samsimpson.com/scramdisk.php
but DriveCript is well worth the expenditure since it's
encrypted volume files are undetectable as such (when renamed).

RegRun3
Shareware
http://www.greatis.com/
Detects unknown virii and trojans. It's a Windows startup
manager.

DNS Query
Freeware
http://www.networkingfiles.com/DNS/dnsquery.htm
Resolves an IP or hostname.

System Cloak
Freeware
http://downloads.sympatico.ca/tucows/preview/195494.shtml
Locks your desktop TIGHT. Requires msvbvm60.dll.

VisualRoute
Shareware
http://www.visualware.com/visualroute/index.html
IMHO the best graphical traceroute proggy ever. Downside
is it calls home but it can be blocked by your firewall.

Copernic 2001 Pro
Shareware (Adware ala Opera)
http://www.copernic.com/products/copernic/pro/index.html
A metasearch utility for searching multiple search engines
at once. Stores all your searches and results in a database.
Persistantly attempts calling home but can be easily blocked.

Google Toolbar for IE
Freeware.
http://toolbar.google.com/
Adds a search bar to IEs toolbar.
Downside - Autoupdates itself via IE without asking but it's not
spyware. The autoupdates can be blocked if so desired.

Eudora Pro
Adware ala Opera
http://www.eudora.com/
IMHO simply the best email client available but some folks hate it.
Calls home till it is registered, run in paid mode and configured to
ignore audits. If you check out the software shops you might be able
to find v4.0 - v4.22 which did not call home.

UltraEdit
Shareware
http://www.ultraedit.com/downloads/index.html
Best text editor ever. No Proxo user should be without it.

Facing each other,
a thousand miles apart.

15
Questions and Answers / List Excludes
« on: August 28, 2002, 10:21:36 PM »
quote:

Confused yet?  ;-)



No but I need all the help I can get!

Thanks Scott. I'll take that and see what I can come up with. Currently I'm using an exclude list but that is slowing me down too much.

Facing each other,
a thousand miles apart.

Pages: [1] 2 3 ... 16