Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
security
/
CAN-2004-0959.php
blob: 51ff3f53498fa72cd1f256cde6d9325a6f4e79d8 [
file
]
<?
php
if
(
array_key_exists
(
'user_file'
,
$_FILES
)
&&
is_uploaded_file
(
$_FILES
[
'user_file'
][
'tmp_name'
]))
{
print
$_FILES
[
'user_file'
][
'name'
];
}
else
{
print
"FAILED"
;
}
?>