53c086071aa7aa8efe8ef4cd47b7d988d772a87c
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

1) ## translation metadata
2) # Revision: $Revision$
3) # Translation-Priority: 3-low
4) 
5) #include "head.wmi" TITLE="Tor Project: Pluggable Transports" CHARSET="UTF-8"
6) <div id="content" class="clearfix">
7)   <div id="breadcrumbs">
8)     <a href="<page index>">Home &raquo; </a>
9)     <a href="<page docs/documentation>">Documentation &raquo; </a>
10)     <a href="<page docs/pluggable-transports>">Pluggable Transports</a>
11)   </div>
12)   <div id="maincol">
13)     <h2>Tor: Pluggable Transports</h2>
14)     <hr>
15) 
16)     <p>
17)     An increasing number of censoring countries are using Deep Packet
18)     Inspection (DPI) to classify Internet traffic flows by protocol.
19)     While Tor uses <a href="<page docs/bridges>">bridge relays</a> to
20)     get around a censor that blocks by IP address, the censor can use
21)     DPI to recognize and filter Tor traffic flows even when they connect
22)     to unexpected IP addresses.
23)     </p>
24) 
25)     <p>
26)     Pluggable transports transform the Tor traffic flow between the client
27)     and the bridge. This way, censors who monitor traffic between the
28)     client and the bridge will see innocent-looking transformed traffic
29)     instead of the actual Tor traffic.
30)     External programs can talk to Tor clients and Tor bridges using the <a
31) href="https://gitweb.torproject.org/torspec.git/blob/HEAD:/proposals/180-pluggable-transport.txt">pluggable
32) transport API</a>, to make it easier to build interoperable programs.
33)     </p>
34) 
35)     <hr>
36) 
37)     <ul>
George Kadianakis Add pyobfsproxy to the PT p...

George Kadianakis authored 11 years ago

38) 
Runa A. Sandvik remove obfsproxy for asn

Runa A. Sandvik authored 11 years ago

39)     <li><b>Obfsproxy</b> is a Python framework for implementing new
40)     pluggable transports. It uses Twisted for its networking needs, and
George Kadianakis Add pyobfsproxy to the PT p...

George Kadianakis authored 11 years ago

41)     <a href="https://gitweb.torproject.org/pluggable-transports/pyptlib.git/blob/HEAD:/README.rst">pyptlib</a>
42)     for some pluggable transport-related features. It supports the
43)     <a href="https://gitweb.torproject.org/obfsproxy.git/blob/HEAD:/doc/obfs2/protocol-spec.txt">obfs2</a>
44)     and
45)     <a href="https://gitweb.torproject.org/pluggable-transports/pyobfsproxy.git/blob/HEAD:/doc/obfs3/obfs3-protocol-spec.txt">obfs3</a>
46)     pluggable transports. Maintained by George Kadianakis. <br>
47) 
Runa A. Sandvik remove obfsproxy for asn

Runa A. Sandvik authored 11 years ago

48)     Status: <a href="https://www.torproject.org/projects/obfsproxy.html.en#download">Deployed</a>
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

49)     </li>
50) 
51)     <li><b>Flashproxy</b> turns ordinary web browsers into bridges using
52)     websockets, and has a little python stub to hook Tor clients to the
53)     websocket connection. See its
54)     <a href="http://crypto.stanford.edu/flashproxy/">web page</a>,
55)     <a href="https://gitweb.torproject.org/flashproxy.git">git repository</a>,
56)     and
57)     <a href="http://crypto.stanford.edu/flashproxy/flashproxy.pdf">design paper</a>.
Roger Dingledine add a cute little 'internet...

Roger Dingledine authored 11 years ago

58)     Maintained by David Fifield.
Andrew Lewman comment out the iframe so w...

Andrew Lewman authored 11 years ago

59)     # <iframe src="//crypto.stanford.edu/flashproxy/embed.html" width="80" height="15" frameborder="0" scrolling="no"></iframe>
Roger Dingledine add a cute little 'internet...

Roger Dingledine authored 11 years ago

60)     <br>
Roger Dingledine better long-term link for f...

Roger Dingledine authored 11 years ago

61)     Status: <a href="https://crypto.stanford.edu/flashproxy/#how-to">Deployed</a>
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

62)     </li>
63) 
64)     <li><b>StegoTorus</b> is an Obfsproxy fork that extends it to a)
65)     split Tor streams across multiple connections to avoid packet size
66)     signatures, and b) embed the traffic flows in traces that look like
67)     html, javascript, or pdf. See its
68)     <a href="https://gitweb.torproject.org/stegotorus.git">git repository</a>.
George Kadianakis Add status information on t...

George Kadianakis authored 11 years ago

69)     Maintained by Zack Weinberg. <br>
70)     Status: <em>Undeployed</em>
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

71)     </li>
72) 
73)     <li><b>SkypeMorph</b> transforms Tor traffic flows so they look like
74)     Skype Video. See its
75)     <a href="http://crysp.uwaterloo.ca/software/SkypeMorph-0.5.1.tar.gz">source code</a>
76)     and
77)     <a href="http://cacr.uwaterloo.ca/techreports/2012/cacr2012-08.pdf">design paper</a>.
George Kadianakis Add status information on t...

George Kadianakis authored 11 years ago

78)     Maintained by Ian Goldberg. <br>
79)     Status: <em>Undeployed</em>
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

80)     </li>
81) 
82)     <li><b>Dust</b> aims to provide a packet-based (rather than
83)     connection-based) DPI-resistant protocol. See its
84)     <a href="https://github.com/blanu/Dust">git repository</a>.
George Kadianakis Add status information on t...

George Kadianakis authored 11 years ago

85)     Maintained by Brandon Wiley. <br>
86)     Status: <em>Undeployed</em>
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

87)     </li>
88) 
George Kadianakis Add some more pluggable tra...

George Kadianakis authored 11 years ago

89)     <li><b>Format-Transforming Encryption</b> transforms Tor traffic
90)     to arbitrary formats using their language descriptions. See
Andrew Lewman address ticket 7737.

Andrew Lewman authored 11 years ago

91)     the <a href="https://eprint.iacr.org/2012/494">research
George Kadianakis Add status information on t...

George Kadianakis authored 11 years ago

92)     paper</a>. <br>
93)     Status: <em>Undeployed</em>
George Kadianakis Add some more pluggable tra...

George Kadianakis authored 11 years ago

94)     </li>
95) 
Roger Dingledine new page to keep track of o...

Roger Dingledine authored 11 years ago

96)     </ul>
Roger Dingledine tell us about new pluggable...

Roger Dingledine authored 11 years ago

97)     <hr>
98) 
99)     <p>
100)     Our goal is to have a wide variety of pluggable transport designs.
101)     Many are at the research phase now, so it's a perfect time to play
102)     with them or suggest new designs. Please let us know if you find or
103)     start other projects that could be useful for making Tor's traffic
104)     flows more DPI-resistant!
105)     </p>