Changes between Version 83 and Version 84 of AnonymityModule
- Timestamp:
- Jul 6, 2011 2:33:20 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AnonymityModule
v83 v84 12 12 * Analyze that traffic using wireshark 13 13 14 Anonymity is important because it allows two users to communicate without fear of someone eavesdropping or figuring out their location. When two systems communicate directly, it makes it easy for someone to figure out who is talking to who and what they are saying. This is important because it can keep large companies and organizations from collecting your information. Anonymity tools can help them communicate more securely. There are a couple of types of tools that can be used for this. One is a proxy server which works by acting as a mediator between you and the user you are communicating with. All the data you send and all the data you receive go through it. This is the easiest method of anonymity but it is also the weakest. The next best method is a program called Tor. Tor takes the proxy idea and expands it. It runs all your data through 3 or more relay systems before it sends it to the destination.14 Anonymity is important because it allows two users to communicate without fear of someone eavesdropping or figuring out their location. When two systems communicate directly, it makes it easy for someone to figure out who is talking to who and what they are saying. This is important because it can keep large companies and organizations from collecting your information. Anonymity tools can help them communicate more securely. There are a couple of types of tools that can be used for this. 15 15 16 16 17 17 == Proxy == 18 18 19 Proxies are used to hide web traffic from the service the user is attempting to connect to. By connection through a proxy the user is able to camouflage his actual identity so that the service only sees the address of the proxy. The drawback to this is that the proxy is able to see both the user and the service, so it knows the identity of both parties.19 One method is a proxy server which works by acting as a mediator between you and the user you are communicating with. Proxies are used to hide web traffic from the service the user is attempting to connect to. All the data you send and all the data you receive go through it. By connection through a proxy the user is able to camouflage his actual identity so that the service only sees the address of the proxy. The drawback to this is that the proxy is able to see both the user and the service, so it knows the identity of both parties. This is the easiest method of anonymity but it is also the weakest. 20 20 21 21 22 == Onion Routing ==23 Onion routing is an anonymity tool which uses multiple routers to hide web traffic from the sender to the server. The web data is encrypted using layers, with each layer being removed at the subsequent routers. This means that each router can only see two parts of the traffic, the preceding node and the next node. Therefore a compromised node would not lead to the identity of either person being revealed.22 == Onion Routing/Tor == 23 The next best method is a program called Tor. Tor takes the proxy idea and expands it using the idea of onion routing. Onion routing is an anonymity tool which uses multiple routers to hide web traffic from the sender to the server. The web data is encrypted using layers, with each layer being removed at the subsequent routers. This means that each router can only see two parts of the traffic, the preceding node and the next node. Therefore a compromised node would not lead to the identity of either person being revealed. 24 24 25 25 [[Image(onion.png)]]