HTTP (hypertext transfer protocol) is just one communications protocol on the web. Others include: tcp Transmission Control Protocol udp User Datagram Protocol icmp Internet Control Message Protocol pop3 Post Office Protocol ftp File Transfer Protocol imap Internet Message Access Protocol
0
votes
2answers
48 views
Is TLS secure enough to prevent eavesdropping carried out by an ISP?
I would like to "secure" my email, http servers and desktop client by connecting exclusively over TLS, be it email, in/out:80 or just regular "web surfing" traffic.
Will that prevent ISP and ...
2
votes
1answer
32 views
Case insensitive Basic Authentication with Apache
Is it possible to configure an Apache server to accept case insensitive usernames for Basic Authentication?
Currently I'm using a pattern similar to this (in an included file) in my httpd.conf
...
1
vote
0answers
29 views
WiFi connects, pings and DNS work, but no response to http [SYN]
I have a problem using WiFi on my Dell M4600 running Windows 7 x64. I'm using a Virgin Media Netgear Super Hub in the UK to connect to the internet. It works fine when I use a wired connection, but if ...
0
votes
0answers
43 views
iOS (iPhone/iPad): downloading a big PDF via Safari doesn't work [closed]
I've a small site designed to sell a HTTP-downloadable, ~300 MB PDF, No-DRM, page-scanned images e-book (download the test copy here http://test.magicmedicine.eu/get/ac123457965d0d4b4d17557a73cf2fe8 ...
0
votes
1answer
20 views
My wifi only allow me to use http with proxy-auth, can I use other program which use other protocol?
My school offers students WiFi which only able to use browser or other program which use only http and support proxy-authentication with BASIC Auth. For other program such as windows live messenger, ...
2
votes
0answers
36 views
Storing a http POST request in a bookmark or something similar as you would with a GET request
In the same way you can store a boormark with a GET request like this:
http://url.com/service?varialbe=value
Can you store a POST request in some way in Chrome? maybe with a plugin?
Or maybe in ...
1
vote
0answers
48 views
android tasker http post to log into a website [closed]
If I want to use tasker to log into a website I am not sure what to do.
Task 1: browser url: http://www.myintendedwebsite.com
Task 2: http post
server/path: http://www.myintendedwebsite.com
path: no ...
0
votes
1answer
77 views
Unable to test HTTP PUT-based file upload via Squid Proxy
I can upload a file to my Apache web server using Curl just fine:
echo "[$(date)] file contents." | curl -T - http://WEB-SERVER/upload/sample.put
However, if I put a Squid proxy server in between, ...
0
votes
2answers
132 views
Proxy - Convert HTTP requests to SOCKS5
I'm currently doing some testing work with TOR and ran in to a small problem. Tor's client only supports receiving connections through a SOCKS5 protocol, but the applications I'm using only support ...
0
votes
0answers
10 views
Get Variable from httpcontext coming from NSUrlRequest [migrated]
This question will be a nice tutorial for http connection "POST" between Iphone and asp.net server :) what i'm trying to do is to send an image from iphone to Asp.net server;
Here my uploadImage ...
0
votes
0answers
23 views
Ignoring HTTP 1.0 requests in IIS [migrated]
Is there a way to ignore HTTP 1.0 requests in IIS (7.0)? I don't see any reason to accept requests that are not HTTP 1.1.
1
vote
1answer
69 views
Routing HTTP traffic over SSH
I need to access the URL http://REMOTE:54000. My network does not allow outgoing connections on port 54000. However I have SSH access to a host "TRUSTED", which does not have any such restrictions. Is ...
2
votes
3answers
74 views
Why does apache write its own process ID in httpd.pid?
I am new to apache and debugging issues caused by it. I have come to understand that when When Apache starts up, it writes its own process ID in httpd.pid in a human-readable format.
...
1
vote
2answers
157 views
How to tunnel HTTP over SSH via SOCKS in Firefox
I`ve got SSH installed on my home laptop and it works fine. I set up the tunnel:
$ ssh -p 443 -C2TNv -D 8080 me@me.no-ip.org
Firefox settings:
manual config:
SOCKS; port 8080
V5
about:config:
...
2
votes
0answers
41 views
How to switch off re-POST request in Chrome
I'm working with a lot of POST-backs using AJAX, but whenever I test my web-app I constantly have to confirm POST http data to be resent.
Is there a way to stop Chrome from asking me to confirm POST ...
0
votes
1answer
94 views
Can I use Wireshark to see what URL's my computer is invoking?
Is it possible to use Wireshark to see what URL and what params are being requested by my computer?
Something like:
www.foobar.com/someendpoint/bazboo
Does Wireshark offer this information in ...
1
vote
1answer
42 views
Domains to ip:port forwarder (2 servers, 15 domains, 1 IP)
I have 1 external IP address, but 2 web-severs (one is IIS and another is Apache) in network that host around 15 domains.
I need a solution that would check all port 80 requests, detect which domain ...
1
vote
1answer
23 views
Is it possible to change content of a file residing on other server using HTTP 1.1 features?
Let's say we have a file on server which have all permissions 777. Is it possible to make a script, situated on other server than the file to modify. The script uses HTTP 1.1 protocol features only to ...
0
votes
0answers
22 views
Customizable ICAP server implementation
I'm looking for a free or paid ICAP server implementation which would allow to add plugins or scripts for custom POST, PUT, PATCH requests body (sic!) modification. It must be really good solutions ...
2
votes
1answer
42 views
Chrome sending of packets to random destinations upon reconnect/disconnect
Noticed an interesting thing whilst debugging one of my websocket applications that Google Chrome will push out 3 http requests upon a network connection status changing;
Quite disconcerting and ...
-1
votes
1answer
33 views
How can I get all sites, that I requested in Windows?
I mean all webpages that I visit. Like getting all processes throught user32 dll.
2
votes
1answer
161 views
stop google.com from redirecting to local web page
When I type http://google.com into the locaton bar and press ENTER the URL bar redirects to:
file:///C:/Users/Administrator/AppData/Roaming/Google_Toolbar/Google_Toolbar/1.0.0.0/MyGoogle.html
...
2
votes
1answer
38 views
estimating size of reply HTTP headers
I am trying to download a file via a basic socket connection, using a HTTP GET request. So, I have to specify how many bytes of data coming in I have to read from the socket. However, I am having ...
1
vote
1answer
302 views
Downloading only images using curl or wget?
UPDATED:
I've found using this Bash script fixes the problem of having GIF files with a .jpg extension.
I'm attempting to download images from a forum who's url uses the following format:
...
0
votes
2answers
106 views
Get all public files with wget
There's a host and a port(with TCP support) on which http service is running. Simple
wget host:port
doesn't return anything. Is it possible to get a list of all accessible files(html or txt) on ...
3
votes
3answers
218 views
How can I run ALL http request through Charles Web Debugging Proxy - including command line ones?
I'm using the Charles Web Debugging Proxy software to debug HTTP requests. It works great with my desktop browsers, Chrome and Firefox, and it even sees HTTP requests that other programs make.
When I ...
1
vote
1answer
115 views
Virtualbox two networks slow
I am running an Ubuntu server guest on Win 7 guest, and am running a webrick server (RoR dev).
If I have just a host-only network, everything works fine and the browser response is instant. However, ...
0
votes
1answer
32 views
What causes Wordpress/hosting “HTTP error name lookup timed out”?
My hosting company made some change in their hardware and now suddenly all wordpress sites hosted on that machine (some are mine, others aren't) are getting "HTTP errors" and "name lookup timed out" ...
0
votes
1answer
32 views
Access WebPage Globally with domain name(Without registering)
I have an apache2 server running on an Ubuntu 10.10 server box back home. The machine serves up some documents and misc. file. I currently access it globally at ...
0
votes
1answer
40 views
Proxy to verify correct http traffic?
I have a two processes that communicate via HTTP and I somehow suspect there is a concurrency issue that is occurring with very high volume traffic. Due to the high volume of traffic, logging the ...
-1
votes
1answer
49 views
I can not see ipv4 and http, I can just see ipv6 and SSDP [closed]
I have a real huge problem, when I am connected through the wireless of my university, I can just see adresses like this :
1823731 14856.287768 fe80::74b6:2d79:4343:41e1 ff02::c SSDP ...
0
votes
3answers
286 views
How to download all HTML pages in a website [closed]
Possible Duplicate:
How can I download an entire website?
If there is a website www.xxx.com, there are many static pages with same name under different paths.
Is there any way to ...
0
votes
3answers
216 views
Why do I have different IP addresses on different websites?
My wireless router shows the IP address is 113.46.75.*, which some websites like ip138.com, www.ip.cn show as my IP.
But other websites, like googling for "what is my ip", www.whatismyip.com, ...
2
votes
3answers
66 views
How to investigate the cause of an unreachable web server?
I have a very simple problem: http://wikipedia.org does not work on my home network. Yet finding a solution has caused me a headache.
Here are the piece of the puzzle:
Cable 15Mb/s internet ...
1
vote
1answer
29 views
Ensuring personal security on a shared network
I just moved into a communal office and one the utilities offered a free web access via a shared network. Aside from being blindly trusting or constantly paranoid what active steps can I take to ...
1
vote
0answers
62 views
Fiddler possible error maybe with LAN
Ok the problem begin when i begin using fiddler it was really usefull for facebook games, etc.
But one day when I started the computer the internet conection was not working, so after many tries i I ...
1
vote
1answer
63 views
When is it safe to assume file uploads are successful?
When I upload files to a server through HTTP or FTP, I normally download them again just to check that they were successfully uploaded (I use md5 checksums to check that).
Is this necessary? Can I be ...
0
votes
2answers
41 views
http ftp imap smtp and some additional ports not working
I'm writing this using a 3G connection on my phone.
At lunch time yesterday, the ports above and a few additional other ports like 40001 and 4089 stopped working on my internet connection at work.
...
0
votes
0answers
80 views
Encrypted File is corrupted when uploaded to server via HTTP Post
i am making an application which has a function that it encrypt file and then upload it to the server via HTTP POST. I tried it and it works fine when i test it on localhost (Local Server on my same ...
0
votes
1answer
307 views
HTTP proxy server for Windows that forwards to SOCKS proxy
I have am application for Windows which only supports HTTP proxies (no SOCKS support).
Because I already have some good SOCKS proxy lists, I was wondering: Is there some HTTP proxy server for ...
1
vote
2answers
79 views
Why are HTTP requests ignored?
I have the following network:
· openbsd 5.0 web server (LAN)
· windows 7 (LAN)
· router provided by my ISP (LAN, WAN)
· cell phone not conected to the network (WAN)
UPDATE
As LAN I mean a home ...
3
votes
1answer
41 views
DNSSEC regarding
I'm asking this question as software (and also because there have been a few DNSSEC questions on here in the past).
http://en.Wikipedia.org/wiki/DNS_cache_poisoning#Prevention_and_mitigation
I ...
1
vote
2answers
167 views
How to download a Wikispaces page
I usually download webpages with HTTrack when I know that I'll need that page, and I'll have no internet connection. That's what I wanted to do with Wikispaces page too.
However, HTTrack just can't ...
0
votes
1answer
46 views
Are HTTP connections opened and closed for each request? [closed]
Possible Duplicate:
Do browsers create new TCP connections for each HTTP requests?
I have a F5 load balancer that directs traffic to 2 web servers with one having a higher priority than the ...
0
votes
1answer
95 views
How to formally reject a SOAP request? [closed]
I've a large F5 LTM load balancer environment I'm looking after which we are configuring to rate limit requests at a URI level. For human web users we are 302ing them to a busy page, but we also run ...
0
votes
1answer
90 views
SSL-VPN connection out into internet?
Is it possible for me to "rent" a web server, use a cisco AnyConnect client on my machine, create an SSL-VPN tunnel to the server I am renting and then use this to tunnel my internet connection onto ...
0
votes
1answer
94 views
Home server not responding to HTTP
I have a home server running Ubuntu 11.10.
It is currently configured to have a static IP address via my router.
I also use a Dynamic DNS service built into the router to update my domain name to ...
0
votes
1answer
156 views
Instant reverse HTTP proxy from a Linux command-line
There is a nice trick to instantly serve contents of a current working directory by HTTP locally:
$ python -m SimpleHTTPServer
This command launches HTTP server at *:8000, serving $PWD contents.
...
0
votes
4answers
318 views
Why won't IE let users login to a website unless in In Private mode?
I'm not entirely sure this belongs on SuperUser.com. I also considered ServerFault.com and StackOverflow.com, but on balance, I think it should belong here?
We host a website which has the same code ...
3
votes
2answers
261 views
How to see HTTP request header by curl?
I can see HTTP header response by curl -I command.
Is there any option to see the HTTP request header sent?
# curl -I www.google.com
HTTP/1.1 200 OK
Date: Sat, 31 Dec 2011 00:55:53 GMT
Expires: -1
...