Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
018a548f
Kaydet (Commit)
018a548f
authored
Şub 03, 2005
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Security fix PSF-2005-001 for SimpleXMLRPCServer.py.
üst
392b2cb4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
7 deletions
+55
-7
libsimplexmlrpc.tex
Doc/lib/libsimplexmlrpc.tex
+17
-2
SimpleXMLRPCServer.py
Lib/SimpleXMLRPCServer.py
+29
-5
NEWS
Misc/NEWS
+9
-0
No files found.
Doc/lib/libsimplexmlrpc.tex
Dosyayı görüntüle @
018a548f
...
...
@@ -55,19 +55,34 @@ simple, stand alone XML-RPC servers.
period character.
\end{methoddesc}
\begin{methoddesc}
[SimpleXMLRPCServer]
{
register
_
instance
}{
instance
}
\begin{methoddesc}
[SimpleXMLRPCServer]
{
register
_
instance
}{
instance
\optional
{
,
allow
_
dotted
_
names
}}
Register an object which is used to expose method names which have
not been registered using
\method
{
register
_
function()
}
. If
\var
{
instance
}
contains a
\method
{_
dispatch()
}
method, it is called
with the requested method name and the parameters from the request;
the return value is returned to the client as the result. If
\var
{
instance
}
does not have a
\method
{_
dispatch()
}
method, it is
searched for an attribute matching the name of the requested method;
searched for an attribute matching the name of the requested method.
If the optional
\var
{
allow
_
dotted
_
names
}
argument is true and the
instance does not have a
\method
{_
dispatch()
}
method, then
if the requested method name contains periods, each component of the
method name is searched for individually, with the effect that a
simple hierarchical search is performed. The value found from this
search is then called with the parameters from the request, and the
return value is passed back to the client.
\begin{notice}
[warning]
Enabling the
\var
{
allow
_
dotted
_
names
}
option allows intruders to access
your module's global variables and may allow intruders to execute
arbitrary code on your machine. Only use this option on a secure,
closed network.
\end{notice}
\versionchanged
[
\var
{
allow
_
dotted
_
names
}
was added to plug a security hole;
prior versions are insecure]
{
2.3.5, 2.4.1
}
\end{methoddesc}
\begin{methoddesc}
{
register
_
introspection
_
functions
}{}
...
...
Lib/SimpleXMLRPCServer.py
Dosyayı görüntüle @
018a548f
...
...
@@ -107,14 +107,22 @@ import sys
import
types
import
os
def
resolve_dotted_attribute
(
obj
,
attr
):
def
resolve_dotted_attribute
(
obj
,
attr
,
allow_dotted_names
=
True
):
"""resolve_dotted_attribute(a, 'b.c.d') => a.b.c.d
Resolves a dotted attribute name to an object. Raises
an AttributeError if any attribute in the chain starts with a '_'.
If the optional allow_dotted_names argument is false, dots are not
supported and this function operates similar to getattr(obj, attr).
"""
for
i
in
attr
.
split
(
'.'
):
if
allow_dotted_names
:
attrs
=
attr
.
split
(
'.'
)
else
:
attrs
=
[
attr
]
for
i
in
attrs
:
if
i
.
startswith
(
'_'
):
raise
AttributeError
(
'attempt to access private attribute "
%
s"'
%
i
...
...
@@ -156,7 +164,7 @@ class SimpleXMLRPCDispatcher:
self
.
funcs
=
{}
self
.
instance
=
None
def
register_instance
(
self
,
instance
):
def
register_instance
(
self
,
instance
,
allow_dotted_names
=
False
):
"""Registers an instance to respond to XML-RPC requests.
Only one instance can be installed at a time.
...
...
@@ -174,9 +182,23 @@ class SimpleXMLRPCDispatcher:
If a registered function matches a XML-RPC request, then it
will be called instead of the registered instance.
If the optional allow_dotted_names argument is true and the
instance does not have a _dispatch method, method names
containing dots are supported and resolved, as long as none of
the name segments start with an '_'.
*** SECURITY WARNING: ***
Enabling the allow_dotted_names options allows intruders
to access your module's global variables and may allow
intruders to execute arbitrary code on your machine. Only
use this option on a secure, closed network.
"""
self
.
instance
=
instance
self
.
allow_dotted_names
=
allow_dotted_names
def
register_function
(
self
,
function
,
name
=
None
):
"""Registers a function to respond to XML-RPC requests.
...
...
@@ -295,7 +317,8 @@ class SimpleXMLRPCDispatcher:
try
:
method
=
resolve_dotted_attribute
(
self
.
instance
,
method_name
method_name
,
self
.
allow_dotted_names
)
except
AttributeError
:
pass
...
...
@@ -374,7 +397,8 @@ class SimpleXMLRPCDispatcher:
try
:
func
=
resolve_dotted_attribute
(
self
.
instance
,
method
method
,
self
.
allow_dotted_names
)
except
AttributeError
:
pass
...
...
Misc/NEWS
Dosyayı görüntüle @
018a548f
...
...
@@ -11,8 +11,17 @@ What's New in Python 2.3.5?
Core and builtins
-----------------
- Partially revert the fix for #1074011; don'
t
try
to
fflush
stdin
anymore
.
Library
-------
-
Applied
a
security
fix
to
SimpleXMLRPCserver
(
PSF
-
2005
-
001
).
This
disables
recursive
traversal
through
instance
attributes
,
which
can
be
exploited
in
various
ways
.
What
's New in Python 2.3.5rc1?
==============================
...
...
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