tor-design.tex 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. \documentclass[times,10pt,twocolumn]{article}
  2. \usepackage{latex8}
  3. %\usepackage{times}
  4. \usepackage{url}
  5. \usepackage{graphics}
  6. \usepackage{amsmath}
  7. \pagestyle{empty}
  8. \renewcommand\url{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}
  9. \newcommand\emailaddr{\begingroup \def\UrlLeft{<}\def\UrlRight{>}\urlstyle{tt}\Url}
  10. % If an URL ends up with '%'s in it, that's because the line *in the .bib/.tex
  11. % file* is too long, so break it there (it doesn't matter if the next line is
  12. % indented with spaces). -DH
  13. %\newif\ifpdf
  14. %\ifx\pdfoutput\undefined
  15. % \pdffalse
  16. %\else
  17. % \pdfoutput=1
  18. % \pdftrue
  19. %\fi
  20. \newenvironment{tightlist}{\begin{list}{$\bullet$}{
  21. \setlength{\itemsep}{0mm}
  22. \setlength{\parsep}{0mm}
  23. % \setlength{\labelsep}{0mm}
  24. % \setlength{\labelwidth}{0mm}
  25. % \setlength{\topsep}{0mm}
  26. }}{\end{list}}
  27. \begin{document}
  28. %% Use dvipdfm instead. --DH
  29. %\ifpdf
  30. % \pdfcompresslevel=9
  31. % \pdfpagewidth=\the\paperwidth
  32. % \pdfpageheight=\the\paperheight
  33. %\fi
  34. \title{Tor: Design of a Next-Generation Onion Router}
  35. \author{Anonymous}
  36. %\author{Roger Dingledine \\ The Free Haven Project \\ arma@freehaven.net \and
  37. %Nick Mathewson \\ The Free Haven Project \\ nickm@freehaven.net \and
  38. %Paul Syverson \\ Naval Research Lab \\ syverson@itd.nrl.navy.mil}
  39. \maketitle
  40. \thispagestyle{empty}
  41. \begin{abstract}
  42. We present Tor, a connection-based low-latency anonymous communication
  43. system. It is intended as an update and replacement for onion routing
  44. and addresses many limitations in the original onion routing design.
  45. Tor works in a real-world Internet environment,
  46. requires little synchronization or coordination between nodes, and
  47. protects against known anonymity-breaking attacks as well
  48. as or better than other systems with similar design parameters.
  49. \end{abstract}
  50. %\begin{center}
  51. %\textbf{Keywords:} anonymity, peer-to-peer, remailer, nymserver, reply block
  52. %\end{center}
  53. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  54. \Section{Overview}
  55. \label{sec:intro}
  56. Onion routing is a distributed overlay network designed to anonymize
  57. low-latency TCP-based applications such as web browsing, secure shell,
  58. and instant messaging. Users choose a path through the network and
  59. build a \emph{virtual circuit}, in which each node in the path knows its
  60. predecessor and successor, but no others. Traffic flowing down the circuit
  61. is sent in fixed-size \emph{cells}, which are unwrapped by a symmetric key
  62. at each node, revealing the downstream node. The original onion routing
  63. project published several design and analysis papers
  64. \cite{or-jsac98,or-discex00,or-ih96,or-pet00}. While there was briefly
  65. a wide area onion routing network,
  66. the only long-running and publicly accessible
  67. implementation was a fragile proof-of-concept that ran on a single
  68. machine. Many critical design and deployment issues were never implemented,
  69. and the design has not been updated in several years.
  70. Here we describe Tor, a protocol for asynchronous, loosely
  71. federated onion routers that provides the following improvements over
  72. the old onion routing design:
  73. \begin{tightlist}
  74. \item \textbf{Perfect forward secrecy:} The original onion routing
  75. design is vulnerable to a single hostile node recording traffic and later
  76. forcing successive nodes in the circuit to decrypt it. Rather than using
  77. onions to lay the circuits, Tor uses an incremental or \emph{telescoping}
  78. path-building design, where the initiator negotiates session keys with
  79. each successive hop in the circuit. Onion replay detection is no longer
  80. necessary, and the network as a whole is more reliable to boot, since
  81. the initiator knows which hop failed and can try extending to a new node.
  82. \item \textbf{Applications talk to the onion proxy via Socks:}
  83. The original onion routing design required a separate proxy for each
  84. supported application protocol, resulting in a lot of extra code (most
  85. of which was never written) and also meaning that a lot of TCP-based
  86. applications were not supported. Tor uses the unified and standard Socks
  87. \cite{socks4,socks5} interface, allowing us to support any TCP-based
  88. program without modification.
  89. \item \textbf{Many applications can share one circuit:} The original
  90. onion routing design built one circuit for each request. Aside from the
  91. performance issues of doing public key operations for every request, it
  92. also turns out that regular communications patterns mean building lots
  93. of circuits, which can endanger anonymity.
  94. The very first onion routing design \cite{or-ih96} protected against
  95. this to some extent by hiding network access behind an onion
  96. router/firewall that was also forwarding traffic from other nodes.
  97. However, even if this meant complete protection, many users can
  98. benefit from onion routing for which neither running one's own node
  99. nor such firewall configurations are adequately convenient to be
  100. feasible. Those users, especially if they engage in certain unusual
  101. communication behaviors, may be identifiable \cite{wright03}. To
  102. complicate the possibility of such attacks Tor multiplexes many
  103. connections down each circuit, but still rotates the circuit
  104. periodically to avoid too much linkability.
  105. \item \textbf{No mixing or traffic shaping:} The original onion routing
  106. design called for full link padding both between onion routers and between
  107. onion proxies (that is, users) and onion routers \cite{or-jsac98}. The
  108. later analysis paper \cite{or-pet00} suggested \emph{traffic shaping}
  109. to provide similar protection but use less bandwidth, but did not go
  110. into detail. However, recent research \cite{econymics} and deployment
  111. experience \cite{freedom} indicate that this level of resource
  112. use is not practical or economical; and even full link padding is still
  113. vulnerable to active attacks \cite{defensive-dropping}.
  114. % [XXX what is being referenced here, Dogan? -PS]
  115. %[An upcoming FC04 paper. I'll add a cite when it's out. -RD]
  116. \item \textbf{Leaky pipes:} Through in-band signalling within the
  117. circuit, Tor initiators can direct traffic to nodes partway down the
  118. circuit. This allows for long-range padding to frustrate traffic
  119. shape and volume attacks at the initiator \cite{defensive-dropping},
  120. but because circuits are used by more than one application, it also
  121. allows traffic to exit the circuit from the middle -- thus
  122. frustrating traffic shape and volume attacks based on observing exit
  123. points.
  124. %Or something like that. hm. Tone this down maybe? Or support it. -RD
  125. %How's that? -PS
  126. \item \textbf{Congestion control:} Earlier anonymity designs do not
  127. address traffic bottlenecks. Unfortunately, typical approaches to load
  128. balancing and flow control in overlay networks involve inter-node control
  129. communication and global views of traffic. Our decentralized ack-based
  130. congestion control maintains reasonable anonymity while allowing nodes
  131. at the edges of the network to detect congestion or flooding attacks
  132. and send less data until the congestion subsides.
  133. \item \textbf{Directory servers:} Rather than attempting to flood
  134. link-state information through the network, which can be unreliable and
  135. open to partitioning attacks or outright deception, Tor takes a simplified
  136. view towards distributing link-state information. Certain more trusted
  137. onion routers also serve as directory servers; they provide signed
  138. \emph{directories} describing all routers they know about, and which
  139. are currently up. Users periodically download these directories via HTTP.
  140. \item \textbf{End-to-end integrity checking:} Without integrity checking
  141. on traffic going through the network, an onion router can change the
  142. contents of cells as they pass by, e.g. by redirecting a connection on
  143. the fly so it connects to a different webserver, or by tagging encrypted
  144. traffic and looking for traffic at the network edges that has been
  145. tagged \cite{minion-design}.
  146. \item \textbf{Robustness to node failure:} router twins
  147. \item \textbf{Exit policies:}
  148. Tor provides a consistent mechanism for each node to specify and
  149. advertise an exit policy.
  150. \item \textbf{Rendezvous points:}
  151. location-protected servers
  152. \end{tightlist}
  153. We review previous work in Section \ref{sec:background}, describe
  154. our goals and assumptions in Section \ref{sec:assumptions},
  155. and then address the above list of improvements in Sections
  156. \ref{sec:design}-\ref{sec:maintaining-anonymity}. We then summarize
  157. how our design stands up to known attacks, and conclude with a list of
  158. open problems.
  159. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  160. \Section{Background and threat model}
  161. \label{sec:background}
  162. \SubSection{Related work}
  163. \label{sec:related-work}
  164. Modern anonymity designs date to Chaum's Mix-Net\cite{chaum-mix} design of
  165. 1981. Chaum proposed hiding sender-recipient connections by wrapping
  166. messages in several layers of public key cryptography, and relaying them
  167. through a path composed of Mix servers. Mix servers in turn decrypt, delay,
  168. and re-order messages, before relay them along the path towards their
  169. destinations.
  170. Subsequent relay-based anonymity designs have diverged in two
  171. principal directions. Some have attempted to maximize anonymity at
  172. the cost of introducing comparatively large and variable latencies,
  173. for example, Babel\cite{babel}, Mixmaster\cite{mixmaster-spec}, and
  174. Mixminion\cite{minion-design}. Because of this
  175. decision, such \emph{high-latency} networks are well-suited for anonymous
  176. email, but introduce too much lag for interactive tasks such as web browsing,
  177. internet chat, or SSH connections.
  178. Tor belongs to the second category: \emph{low-latency} designs that
  179. attempt to anonymize interactive network traffic. Because such
  180. traffic tends to involve a relatively large numbers of packets, it is
  181. difficult to prevent an attacker who can eavesdrop entry and exit
  182. points from correlating packets entering the anonymity network with
  183. packets leaving it. Although some work has been done to frustrate
  184. these attacks, most designs protect primarily against traffic analysis
  185. rather than traffic confirmation \cite{or-jsac98}. One can pad and
  186. limit communication to a constant rate or at least to control the
  187. variation in traffic shape. This can have prohibitive bandwidth costs
  188. and/or performance limitations. One can also use a cascade (fixed
  189. shared route) with a relatively fixed set of users. This assumes a
  190. significant degree of agreement and provides an easier target for an active
  191. attacker since the endpoints are generally known. However, a practical
  192. network with both of these features has been run for many years
  193. (the Java Anon Proxy, aka Web MIXes, \cite{web-mix}).
  194. Another low latency design that was proposed independently and at
  195. about the same time as onion routing was PipeNet \cite{pipenet}.
  196. This provided anonymity protections that were stronger than onion routing's,
  197. but at the cost of allowing a single user to shut down the network simply
  198. by not sending. It was also never implemented or formally published.
  199. The simplest low-latency designs are single-hop proxies such as the
  200. Anonymizer \cite{anonymizer}, wherein a single trusted server removes
  201. identifying users' data before relaying it. These designs are easy to
  202. analyze, but require end-users to trust the anonymizing proxy.
  203. More complex are distributed-trust, channel-based anonymizing systems. In
  204. these designs, a user establishes one or more medium-term bidirectional
  205. end-to-end tunnels to exit servers, and uses those tunnels to deliver a
  206. number of low-latency packets to and from one or more destinations per
  207. tunnel. Establishing tunnels is comparatively expensive and typically
  208. requires public-key cryptography, whereas relaying packets along a tunnel is
  209. comparatively inexpensive. Because a tunnel crosses several servers, no
  210. single server can learn the user's communication partners.
  211. Systems such as earlier versions of Freedom and onion routing
  212. build the anonymous channel all at once (using an onion). Later
  213. designs of Freedom and onion routing as described herein build
  214. the channel in stages as does AnonNet
  215. \cite{anonnet}. Amongst other things, this makes perfect forward
  216. secrecy feasible.
  217. Some systems, such as Crowds \cite{crowds-tissec}, do not rely on the
  218. changing appearance of packets to hide the path; rather they employ
  219. mechanisms so that an intermediary cannot be sure when it is
  220. receiving from/sending to the ultimate initiator. There is no public-key
  221. encryption needed for Crowds, but the responder and all data are
  222. visible to all nodes on the path so that anonymity of connection
  223. initiator depends on filtering all identifying information from the
  224. data stream. Crowds is also designed only for HTTP traffic.
  225. Hordes \cite{hordes-jcs} is based on Crowds but also uses multicast
  226. responses to hide the initiator. Herbivore \cite{herbivore} and
  227. P5 \cite{p5} go even further requiring broadcast.
  228. They each use broadcast in very different ways, and tradeoffs are made to
  229. make broadcast more practical. Both Herbivore and P5 are designed primarily
  230. for communication between communicating peers, although Herbivore
  231. permits external connections by requesting a peer to serve as a proxy.
  232. Allowing easy connections to nonparticipating responders or recipients
  233. is a practical requirement for many users, e.g., to visit
  234. nonparticipating Web sites or to exchange mail with nonparticipating
  235. recipients.
  236. Distributed-trust anonymizing systems differ in how they prevent attackers
  237. from controlling too many servers and thus compromising too many user paths.
  238. Some protocols rely on a centrally maintained set of well-known anonymizing
  239. servers. Current Tor design falls into this category.
  240. Others (such as Tarzan and MorphMix) allow unknown users to run
  241. servers, while using a limited resource (DHT space for Tarzan; IP space for
  242. MorphMix) to prevent an attacker from owning too much of the network.
  243. Crowds uses a centralized ``blender'' to enforce Crowd membership
  244. policy. For small crowds it is suggested that familiarity with all
  245. members is adequate. For large diverse crowds, limiting accounts in
  246. control of any one party is more difficult:
  247. ``(e.g., the blender administrator sets up an account for a user only
  248. after receiving a written, notarized request from that user) and each
  249. account to one jondo, and by monitoring and limiting the number of
  250. jondos on any one net- work (using IP address), the attacker would be
  251. forced to launch jondos using many different identities and on many
  252. different networks to succeed'' \cite{crowds-tissec}.
  253. [XXX I'm considering the subsection as ended here for now. I'm leaving the
  254. following notes in case we want to revisit any of them. -PS]
  255. There are also many systems which are intended for anonymous
  256. and/or censorship resistant file sharing. [XXX Should we list all these
  257. or just say it's out of scope for the paper?
  258. eternity, gnunet, freenet, freehaven, publius, tangler, taz/rewebber]
  259. Channel-based anonymizing systems also differ in their use of dummy traffic.
  260. [XXX]
  261. Finally, several systems provide low-latency anonymity without channel-based
  262. communication. Crowds and [XXX] provide anonymity for HTTP requests; [...]
  263. [XXX Mention error recovery?]
  264. anonymizer%
  265. pipenet%
  266. freedom v1%
  267. freedom v2%
  268. onion routing v1%
  269. isdn-mixes%
  270. crowds%
  271. real-time mixes, web mixes%
  272. anonnet (marc rennhard's stuff)%
  273. morphmix%
  274. P5%
  275. gnunet%
  276. rewebbers%
  277. tarzan%
  278. herbivore%
  279. hordes%
  280. cebolla (?)%
  281. [XXX Close by mentioning where Tor fits.]
  282. \SubSection{Our threat model}
  283. \label{subsec:threat-model}
  284. Like all practical low-latency systems, Tor is broken against a global
  285. passive adversary, the most commonly assumed adversary for analysis of
  286. theoretical anonymous communication designs. The adversary we assume
  287. is weaker than global with respect to distribution, but it is not
  288. merely passive. We assume a threat model derived largely from that of
  289. \cite{or-pet00}.
  290. [XXX The following is cut in from the OR analysis paper from PET 2000.
  291. I've already changed it a little, but didn't get very far.
  292. And, much if not all will eventually
  293. go. But I thought it a useful starting point. -PS]
  294. The basic adversary components we consider are:
  295. \begin{description}
  296. \item[Observer:] can observe a connection (e.g., a sniffer on an
  297. Internet router), but cannot initiate connections.
  298. \item[Disrupter:] can delay (indefinitely) or corrupt traffic on a
  299. link.
  300. \item[Hostile initiator:] can initiate (destroy) connections with
  301. specific routes as well as varying the timing and content of traffic
  302. on the connections it creates.
  303. \item[Hostile responder:] can vary the traffic on the connections made
  304. to it including refusing them entirely, intentionally modifying what
  305. it sends and at what rate, and selectively closing them.
  306. \item[Compromised Tor-node:] can arbitrarily manipulate the connections
  307. under its control, as well as creating new connections (that pass
  308. through itself).
  309. \end{description}
  310. All feasible adversaries can be composed out of these basic
  311. adversaries. This includes combinations such as one or more
  312. compromised network nodes cooperating with disrupters of links on
  313. which those nodes are not adjacent, or such as combinations of hostile
  314. outsiders and observers. However, we are able to restrict our
  315. analysis of adversaries to just one class, the compromised Tor-node.
  316. We now justify this claim.
  317. Especially in light of our assumption that the network forms a clique,
  318. a hostile outsider can perform a subset of the actions that a
  319. compromised COR can do. Also, while a compromised COR cannot disrupt
  320. or observe a link unless it is adjacent to it, any adversary that
  321. replaces some or all observers and/or disrupters with a compromised
  322. COR adjacent to the relevant link is more powerful than the adversary
  323. it replaces. And, in the presence of adequate link padding or bandwidth
  324. limiting even collaborating observers can gain no useful information about
  325. connections within the network. They may be able to gain information
  326. by observing connections to the network (in the remote-COR configuration),
  327. but again this is less than what the COR to which such connection is made
  328. can learn. Thus, by considering adversaries consisting of
  329. collections of compromised CORs we cover the worst case of all
  330. combinations of basic adversaries. Our analysis focuses on this most
  331. capable adversary, one or more compromised CORs.
  332. The possible distributions of adversaries are
  333. \begin{itemize}
  334. \item{\bf single adversary}
  335. \item{\bf multiple adversary:} A fixed, randomly distributed subset of
  336. Tor-nodes is compromised.
  337. \item{\bf roving adversary:} A fixed-bound size subset of Tor-nodes is
  338. compromised at any one time. At specific intervals, other CORs can
  339. become compromised or uncompromised.
  340. \item{\bf global adversary:} All nodes are compromised.
  341. \end{itemize}
  342. Onion Routing provides no protection against a global adversary. If
  343. all the CORs are compromised, they can know exactly who is talking to
  344. whom. The content of what was sent will be revealed as it emerges
  345. from the OR network, unless it has been end-to-end encrypted outside the
  346. OR network. Even a firewall-to-firewall connection is exposed
  347. if, as assumed above, our goal is to hide which local-COR is talking to
  348. which local-COR.
  349. \SubSection{Known attacks against low-latency anonymity systems}
  350. \label{subsec:known-attacks}
  351. We discuss each of these attacks in more detail below, along with the
  352. aspects of the Tor design that provide defense. We provide a summary
  353. of the attacks and our defenses against them in Section \ref{sec:attacks}.
  354. Passive attacks:
  355. simple observation,
  356. timing correlation,
  357. size correlation,
  358. option distinguishability,
  359. Active attacks:
  360. key compromise,
  361. iterated subpoena,
  362. run recipient,
  363. run a hostile node,
  364. compromise entire path,
  365. selectively DOS servers,
  366. introduce timing into messages,
  367. directory attacks,
  368. tagging attacks
  369. \Section{Design goals and assumptions}
  370. \label{sec:assumptions}
  371. [XXX Perhaps the threat model belongs here.]
  372. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  373. \Section{The Tor Design}
  374. \label{sec:design}
  375. \Section{Other design decisions}
  376. \SubSection{Exit policies and abuse}
  377. \label{subsec:exitpolicies}
  378. \SubSection{Directory Servers}
  379. \label{subsec:dir-servers}
  380. \Section{Rendezvous points for location privacy}
  381. \label{sec:rendezvous}
  382. Rendezvous points are a building block for \emph{location-hidden services}
  383. (that is, responder anonymity) in the Tor network. Location-hidden
  384. services means Bob can offer a tcp service, such as an Apache webserver,
  385. without revealing the IP of that service.
  386. We provide censorship resistance for Bob by allowing him to advertise
  387. several onion routers (nodes known as his Introduction Points, see
  388. Section \ref{subsec:intro-point}) as his public location. Alice,
  389. the client, chooses a node known as a Meeting Point (see Section
  390. \ref{subsec:meeting-point}). She connects to one of Bob's introduction
  391. points, informs him about her meeting point, and then waits for him to
  392. connect to her meeting point. This extra level of indirection is needed
  393. so Bob's introduction points don't serve files directly (else they open
  394. themselves up to abuse, eg from serving Nazi propaganda in France). The
  395. extra level of indirection also allows Bob to choose which requests to
  396. respond to, and which to ignore.
  397. We provide the necessary glue code so that Alice can view
  398. webpages on a location-hidden webserver, and Bob can run a
  399. location-hidden server, with minimal invasive changes (see Section
  400. \ref{subsec:client-rendezvous}). Both Alice and Bob must run local
  401. onion proxies (OPs) -- software that knows how to talk to the onion
  402. routing network.
  403. The steps of a rendezvous:
  404. \begin{tightlist}
  405. \item Bob chooses some Introduction Points, and advertises them on a
  406. Distributed Hash Table (DHT).
  407. \item Bob establishes onion routing connections to each of his
  408. Introduction Points, and waits.
  409. \item Alice learns about Bob's service out of band (perhaps Bob gave her
  410. a pointer, or she found it on a website). She looks up the details
  411. of Bob's service from the DHT.
  412. \item Alice chooses and establishes a Meeting Point (MP) for this
  413. transaction.
  414. \item Alice goes to one of Bob's Introduction Points, and gives it a blob
  415. (encrypted for Bob) which tells him about herself and the Meeting
  416. Point she chose. The Introduction Point sends the blob to Bob.
  417. \item Bob chooses whether to ignore the blob, or to onion route to MP.
  418. Let's assume the latter.
  419. \item MP plugs together Alice and Bob. Note that MP doesn't know (or care)
  420. who Alice is, or who Bob is; and it can't read anything they
  421. transmit either, because they share a session key.
  422. \item Alice sends a 'begin' cell along the circuit. It makes its way
  423. to Bob's onion proxy. Bob's onion proxy connects to Bob's webserver.
  424. \item Data goes back and forth as usual.
  425. \end{tightlist}
  426. Ian Goldberg developed a similar notion of rendezvous points for
  427. low-latency anonymity systems \cite{goldberg-thesis}. His ``service tag''
  428. is the same concept as our ``hash of service's public key''. We make it
  429. a hash of the public key so it can be self-authenticating, and so the
  430. client can recognize the same service with confidence later on.
  431. The main differences are:
  432. * We force the client to use our software. This means
  433. - the client can get anonymity for himself pretty easily, since he's
  434. already running our onion proxy.
  435. - the client can literally just click on a url in his Mozilla, paste it
  436. into wget, etc, and it will just work. (The url is a long-term
  437. service tag; like Ian's, it doesn't expire as the server changes
  438. public addresses. But in Ian's scheme it seems the client must
  439. manually hunt down a current location of the service via gnutella?)
  440. - the client and server can share ephemeral DH keys, so at no point
  441. in the path is the plaintext exposed.
  442. * I fear that we would get *no* volunteers to run Ian's rendezvous points,
  443. because they have to actually serve the Nazi propaganda (or whatever)
  444. in plaintext. So we add another layer of indirection to the system:
  445. the rendezvous service is divided into Introduction Points and
  446. Meeting Points. The introduction points (the ones that the server is
  447. publically associated with) do not output any bytes to the clients. And
  448. the meeting points don't know the client, the server, or the stuff
  449. being transmitted. The indirection scheme is also designed with
  450. authentication/authorization in mind -- if the client doesn't include
  451. the right cookie with its request for service, the server doesn't even
  452. acknowledge its existence.
  453. \subsubsection{Integration with user applications}
  454. \Section{Maintaining anonymity sets}
  455. \label{sec:maintaining-anonymity}
  456. \SubSection{Using a circuit many times}
  457. \label{subsec:many-messages}
  458. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  459. \Section{Attacks and Defenses}
  460. \label{sec:attacks}
  461. Below we summarize a variety of attacks and how well our design withstands
  462. them.
  463. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  464. \Section{Future Directions and Open Problems}
  465. \label{sec:conclusion}
  466. Tor brings together many innovations from many different projects into
  467. a unified deployable system. But there are still several attacks that
  468. work quite well, as well as a number of sustainability and run-time
  469. issues remaining to be ironed out. In particular:
  470. \begin{itemize}
  471. \item foo
  472. \end{itemize}
  473. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  474. \Section{Acknowledgments}
  475. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  476. \bibliographystyle{latex8}
  477. \bibliography{tor-design}
  478. \end{document}
  479. % Style guide:
  480. % U.S. spelling
  481. % avoid contractions (it's, can't, etc.)
  482. % 'mix', 'mixes' (as noun)
  483. % 'mix-net'
  484. % 'mix', 'mixing' (as verb)
  485. % 'Mixminion Project'
  486. % 'Mixminion' (meaning the protocol suite or the network)
  487. % 'Mixmaster' (meaning the protocol suite or the network)
  488. % 'middleman' [Not with a hyphen; the hyphen has been optional
  489. % since Middle English.]
  490. % 'nymserver'
  491. % 'Cypherpunk', 'Cypherpunks', 'Cypherpunk remailer'
  492. %
  493. % 'Whenever you are tempted to write 'Very', write 'Damn' instead, so
  494. % your editor will take it out for you.' -- Misquoted from Mark Twain