Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
86aa9053
Commit
86aa9053
authored
Jun 29, 2010
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added information about pickle security and SocketHandler.
parent
1c919a64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Doc/library/logging.rst
Doc/library/logging.rst
+5
-0
No files found.
Doc/library/logging.rst
View file @
86aa9053
...
...
@@ -2039,6 +2039,11 @@ sends logging output to a network socket. The base class uses a TCP socket.
Pickles
the
record
's attribute dictionary in binary format with a length
prefix, and returns it ready for transmission across the socket.
Note that pickles aren'
t
completely
secure
.
If
you
are
concerned
about
security
,
you
may
want
to
override
this
method
to
implement
a
more
secure
mechanism
.
For
example
,
you
can
sign
pickles
using
HMAC
and
then
verify
them
on
the
receiving
end
,
or
alternatively
you
can
disable
unpickling
of
global
objects
on
the
receiving
end
.
..
method
::
send
(
packet
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment