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
95618b5b
Kaydet (Commit)
95618b5b
authored
Agu 18, 2001
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added warnings about security risk of using tmpnam and tempnam
üst
50d756e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
posixmodule.c
Modules/posixmodule.c
+10
-0
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
95618b5b
...
...
@@ -4211,6 +4211,11 @@ posix_tempnam(PyObject *self, PyObject *args)
if
(
!
PyArg_ParseTuple
(
args
,
"|zz:tempnam"
,
&
dir
,
&
pfx
))
return
NULL
;
if
(
PyErr_Warn
(
PyExc_RuntimeWarning
,
"tempnam is a potential security risk to your program"
)
<
0
)
return
NULL
;
#ifdef MS_WIN32
name
=
_tempnam
(
dir
,
pfx
);
#else
...
...
@@ -4258,6 +4263,11 @@ posix_tmpnam(PyObject *self, PyObject *args)
if
(
!
PyArg_ParseTuple
(
args
,
":tmpnam"
))
return
NULL
;
if
(
PyErr_Warn
(
PyExc_RuntimeWarning
,
"tmpnam is a potential security risk to your program"
)
<
0
)
return
NULL
;
#ifdef USE_TMPNAM_R
name
=
tmpnam_r
(
buffer
);
#else
...
...
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