privacy leak because web.static does not exist #1720

Closed
opened 2012-04-14 21:11:37 +00:00 by jg71 · 4 comments
Owner

when a client/node is created, in tahoe.cfg "web.static = public_html" is enabled by default, but public_html is not created. Thus, surfing to http://localhost:3456/static/ leaks

a) the absolute path of where web.static is expected to be
b) the python version used
c) maybe which OS is used

solution: don't enable web.static by default, or create public_html directory during client/node creation

when a client/node is created, in tahoe.cfg "web.static = public_html" is enabled by default, but public_html is not created. Thus, surfing to <http://localhost:3456/static/> leaks a) the absolute path of where web.static is expected to be b) the python version used c) maybe which OS is used solution: don't enable web.static by default, or create public_html directory during client/node creation
tahoe-lafs added the
unknown
normal
defect
1.9.1
labels 2012-04-14 21:11:37 +00:00
tahoe-lafs added this to the undecided milestone 2012-04-14 21:11:37 +00:00

This issue is relevant when an operator wishes to provide web gateway access to untrusted users will limiting their own risk. This is not a use case that the web gateway was designed for, but several users have requested this use case.

This issue is relevant when an operator wishes to provide web gateway access to untrusted users will limiting their own risk. This is not a use case that the web gateway was designed for, but several users have requested this use case.

Note: I created a lafs-rpg issue that is related to this: https://bitbucket.org/nejucomo/lafs-rpg/issue/6/replace-stack-trace-responses-with-generic

Note: I created a lafs-rpg issue that is related to this: <https://bitbucket.org/nejucomo/lafs-rpg/issue/6/replace-stack-trace-responses-with-generic>
davidsarah commented 2012-04-15 01:24:08 +00:00
Author
Owner

This is a special case of #1008 (although the expected path of public_html would be leaked even if the exception report only showed the message and not the detailed traceback).

This is a special case of #1008 (although the expected path of public_html would be leaked even if the exception report only showed the message and not the detailed traceback).
tahoe-lafs added
code-frontend-web
and removed
unknown
labels 2012-04-15 01:24:08 +00:00
warner changed title from privacy leak to privacy leak because web.static does not exist 2015-06-18 17:40:55 +00:00
Brian Warner <warner@lothar.com> commented 2016-04-28 07:44:18 +00:00
Author
Owner

In 5a5ba64/trunk:

use twisted.web.static, not nevow.static, for public_html/

This avoids a privacy leak when the web.static= directory is configured
but doesn't exist (which is almost always, since we set `web.static =
public_html` in the default config file, but nothing automatically
creates it). The nevow.static.File class tries to os.stat() the
directory before doing anything else, which causes an exception, which
renders the traceback to the HTTP client as a 500 Internal Server Error,
and the traceback includes the full path of the missing public_html
directory, which reveals the node's basedir.

Plain twisted.web.static.File doesn't do this check, and a missing
web.static directory just results in a plain old 404.

Closes ticket:1720.
In [5a5ba64/trunk](/tahoe-lafs/trac-2024-07-25/commit/5a5ba643e66d7e340b57664800013c29258ceb4e): ``` use twisted.web.static, not nevow.static, for public_html/ This avoids a privacy leak when the web.static= directory is configured but doesn't exist (which is almost always, since we set `web.static = public_html` in the default config file, but nothing automatically creates it). The nevow.static.File class tries to os.stat() the directory before doing anything else, which causes an exception, which renders the traceback to the HTTP client as a 500 Internal Server Error, and the traceback includes the full path of the missing public_html directory, which reveals the node's basedir. Plain twisted.web.static.File doesn't do this check, and a missing web.static directory just results in a plain old 404. Closes ticket:1720. ```
tahoe-lafs added the
fixed
label 2016-04-28 07:44:18 +00:00
Brian Warner <warner@lothar.com> closed this issue 2016-04-28 07:44:18 +00:00
warner modified the milestone from undecided to 1.12.0 2016-04-28 07:44:45 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#1720
No description provided.