squid anonymizer


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting squid anonymizer
# 1  
Old 02-09-2008
squid anonymizer

Hello;
some sites describe how to anonymize the squid the web browsing by inserting the following cods to “http.c” file that located on “src” directory.(when we install squid manually)
but I have installed putty via “yum” command ,
and the files and directories are not similar the manually
there isn't “Src” directory and also “http.c”
so please help me to find the related file that can I insert that anonymizer cods to it .



My VPS info :
Centos 5 default
The installed squid via “yum” is squid-2.6.STABLE6-5.el5_1
Its installed on etc/squid/
the file on this directory is :
cachemgr.conf
mib.txt
msntauth.conf
squid.conf.default
errors
mime.conf
msntauth.conf.default
icons
mime.conf.default
squid.conf


the codes :
httpHeaderDelById(hdr_out, HDR_USER_AGENT);
httpHeaderDelById(hdr_out, HDR_REFERER);
httpHeaderDelById(hdr_out, HDR_X_REQUEST_URI);
httpHeaderDelById(hdr_out, HDR_X_FORWARDED_FOR);
httpHeaderDelById(hdr_out, HDR_X_CACHE_LOOKUP);
httpHeaderDelById(hdr_out, HDR_X_CACHE);
httpHeaderDelById(hdr_out, HDR_VIA);

thanks in advance
Tom
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX and Linux Applications

Issues with squid

Hello, I have been trying to setup the following squid configuration http://veloso.org/SquidConfig/SquidConfig.html but every time I get to start squid I get the following error- 2012/05/28 10:31:12| WARNING: redirector #1 (FD 7) exited 2012/05/28 10:31:12| WARNING: redirector #2 (FD 9)... (2 Replies)
Discussion started by: jamie_123
2 Replies

2. IP Networking

Squid vs iptables = no Squid access.log?

Hello, I have a pretty useless satellite link at home (far from any civilization), so I wanted to set up caching in order to speed things up. My Squid 2.6 runs "3128 transparent" and is set up quite well on a separate machine. I also have my dd-wrt router to move all port 80 traffic through... (0 Replies)
Discussion started by: theWojtek
0 Replies

3. UNIX for Dummies Questions & Answers

Squid Configuration Help

I am trying to configure my squid to block access to certain websites facebook and twitter in this case. After defining my acls and the corresponding http_access lines users are still able to access these websites. I would also like to allow access to the proxy from 12:30 to 14:00 hrs only. I... (4 Replies)
Discussion started by: bryanmuts2000
4 Replies

4. Linux

Proxy / Network Anonymizer setup?

I'm trying to set up a system where I have a front end machine that has a list of proxies it knows to connect through, and all the machines in the office route through this front end machine to go through the appropriate proxy IP. Could someone point me in the direction of some software... (0 Replies)
Discussion started by: kettlewell
0 Replies

5. Linux

caching in squid

hi, i installed fedora core 12, and i installed squid v 3, i need to know how can i cache everything. anyone can help me please (1 Reply)
Discussion started by: zazoo
1 Replies

6. UNIX for Dummies Questions & Answers

Squid Server

Hi everyone, I am very new to linux. Can anybody help me for my following doubts. 1) Why we put 8080 in squid server configuration ? 2) what is secure and insecure ftp ? 3) difference between ftp and http servers ? 4) can we configure all servers (installing packages with yum client)if... (3 Replies)
Discussion started by: kunalpatil09
3 Replies

7. Linux

Squid+DNS

Dear All I have Squid 2.6 running on RHEL4. Actually we have our companys portal and Sun communication suit for Mail Service. Squid uses live DNS for resolving sites. I want to resolve Intranet address without by passing the proxy in the browser. I mean every user have to by pass proxy in the... (7 Replies)
Discussion started by: surfer24
7 Replies

8. UNIX for Advanced & Expert Users

Squid Error

Hi all , i m getting below error in access.log while running skype application on linux. Proxy packages : Squid redirected through SquidGuard with LDAP auth. system : Ubuntu 6.06 Firewall : pf 227032649.603 0 system_IP_add TCP_DENIED/407 1802 GET... (0 Replies)
Discussion started by: jagnikam
0 Replies

9. UNIX for Dummies Questions & Answers

Squid dns

Hi Guys I have a squid proxy server. I have some settings in the no proxy for exclusions on 700 client machines using firefox. I need to add to this exclusion but instead of changing 700 machines settings, is there anyway you can allow the squid server to handle this. I have gone into the... (1 Reply)
Discussion started by: beardiebeardie
1 Replies
Login or Register to Ask a Question
digest_file_auth(8)					      System Manager's Manual					       digest_file_auth(8)

NAME
digest_file_auth - File based digest authentication helper for Squid. Version 1.0 SYNOPSIS
digest_file_auth [-c] file DESCRIPTION
digest_file_auth is an installed binary authentication program for Squid. It handles digest authentication protocol and authenticates against a text file backend. OPTIONS
-c Accept digest hashed passwords rather than plaintext in the password file CONFIGURATION
Username database file format: - comment lines are possible and should start with a '#'; - empty or blank lines are possible; - plaintext entry format is username:password - HA1 entry format is username:realm:HA1 To build a directory integrated backend, you need to be able to calculate the HA1 returned to squid. To avoid storing a plaintext password you can calculate MD5(username:realm:password) when the user changes their password, and store the tuple username:realm:HA1. then find the matching username:realm when squid asks for the HA1. This implementation could be improved by using such a triple for the file format. However storing such a triple does little to improve security: If compromised the username:realm:HA1 combination is "plaintext equivalent" - for the purposes of digest authentication they allow the user access. Password syncronisation is not tackled by digest - just preventing on the wire compromise. AUTHOR
This program was written by Robert Collins <robertc@squid-cache.org> Based on prior work by Arjan de Vet <Arjan.deVet@adv.iae.nl> This manual was written by Robert Collins <robertc@squid-cache.org> Amos Jeffries <amosjeffries@squid-cache.org> COPYRIGHT
This program and documentation is copyright to the authors named above. Distributed under the GNU General Public License (GNU GPL) version 2 or later (GPLv2+). QUESTIONS
Questions on the usage of this program can be sent to the Squid Users mailing list <squid-users@squid-cache.org> REPORTING BUGS
Bug reports need to be made in English. See http://wiki.squid-cache.org/SquidFaq/BugReporting for details of what you need to include with your bug report. Report bugs or bug fixes using http://bugs.squid-cache.org/ Report serious security bugs to Squid Bugs <squid-bugs@squid-cache.org> Report ideas for new improvements to the Squid Developers mailing list <squid-dev@squid-cache.org> SEE ALSO
squid(8), GPL(7), The Squid FAQ wiki http://wiki.squid-cache.org/SquidFaq The Squid Configuration Manual http://www.squid-cache.org/Doc/config/ digest_file_auth(8)