libhide 
-------
usefull for hiding system and user information from blithering networkprograms 
like (apache, netscape) without patching them.

to test it try the following:

$ uname -a ; id 

This shows your correct system and private informations.

$ LD_PRELOAD=/usr/lib/libhide.so.0.3 ;  export ; uname -a ; id

With LD_PRELOAD set as libhide you get some fake informations.

how
---
libhide works as preloaded library and substitutes the systemcalls uname 
and getpwuid. When a non-static binary runs and asks for your systems name, 
your realname or the like it gets this fake informations.

usage
-----
Use it with care! Some programs need the real data to work correct.
For daily use in this directory you can use libhidestarter. Just link
the program you want to use libhide with to this script.

To start your programm with libhide use this link.

It's a goot idea to link it into your private bin-directory and have 
this farthermost in your PATH.

example
-------
$ mkdir -p $HOME/bin
$ PATH=$HOME/bin:$PATH ; export PATH
$ ln -s  /usr/bin/libhidestarter $HOME/bin/mozilla
$ mozilla

browse with mozilla to your local website and look into 
access_log how your "new" mozilla lies about the system it is running.
