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
bab41433
Kaydet (Commit)
bab41433
authored
Şub 05, 2005
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #1116583: NameError in cookielib domain check
üst
ab630507
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
cookielib.py
Lib/cookielib.py
+3
-4
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/cookielib.py
Dosyayı görüntüle @
bab41433
...
...
@@ -1134,11 +1134,10 @@ class DefaultCookiePolicy(CookiePolicy):
# having to load lots of MSIE cookie files unless necessary.
req_host
,
erhn
=
eff_request_host
(
request
)
if
not
req_host
.
startswith
(
"."
):
dotted_
req_host
=
"."
+
req_host
req_host
=
"."
+
req_host
if
not
erhn
.
startswith
(
"."
):
dotted_erhn
=
"."
+
erhn
if
not
(
dotted_req_host
.
endswith
(
domain
)
or
dotted_erhn
.
endswith
(
domain
)):
erhn
=
"."
+
erhn
if
not
(
req_host
.
endswith
(
domain
)
or
erhn
.
endswith
(
domain
)):
#debug(" request domain %s does not match cookie domain %s",
# req_host, domain)
return
False
...
...
Misc/ACKS
Dosyayı görüntüle @
bab41433
...
...
@@ -399,6 +399,7 @@ Luke Mewburn
Mike Meyer
Steven Miale
Trent Mick
Chad Miller
Roman Milner
Dom Mitchell
Doug Moen
...
...
Misc/NEWS
Dosyayı görüntüle @
bab41433
...
...
@@ -51,6 +51,8 @@ Extension Modules
Library
-------
- Fixed bug in a NameError bug in cookielib. Patch #1116583.
- Applied a security fix to SimpleXMLRPCserver (PSF-2005-001). This
disables recursive traversal through instance attributes, which can
be exploited in various ways.
...
...
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