This file is indexed.

/usr/share/pyshared/websockify-0.5.1.egg-info/PKG-INFO is in websockify 0.5.1+dfsg1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
Metadata-Version: 1.1
Name: websockify
Version: 0.5.1
Summary: Websockify.
Home-page: https://github.com/kanaka/websockify
Author: Joel Martin
Author-email: github@martintribe.org
License: LGPLv3
Description: ## websockify: WebSockets support for any application/server
        
        websockify was formerly named wsproxy and was part of the
        [noVNC](https://github.com/kanaka/noVNC) project.
        
        At the most basic level, websockify just translates WebSockets traffic
        to normal socket traffic. Websockify accepts the WebSockets handshake,
        parses it, and then begins forwarding traffic between the client and
        the target in both directions.
        
        ### WebSockets binary data
        
        Starting with websockify 0.5.0, only the HyBi / IETF
        6455 WebSocket protocol is supported.
        
        Websockify negotiates whether to base64 encode traffic to and from the
        client via the subprotocol header (Sec-WebSocket-Protocol). The valid
        subprotocol values are 'binary' and 'base64' and if the client sends
        both then the server (the python implementation) will prefer 'binary'.
        The 'binary' subprotocol indicates that the data will be sent raw
        using binary WebSocket frames. Some HyBi clients (such as the Flash
        fallback and older Chrome and iOS versions) do not support binary data
        which is why the negotiation is necessary.
        
        
        ### Encrypted WebSocket connections (wss://)
        
        To encrypt the traffic using the WebSocket 'wss://' URI scheme you
        need to generate a certificate for websockify to load. By default websockify
        loads a certificate file name `self.pem` but the `--cert=CERT` option can
        override the file name. You can generate a self-signed certificate using
        openssl. When asked for the common name, use the hostname of the server where
        the proxy will be running:
        
        ```
        openssl req -new -x509 -days 365 -nodes -out self.pem -keyout self.pem
        ```
        
        
        ### Websock Javascript library
        
        
        The `include/websock.js` Javascript library library provides a Websock
        object that is similar to the standard WebSocket object but Websock
        enables communication with raw TCP sockets (i.e. the binary stream)
        via websockify. This is accomplished by base64 encoding the data
        stream between Websock and websockify.
        
        Websock has built-in receive queue buffering; the message event
        does not contain actual data but is simply a notification that
        there is new data available. Several rQ* methods are available to
        read binary data off of the receive queue.
        
        The Websock API is documented on the [websock.js API wiki page](https://github.com/kanaka/websockify/wiki/websock.js)
        
        See the "Wrap a Program" section below for an example of using Websock
        and websockify as a browser telnet client (`wstelnet.html`).
        
        
        ### Additional websockify features
        
        These are not necessary for the basic operation.
        
        * Daemonizing: When the `-D` option is specified, websockify runs
          in the background as a daemon process.
        
        * SSL (the wss:// WebSockets URI): This is detected automatically by
          websockify by sniffing the first byte sent from the client and then
          wrapping the socket if the data starts with '\x16' or '\x80'
          (indicating SSL).
        
        * Flash security policy: websockify detects flash security policy
          requests (again by sniffing the first packet) and answers with an
          appropriate flash security policy response (and then closes the
          port). This means no separate flash security policy server is needed
          for supporting the flash WebSockets fallback emulator.
        
        * Session recording: This feature that allows recording of the traffic
          sent and received from the client to a file using the `--record`
          option.
        
        * Mini-webserver: websockify can detect and respond to normal web
          requests on the same port as the WebSockets proxy and Flash security
          policy. This functionality is activate with the `--web DIR` option
          where DIR is the root of the web directory to serve.
        
        * Wrap a program: see the "Wrap a Program" section below.
        
        
        ### Implementations of websockify
        
        The primary implementation of websockify is in python. There are
        several alternate implementations in other languages (C, Node.js,
        Clojure, Ruby) in the `other/` subdirectory (with varying levels of
        functionality).
        
        In addition there are several other external projects that implement
        the websockify "protocol". See the alternate implementation [Feature
        Matrix](https://github.com/kanaka/websockify/wiki/Feature_Matrix) for
        more information.
        
        
        ### Wrap a Program
        
        In addition to proxying from a source address to a target address
        (which may be on a different system), websockify has the ability to
        launch a program on the local system and proxy WebSockets traffic to
        a normal TCP port owned/bound by the program.
        
        The is accomplished with a small LD_PRELOAD library (`rebind.so`)
        which intercepts bind() system calls by the program. The specified
        port is moved to a new localhost/loopback free high port. websockify
        then proxies WebSockets traffic directed to the original port to the
        new (moved) port of the program.
        
        The program wrap mode is invoked by replacing the target with `--`
        followed by the program command line to wrap.
        
            `./websockify 2023 -- PROGRAM ARGS`
        
        The `--wrap-mode` option can be used to indicate what action to take
        when the wrapped program exits or daemonizes.
        
        Here is an example of using websockify to wrap the vncserver command
        (which backgrounds itself) for use with
        [noVNC](https://github.com/kanaka/noVNC):
        
            `./websockify 5901 --wrap-mode=ignore -- vncserver -geometry 1024x768 :1`
        
        Here is an example of wrapping telnetd (from krb5-telnetd).telnetd
        exits after the connection closes so the wrap mode is set to respawn
        the command:
        
            `sudo ./websockify 2023 --wrap-mode=respawn -- telnetd -debug 2023`
        
        The `wstelnet.html` page demonstrates a simple WebSockets based telnet
        client.
        
        
        ### Building the Python ssl module (for python 2.5 and older)
        
        * Install the build dependencies. On Ubuntu use this command:
        
            `sudo aptitude install python-dev bluetooth-dev`
        
        * Download, build the ssl module and symlink to it:
        
            `cd websockify/`
        
            `wget http://pypi.python.org/packages/source/s/ssl/ssl-1.15.tar.gz`
        
            `tar xvzf ssl-1.15.tar.gz`
        
            `cd ssl-1.15`
        
            `make`
        
            `cd ../`
        
            `ln -sf ssl-1.15/build/lib.linux-*/ssl ssl`
        
        
        Changes
        =======
        
        0.5.1 - Jun 27, 2013
        --------------------
        
         * use upstream einaros/ws (>=0.4.27) with websockify.js
         * file_only and no_parent security options for WSRequestHandler
         * Update build of web-socket-js (c0855c6cae)
         * add include/web-socket-js-project submodule to gimite/web-socket-js
           for DSFG compliance.
         * drop Hixie protocol support
        
        0.4.1 - Mar 12, 2013
        --------------------
        
         * ***NOTE*** : 0.5.0 will drop Hixie protocol support
         * add include/ directory and remove some dev files from source
           distribution.
        
        0.4.0 - Mar 12, 2013
        --------------------
        
         * ***NOTE*** : 0.5.0 will drop Hixie protocol support
         * use Buffer base64 support in Node.js implementation
        
        0.3.0 - Jan 15, 2013
        --------------------
        
         * refactor into modules: websocket, websocketproxy
         * switch to web-socket-js that uses IETF 6455
         * change to MPL 2.0 license for include/*.js
         * fix session recording
        
        0.2.1 - Oct 15, 2012
        --------------------
        
         * re-released with updated version number
        
        0.2.0 - Sep 17, 2012
        --------------------
        
         * Binary data support in websock.js
         * Target config file/dir and multiple targets with token selector
         * IPv6 fixes
         * SSL target support
         * Proxy to/from unix socket
        
        
        0.1.0 - May 11, 2012
        --------------------
        
         * Initial versioned release.
        
        
        
Keywords: noVNC websockify
Platform: UNKNOWN
Classifier: Programming Language :: Python