Where Can I Buy Access To UK Http/socks Proxy

May 15, 2008

I have been searching for a non web UK proxy. I need to view UK search results and ads

Should I just use ssh tunneling? If so any suggestions on a cheap UK shell account?

View 4 Replies


ADVERTISEMENT

Convert Socks To HTTP Proxy

Aug 5, 2008

I am trying to figure out how to do a setup to convert socks to http.

I have an application which only supports http proxy. I am using putty to perform ssh tunneling but I guess I can only use that as a socks connection.

View 3 Replies View Related

Socks Proxy

May 20, 2007

I have a ssh tunnel for a socks v4/v5 proxy. I have a particular program that I want to use through that proxy, but it does not have proxy settings. I have read various articles suggesting that you can run any program through a proxy with the proper software, however I have not found any software suggesting what it is. Does anyone know of a client program that allows you to reroute a program/ports through a socks 4/5?

View 3 Replies View Related

Setting Up SOCKS Proxy On Dedicated Server

May 10, 2009

I just bought a dedicated server with 64 Additional IP's. My question is though, how would I go about setting up SOCKS proxys on them? I've setup some before on some linux box's, but never before on windows.

View 2 Replies View Related

How To Install A Socks Proxy For Web Browsing On My Own Server

Aug 6, 2007

what webpages we can view using proxies at the ISPs.

Currently when I am on the internet port 80 will sometimes not work, i.e. MSN, email, FTP is still working, but I can't browse any pages. This has led me to believe that the proxies they are using to check what sites we are visiting are buggered. It is fruitless trying to get the ISPs to improve...

Anyway, I have a couple of my own servers in the US and am looking at installing some sort of socks proxy on them so that I don't have to use port 80 to surf webpages. Then there wouldn't be any more downtime for me.

SECURE program that would be ideal and safe for my intended use?

View 1 Replies View Related

How To Install A Socks Proxy For Web Browsing On My Own Server?

Aug 6, 2007

when I am on the internet port 80 will sometimes not work, i.e. MSN, email, FTP is still working, but I can't browse any pages. This has led me to believe that the proxies they are using to check what sites we are visiting are buggered. It is fruitless trying to get the ISPs to improve... this is Thailand.

Anyway, I have a couple of my own servers in the US and am looking at installing some sort of socks proxy on them so that I don't have to use port 80 to surf webpages. Then there wouldn't be any more downtime for me.

Can someone point me to a SECURE program that would be ideal and safe for my intended use?

View 0 Replies View Related

Http-put Proxy / Http-connect Proxy

Oct 28, 2007

Anyone can inform how to fix "http-put proxy" or "http-connect proxy" ?

My hosting provider said that my dedicated server is not secure because of that.

I use CentOS 4.x and only Apache 2.0.52

# rpm -qa | grep htt
httpd-2.0.52-28.ent.centos4
httpd-suexec-2.0.52-28.ent.centos4

I searched about the topic but got not much information.

View 0 Replies View Related

HTTP 502 Proxy Error

May 7, 2008

Someone tried to access their webmail from a remote location and got a page not found error. It did have the following error like this at the bottom though:

"HTTP 502 Proxy Error - The specified Secure Sockets Layer (SSL) port is not allowed. ISA Server is not configured to allow SSL requests from this port. Most Web browsers use port 443 for SSL requests. (12204)

Internet Security and Acceleration Server"

This is a cpanel server with Centos. I did not find any info via cpanel's forums about the 502 error.

View 1 Replies View Related

Block Http Requests Coming Via Proxy

Jun 24, 2007

I want to block all http requests coming to my website via proxy. Is there any way/script to achieve this on the server?

View 5 Replies View Related

Apache :: Rewriting URL From HTTP To HTTPS With Reverse Proxy

Mar 10, 2015

I am using an apache reverse proxy :

httpd -version
Server version: Apache/2.2.15 (Unix)
Server built: Oct 16 2014 14:48:21

In front of an internet liferay server, I m forcing https connexion and my reverse proxy is the SSL endpoint, and it is working fine.

But inside the liferay page there are "http" link to other webserver, and browser are refusing to load them because they are http and not https.

Is there a way in the reverse proxy to rewrite "on the fly" "http" link to "https" so that everything would be load on the browser ?

