File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ This module defines classes for implementing HTTP servers (Web servers).
20
20
.. warning ::
21
21
22
22
:mod: `http.server ` is not recommended for production. It only implements
23
- basic security checks.
23
+ :ref: ` basic security checks < http.server-security >` .
24
24
25
25
One class, :class: `HTTPServer `, is a :class: `socketserver.TCPServer ` subclass.
26
26
It creates and listens at the HTTP socket, dispatching the requests to a
@@ -488,3 +488,14 @@ the following command uses a specific directory::
488
488
the ``--cgi `` option::
489
489
490
490
python -m http.server --cgi
491
+
492
+ .. _http.server-security :
493
+
494
+ Security Considerations
495
+ -----------------------
496
+
497
+ .. index :: pair: http.server; security
498
+
499
+ :class: `SimpleHTTPRequestHandler ` will follow symbolic links when handling
500
+ requests, this makes it possible for files outside of the specified directory
501
+ to be served.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The following modules have specific security considerations:
12
12
argument disabling known insecure and blocked algorithms
13
13
<hashlib-usedforsecurity>`
14
14
* :mod: `http.server ` is not suitable for production use, only implementing
15
- basic security checks
15
+ basic security checks. See the :ref: ` security considerations < http.server-security >`.
16
16
* :mod: `logging `: :ref: `Logging configuration uses eval()
17
17
<logging-eval-security>`
18
18
* :mod: `multiprocessing `: :ref: `Connection.recv() uses pickle
You can’t perform that action at this time.
0 commit comments