Anonymity of Proxy, Anonymity Of Proxy learn it insideout


SUBMITTED BY: Guest

DATE: March 11, 2014, 11:50 p.m.

FORMAT: Text only

SIZE: 5.3 kB

HITS: 1250

  1. Anonymity of Proxy
  2. The exchange of information in Internet is made by the "client - server" model. A client sends a request (what files he needs) and a server sends a reply (required files). For close cooperation (full understanding) between a client and a server the client sends additional information about itself: a version and a name of an operating system, configuration of a browser (including its name and version) etc. This information can be necessary for the server in order to know which web-page should be given (open) to the client. There are different variants of web-pages for different configurations of browsers. However, as long as web-pages do not usually depend on browsers, it makes sense to hide this information from the web-server.
  3. What your browser transmits to a web-server:
  4. a name and a version of an operating system
  5. a name and a version of a browser
  6. configuration of a browser (display resolution, color depth, java / javascript support, ...)
  7. IP-address of a client
  8. Other information
  9. The most important part of such information (and absolutely needless for a web-server) is information about IP-address. Using your IP it is possible to know about you the following:
  10. a country where you are from
  11. a city
  12. your provider?s name and e-mail
  13. your physical address
  14. Information, transmitted by a client to a server is available (accessible) for a server as environment variables. Every information unit is a value of some variable. If any information unit is not transmitted, then corresponding variable will be empty (its value will be undetermined).
  15. These are some environment variables:
  16. REMOTE_ADDR ? IP address of a client
  17. HTTP_VIA ? if it is not empty, then a proxy is used. Value is an address (or several addresses) of a proxy server, this variable is added by a proxy server itself if you use one.
  18. HTTP_X_FORWARDED_FOR ? if it is not empty, then a proxy is used. Value is a real IP address of a client (your IP), this variable is also added by a proxy server if you use one.
  19. HTTP_ACCEPT_LANGUAGE ? what language is used in browser (what language a page should be displayed in)
  20. HTTP_USER_AGENT ? so called "a user?s agent". For all browsers this is Mozilla. Furthermore, browser?s name and version (e.g. MSIE 5.5) and an operating system (e.g. Windows 98) is also mentioned here.
  21. HTTP_HOST ? is a web server?s name
  22. This is a small part of environment variables. In fact there are much more of them (DOCUMENT_ROOT, HTTP_ACCEPT_ENCODING, HTTP_CACHE_CONTROL, HTTP_CONNECTION, SERVER_ADDR, SERVER_SOFTWARE, SERVER_PROTOCOL, ...). Their quantity can depend on settings of both a server and a client.
  23. These are examples of variable values:
  24. REMOTE_ADDR = 194.85.1.1
  25. HTTP_ACCEPT_LANGUAGE = ru
  26. HTTP_USER_AGENT = Mozilla/4.0 (compatible; MSIE 5.0; Windows 98)
  27. HTTP_HOST = www.webserver.ru
  28. HTTP_VIA = 194.85.1.1 (Squid/2.4.STABLE7)
  29. HTTP_X_FORWARDED_FOR = 194.115.5.5
  30. Anonymity at work in Internet is determined by what environment variables "hide" from a web-server.
  31. If a proxy server is not used, then environment variables look in the following way:
  32. REMOTE_ADDR = your IP
  33. HTTP_VIA = not determined
  34. HTTP_X_FORWARDED_FOR = not determined
  35. According to how environment variables "hided" by proxy servers, there are several types of proxies
  36. Transparent Proxies
  37. They do not hide information about your IP address:
  38. REMOTE_ADDR = proxy IP
  39. HTTP_VIA = proxy IP
  40. HTTP_X_FORWARDED_FOR = your IP
  41. The function of such proxy servers is not the improvement of your anonymity in Internet. Their purpose is information cashing, organization of joint access to Internet of several computers, etc.
  42. Anonymous Proxies
  43. All proxy servers, that hide a client?s IP address in any way are called anonymous proxies
  44. Simple Anonymous Proxies
  45. These proxy servers do not hide a fact that a proxy is used, however they replace your IP with its own:
  46. REMOTE_ADDR = proxy IP
  47. HTTP_VIA = proxy IP
  48. HTTP_X_FORWARDED_FOR = proxy IP
  49. These proxies are the most widespread among other anonymous proxy servers.
  50. Distorting Proxies
  51. As well as simple anonymous proxy servers these proxies do not hide the fact that a proxy server is used. However a client?s IP address (your IP address) is replaced with another (arbitrary, random) IP:
  52. REMOTE_ADDR = proxy IP
  53. HTTP_VIA = proxy IP
  54. HTTP_X_FORWARDED_FOR = random IP address
  55. High Anonymity Proxies
  56. These proxy servers are also called "high anonymity proxy". In contrast to other types of anonymity proxy servers they hide a fact of using a proxy:
  57. REMOTE_ADDR = proxy IP
  58. HTTP_VIA = not determined
  59. HTTP_X_FORWARDED_FOR = not determined
  60. That means that values of variables are the same as if proxy is not used, with the exception of one very important thing ? proxy IP is used instead of your IP address.
  61. Summary
  62. Depending on purposes there are transparent and anonymity proxies. However, remember, using proxy servers you hide only your IP from a web-server, but other information (about browser configuration) is accessible!

comments powered by Disqus