I was thinking mod_proxy_html but it doesn't seams to do what I want.

View 2 Replies View Related

Apache :: How To Change URL Of HTTP 302 Returned By Proxy Server

Jan 31, 2014

I'm running Apache 2.4.7 on a RHEL 6.4 server. I'm using the Oracle WebLogic Proxy Plugin ver 12.c to connect to a back end server.What's happening is that Apache answers URL.. and proxies the request via the WebLogic Proxy Plugin to internal.blah.com. Unfortunately, the downstream system encounters a problem and issues an http 302 redirect to internal.blah.com/whathappened. I would like to have Apache intercept this http 302 and redirect the client to URL...

View 1 Replies View Related

IIS : Disable HTTP Access

Jun 11, 2007

I have a series of web services that are exposed to the world via IIS. The problem is I only want users to have HTTPS access to these.

At the moment everything is working fine, however users can access services via HTTP (port 80) and HTTPS (port 443). Using the IIS manager I have attempted to remove port 80, however it will not allow me to do this.

So the question is, how can I close of HTTP access within IIS?

View 5 Replies View Related

How Can I Http Access A Server Without A Domain

Mar 10, 2008

I've setup a dedicated server that is currently running with a domain bound to it. However this time I want to setup a centos 5.1 + latest apache 2 + bind 9 server that can only be connected to by IP address and doesn't have a domain name. So what do I need to modify in the below files to do so:

First of all will I even need bind at all? I already have it setup and (mis-)configured but I guess if I don't need it I can just take if off of autostart and stop the process "named".

Named.conf

options {
pid-file "/var/named/chroot/var/run/named/named.pid";
directory "/var/named/chroot/var/named";
query-source address * port 53;
allow-query { any; };
allow-transfer { };
recursion no;
notify no;
version "unknown";
};

logging {
category default { null; };
};

zone "server.domain.com" { type master; file "server.domain.com.db"; };
I don't even want the zone have domain.com in its name but that's just there so I could show you how I'd include server.domain.com.db.

server.domain.com.db

$TTL 14400
@ IN SOA ns1.domain.com. root.server.domain.com. (
2007052503
14400
3600
1209600
86400 )

server.domain.com. 14400 IN NS ns1.domain.com.
server.domain.com. 14400 IN NS ns2.domain.com.

localhost 14400 IN A 127.0.0.1
www 14400 IN A 78.129.174.164
I'm not sure what to do about those references to domain.com here, they shouldn't be needed but without them I don't know what to put here. ^^
Obviously I can't use those nameservers...

resolv.conf

nameserver 127.0.0.1
nameserver 78.129.143.155
nameserver 87.117.198.200
nameserver 87.117.196.200
The only thing missing from this file is "search domain.com" at the top, is that needed even though I won't really have any domains used by this server?

/etc/hosts:

# Do not remove the following line, or various programs
# that require network functionality will fail ....

View 7 Replies View Related

Apache :: Can't Access Http Anymore (2.2)

Sep 30, 2014

I made the idiotic move of not making a backup of the default configs and now I can't access my http website externally. ssl works fine, but I need http to work too.

View 3 Replies View Related

Apache :: Allow Access From Webserver - Block From HTTP

Mar 13, 2015

I want to run an HTML webpage that accesses an MP3 resource that's also on my website. However, I only want the webpage to have access to the file and block access from those attempting to access the file directly. That leaves me with two options:

1. Block access through the Apache configuration so that only my Webserver can access the resource, or

2. Hide the URL in the code.

How I can go about doing this?

View 1 Replies View Related

Apache :: Access HTTP Address Redirects To HTTPS Just Fine

Jun 19, 2013

I'm currently struggling with an issue on our Apache 2.2.24 home-rolled installation on an OEL 6.2 x64 linux server that front-ends for a Glassfish cluster via proxypass.The httpd.conf manages 4 virtual hosts with each virtual host entry rewriting to HTTPS.

Anyone trying to access the HTTP address redirects to HTTPS just fine.The issue is that anyone using the HTTPS address gets redirected to the Document Root defined in Apache instead of being proxypassed to Glassfish.

