Black Hat Forum Black Hat SEO The only backlink provider with unlimited projects/links per day!
Go Back   Black Hat Forum Black Hat SEO > Black Hat SEO > Proxies

Proxies Need a good proxy list? Know where to get some fresh proxies? Post here!

Mad Content   BLOG SEO
Search
 
LinkWheel

LiveChatAgent



Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-04-2009, 11:52 PM
JuicyBlack's Avatar
Regular Member
 
Join Date: Nov 2008
Location: Dark n Wet Place
Posts: 325
Thanks: 161
Thanked 156 Times in 105 Posts
Reputation: 20
iTrader: (2)
Default Need Help turning a VPS into password protected Proxy server...HELP!

Hey guys!

I got a VPS with some IPS which I'd like to password protect for private use. So I SSH'd into the vps, and did this:

sudo apt-get update (PRESS ENTER)
sudo apt-get install nano (PRESS ENTER)

Installed nano to edit text files through the terminal then installed squid:

apt-get install squid

Everything went smoothly and after that I followed the steps as shown here:

http://www.dodyweb.com/your-own-high...uid-on-ubuntu/

The problems I now face are:

1.
I don't know how to ACL an IP range, I would use an IP range because I have dynamic IP...and Even if I knew how to establish the range I would feel a lot better If I could somehow password protect the proxies, that way I could go into Proxyfirewall and enter the proxies along with the password and do my thing like that.

2.
I followed all the steps as shown here:
http://www.dodyweb.com/your-own-high...uid-on-ubuntu/

I also used the IP I currently have assigned (for the ACL settings) but when I tried to enter that proxy into ProxyFirewall to route all the firefox traffic through it, nothing happened, I was still being detected with my regular IP... and then I entered the IP on Firefox's foxyproxy to test one more time but the pages wouldn't load, all I would see is a message saying:

"SSL something..
If your browser doesn't redirect you automatically click here"

And then the browser would redirect me to the site I was trying to reach but again nothing would load on the browser, all I got was a white page.

SO...

Anyone knows of a better guide to turn a VPS into a password protected proxy server using squid? or is there any1 out there who could help me set this thing up????
__________________
Just Who the Hell - Do you think I AM?

Last edited by JuicyBlack; 12-04-2009 at 11:55 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 12-06-2009, 10:17 PM
JuicyBlack's Avatar
Regular Member
 
Join Date: Nov 2008
Location: Dark n Wet Place
Posts: 325
Thanks: 161
Thanked 156 Times in 105 Posts
Reputation: 20
iTrader: (2)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

no one ever done this before? ... guess I gotta try at the ubuntu forums... agrrr....
__________________
Just Who the Hell - Do you think I AM?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 12-06-2009, 10:20 PM
Registered Member
 
Join Date: Sep 2009
Posts: 89
Thanks: 2
Thanked 81 Times in 17 Posts
Reputation: 10
iTrader: (0)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

I'll advice 3proxy best proxy server, simple - and amazing.

3proxy.ru
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 12-10-2009, 02:20 PM
dr4gon's Avatar
Registered Member
 
Join Date: Sep 2009
Location: USA (maybe I'll leave one day)
Posts: 94
Thanks: 1
Thanked 4 Times in 4 Posts
Reputation: 10
iTrader: (0)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

If you still need help configuring your proxy server, send me a message. I can do this for you...and anyone else who wants their own private proxy server as well.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 12-10-2009, 02:57 PM
l0cke's Avatar
Regular Member
 
Join Date: Dec 2008
Location: TX, US
Posts: 211
Thanks: 58
Thanked 65 Times in 30 Posts
Reputation: 13
iTrader: (0)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

yum install squid

vi /etc/squid/squid.conf to your like

the end.
__________________
eh?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 12-11-2009, 03:37 AM
JuicyBlack's Avatar
Regular Member
 
Join Date: Nov 2008
Location: Dark n Wet Place
Posts: 325
Thanks: 161
Thanked 156 Times in 105 Posts
Reputation: 20
iTrader: (2)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

thanks for the input guys I kinda broke my head trying to get this to work and finally did it. The whole problem was that I wasnt' familiar with all the shell commands available but now getting the proxies up and running is easy ... the hard part is the NCSA or ACL implementation.

The moment I try to add NCSA authentication all hell breaks loose and it shouldn't cause things are pretty much straight forward... this is what I am doing as far as NCSA:

http://www.beginlinux.com/server_tra...authentication

... Now prior to doing that my squid.conf file looks like this (ignore the BB color tags):

PHP Code:
[COLOR="Lime"]#Replace with VPS ips[/COLOR]
acl ip1 myip 66.66.666.01
acl ip2 myip 66.66.666.02
tcp_outgoing_address 66.66.666.01 ip1
tcp_outgoing_address 66.66.666.02 ip2
[COLOR="Lime"]#If using this ACL thingy don't use NCSA and visceversa[/COLOR]
acl ipku src 67.02.02.01/255.255.255.255
http_access allow ipku
[COLOR="Lime"]
#Making highly annon[/COLOR]
forwarded_for off
header_access Allow allow all
header_access Authorization allow all
header_access Cache
-Control allow all
header_access Content
-Encoding allow all
header_access Content
-Length allow all
header_access Content
-Type allow all
header_access Date allow all
header_access Expires allow all
header_access Host allow all
header_access 
If-Modified-Since allow all
header_access Last
-Modified allow all
header_access Location allow all
header_access Pragma allow all
header_access Accept allow all
header_access Accept
-Encoding allow all
header_access Accept
-Language allow all
header_access Content
-Language allow all
header_access Mime
-Version allow all
header_access Cookie allow all
header_access Set
-Cookie allow all
header_access Retry
-After allow all
header_access Title allow all
header_access Connection allow all
header_access Proxy
-Connection allow all
header_access All deny all 
__________________
Just Who the Hell - Do you think I AM?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 12-11-2009, 03:38 AM
neta1o's Avatar
Regular Member
 
Join Date: Sep 2008
Posts: 397
Thanks: 88
Thanked 275 Times in 70 Posts
Reputation: 41
iTrader: (0)
Send a message via AIM to neta1o
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

If you get ur sever reset back to defaults then PM me I'll set it up for you, it's CentOS right?
__________________
Follow me on twitter @neta1o
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 12-11-2009, 03:41 AM
JuicyBlack's Avatar
Regular Member
 
Join Date: Nov 2008
Location: Dark n Wet Place
Posts: 325
Thanks: 161
Thanked 156 Times in 105 Posts
Reputation: 20
iTrader: (2)
Default Re: Need Help turning a VPS into password protected Proxy server...HELP!

Its ubuntu ... but CentOS terminal commands are kinda similar right? Anyhow I need some advice as to how to implement NCSA user authentication cause if I use an ACL I will have to specify my IP and since my IP is dynamic I'll have to change that dam ACL every time I want to access the proxies on that VPS...

I've also read about PAM user authentication... dunno if that one is better or easier to set up... any ideas?
__________________
Just Who the Hell - Do you think I AM?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Backlinks Genie

SE Nuke



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


SEO Paladin


Web Hosting
Copyright © 2005 - 2012 BlackHatWorld.com All rights reserved.