I had set up a dummy DocumentRoot with a simple index.html meta redirect and what happens is that anyone directly accessing HTTPS will hit the index.html file which redirects to the the https site. At this point it simply loops to infinity.

View 1 Replies View Related

How Can I Make Ip Into Working Socks

Aug 28, 2009

i brought server,i have ipz, can any1 help me how to make these ipz as working socks like
ip: port form,

View 6 Replies View Related

Do I Have To Have Proxy Hosting For A Proxy Site

Aug 14, 2009

I have a proxy site which is hosted with a proxy host, do i have to use proxy hosting as i have an account with another host i might want to use. The proxy hosting has run out.

View 2 Replies View Related

Redirect Http:// To Http://www

Jun 23, 2008

Does anyone know how to redirect the URL of a host so that it always goes to the www subdomain? Is this done with RedirectMatch or is a rewrite rule?

View 3 Replies View Related

Http Messed Up But Not Http

Mar 31, 2008

where when I view my website through http using Firefox, it never stops loading. If I use IE, then I get a "page can not be displayed" error.

If I use https then everything works fine.

I have noticed that if I delete lines from the files, I don't have this problem.

If I try viewing images (so I know it can't be an html of php problem) some look fine (the very small files). But, larger files, around 168 kb, load halfway and the second half is distorted (green and purple chunks and other random colors and lines).

If I view the image through https, the image is perfectly fine!

If I put my site through w3.org's validator (just to see what it would report) it says "500 Line too long (limit is 4096)".

My website used to work, so I know there isn't any code in the pages that would cause this to happen.

Is there an Apache setting I check? Perhaps it is sending a really long header that I can not see? I am not really sure what to do. I have made my site to force https but it's slow and not signed.

View 6 Replies View Related

Apache :: Proxy Pass / Proxy Pass Reverse

Jun 10, 2013

I'm using the isapi rewrite module for iis 6 which uses the exact same syntax as mod_rewrite in apache. I'm not very well versed in apache and need getting this to work asap. Basically I have a directory in our website: URL....

I need to forward this to an IP address, for example to this address:100.12.33.45/folder.While keeping the original URL (www.xyz.edu/folder). I'm unsure of the apache syntax for this.

View 3 Replies View Related

Plesk 11.x / Windows :: How To Limit Access To Few IP Address To Access Port 8443 On Firewall

Aug 28, 2012

How can I allow only one ip or a list of ip addresses to access port 8443.I need to limit access this port to few ip addresses and not everyone

View 6 Replies View Related

IIS 5 - Cant Access Page From IE7 But Can Access From Firefox

Feb 20, 2008

I found a great little app called ID Shutdown Manager which bascially lets you do stuff like wake on LAN, Shutdown, Log Off etc.

The App also has a cgi script which you can call from a web server so you get a web interface to the program.

This is exactly my reason for getting the app as I just wanted to host a web page where I could login from the internet and wake on lan my media PC.

Ok so...

The app gives you all the iis or apache setup instructions and tells you to place the cgi script which is actually a .exe into the scripts folder and then enable basic authentication for it.

Done.

So if I navigate to <SERVER>/scripts/sdmancgi.exe its supposed to give me a user / pass prompt and then when login successful I see the app and can wake on lan etc.

ok I have got this to work

on the actual machine where server is running I can access it in IE7 by localhost etc.. and it works

However when I try to access from another PC in my lan by typing <SERVER>/scripts/sdmancgi.exe I get a nice little message saying the content cannot be displayed you may require to insall a program or something to display it.

If I try to access the page from firefox on same remote PC, it works!

I can also access page from outside my LAN, it works on my N95 browser.

Also I have had friends try it from firefox from the Internet and they say it works as well.

Forgot to mention I am running on port 8081 as I already have other servers running on 8080 and 80 (one is my router and the other server installed itself from setup.exe and I dont know what server its using)

I have also tried latest apache server as well as some other free one. Both have the same effect. Ok in firefox, not in IE.

One would think its a problem with the cgi file not compatible with IE7 however, I even tried to go to default page setup in IIS <SERVER>:8081 and I get the same message. So at this point the server hasnt even tried to access CGI or prompt for Basic Authentication.

I tried googling and not much luck. I read something about CSS and when I view source of failed web page from IE7 it mentions something about CSS so dont know if this is it?

View 4 Replies View Related

Http:// And Http://www

Jan 14, 2009

I am having problem with my members sometimes accessing my forum

i am getting this error message;

Error message:

Internet Explorer cannot display the webpage

Most likely causes:

You are not connected to the Internet.

The website is encountering problems.

There might be a typing error in the address.

What you can try:
Diagnose Connection Problems
More information

This problem can be caused by a variety of issues, including:

Internet connectivity has been lost.

The website is temporarily unavailable.

The Domain Name Server (DNS) is not reachable.

The Domain Name Server (DNS) does not have a listing for the website's domain.

If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.

I contacted the support Team but they told me its working Fine , but for me and some members its not working all the time.

View 8 Replies View Related

Www And Http

Mar 21, 2009

All of my 3 new websites are not generating www.. Even if I type [url] all are changing to [url]when page is open...

I am asking because I am having irrelevant ads on adsense in all 3 sites thogh these sites are optimized well..

View 8 Replies View Related

Http Down ...

Apr 6, 2008

Im able to ping / SSH into my server however unable to access any websites?

any idea what to do

doing a top shows (no sign of http)

4726 root 16 0 2168 1088 828 S 0.3 0.0 0:02.76 top
1 root 15 0 2040 636 548 S 0.0 0.0 0:00.43 init
2 root RT 0 0 0 0 S 0.0 0.0 0:00.00 migration/0
3 root 34 19 0 0 0 S 0.0 0.0 0:00.00 ksoftirqd/0
4 root RT 0 0 0 0 S 0.0 0.0 0:00.00 watchdog/0
5 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 events/0
6 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 khelper
7 root 16 -5 0 0 0 S 0.0 0.0 0:00.00 kthread
10 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 kblockd/0
11 root 20 -5 0 0 0 S 0.0 0.0 0:00.00 kacpid
136 root 20 -5 0 0 0 S 0.0 0.0 0:00.00 cqueue/0
139 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 khubd
141 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 kseriod
205 root 25 0 0 0 0 S 0.0 0.0 0:00.00 pdflush
206 root 15 0 0 0 0 S 0.0 0.0 0:00.00 pdflush
207 root 20 -5 0 0 0 S 0.0 0.0 0:00.00 kswapd0
208 root 20 -5 0 0 0 S 0.0 0.0 0:00.00 aio/0
359 root 11 -5 0 0 0 S 0.0 0.0 0:00.00 kpsmoused
382 root 17 -5 0 0 0 S 0.0 0.0 0:00.00 ata/0
383 root 17 -5 0 0 0 S 0.0 0.0 0:00.00 ata_aux
386 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_0
387 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_1
388 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_2
389 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_3
398 root 15 -5 0 0 0 S 0.0 0.0 0:00.00 ksnapd
401 root 10 -5 0 0 0 S 0.0 0.0 0:00.10 kjournald
433 root 11 -5 0 0 0 S 0.0 0.0 0:00.00 kauditd
467 root 21 -4 2760 1176 396 S 0.0 0.0 0:00.52 udevd
887 root 10 -5 0 0 0 S 0.0 0.0 0:00.00 kedac

View 5 Replies View Related

Http 204

May 30, 2007

Where is the best place to use HTTP 204 response, in which situations you use it?

View 1 Replies View Related

Http / Php 500 Errors

Jun 15, 2009

On a cpanel / centos box:

We are facing with a strange issue about URLs. At any web site in our reseller account in php pages when we add http:// or http%3A%2F%2F to the URL as a query string server returns Internal Server Error 500.

For example when I try to access such page /index.php?q=http%3A%2F%2F[url] or /index.php?q=[url]I get this error. Is there any misconfiguration about PHP or Apache at server or what can we do to solve this problem?

Server uses PHP 5.2.9 / apache 2.2

View 12 Replies View Related

Http Has A Uid 0 Account

Jul 6, 2009

I got this email recently just after doing a cpanel update (/script/upcp)

Quote:

IMPORTANT: Do not ignore this email.

This message is to inform you that the account http has user id 0 (root privs).

This could mean that your system was compromised (OwN3D). To be safe you should
verify that your system has not been compromised.

What should I do next? Was this because of the update, or should I reinstall the system?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved