X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=img_auth.php;h=c2541f69b2dc8b2a078febd93f6e7d414b3bd1bf;hb=43fd2040ee0fd0710bb85e12b21ad6476cc0be9a;hp=111fbdf7479fa779292e4950291f7f9c4d87ea43;hpb=3ea576aa259b9f990e18aa3c58c62036d80c3ce3;p=lhc%2Fweb%2Fwiklou.git diff --git a/img_auth.php b/img_auth.php index 111fbdf747..c2541f69b2 100644 --- a/img_auth.php +++ b/img_auth.php @@ -1,54 +1,120 @@ getText( 'path' ); + if( !$path ) { + wfForbidden( 'img-auth-accessdenied', 'img-auth-nopathinfo' ); + } + $path = "/$path"; +} else { + $path = $_SERVER['PATH_INFO']; } -# Get filenames/directories -$filename = realpath( $wgUploadDirectory . $_SERVER['PATH_INFO'] ); -$realUploadDirectory = realpath( $wgUploadDirectory ); -$imageName = $wgLang->getNsText( NS_IMAGE ) . ":" . basename( $_SERVER['PATH_INFO'] ); +$filename = realpath( $wgUploadDirectory . $path ); +$realUpload = realpath( $wgUploadDirectory ); -# Check if the filename is in the correct directory -if ( substr( $filename, 0, strlen( $realUploadDirectory ) ) != $realUploadDirectory ) { - wfForbidden(); -} +// Basic directory traversal check +if( substr( $filename, 0, strlen( $realUpload ) ) != $realUpload ) + wfForbidden('img-auth-accessdenied','img-auth-notindir'); -if ( is_array( $wgWhitelistRead ) && !in_array( $imageName, $wgWhitelistRead ) && !$wgUser->getID() ) { - wfForbidden(); -} +// Extract the file name and chop off the size specifier +// (e.g. 120px-Foo.png => Foo.png) +$name = wfBaseName( $path ); +if( preg_match( '!\d+px-(.*)!i', $name, $m ) ) + $name = $m[1]; + +// Check to see if the file exists +if( !file_exists( $filename ) ) + wfForbidden('img-auth-accessdenied','img-auth-nofile',$filename); + +// Check to see if tried to access a directory +if( is_dir( $filename ) ) + wfForbidden('img-auth-accessdenied','img-auth-isdir',$filename); -if( !file_exists( $filename ) ) { - wfForbidden(); -} -if( is_dir( $filename ) ) { - wfForbidden(); -} -# Write file -wfStreamFile( $filename ); +$title = Title::makeTitleSafe( NS_FILE, $name ); + +// See if could create the title object +if( !$title instanceof Title ) + wfForbidden('img-auth-accessdenied','img-auth-badtitle',$name); + +// Run hook +if (!wfRunHooks( 'ImgAuthBeforeStream', array( &$title, &$path, &$name, &$result ) ) ) + wfForbidden($result[0],$result[1],array_slice($result,2)); + +// Check user authorization for this title +// UserCanRead Checks Whitelist too +if( !$title->userCanRead() ) + wfForbidden('img-auth-accessdenied','img-auth-noread',$name); + +// Stream the requested file +wfDebugLog( 'img_auth', "Streaming `".$filename."`." ); +wfStreamFile( $filename, array( 'Cache-Control: private', 'Vary: Cookie' ) ); wfLogProfilingData(); -function wfForbidden() { +/** + * Issue a standard HTTP 403 Forbidden header ($msg1-a message index, not a message) and an + * error message ($msg2, also a message index), (both required) then end the script + * subsequent arguments to $msg2 will be passed as parameters only for replacing in $msg2 + */ +function wfForbidden($msg1,$msg2) { + global $wgImgAuthDetails; + $args = func_get_args(); + array_shift( $args ); + array_shift( $args ); + $MsgHdr = htmlspecialchars(wfMsg($msg1)); + $detailMsg = (htmlspecialchars(wfMsg(($wgImgAuthDetails ? $msg2 : 'badaccess-group0'),$args))); + wfDebugLog('img_auth', "wfForbidden Hdr:".wfMsgExt( $msg1, array('language' => 'en'))." Msg: ". + wfMsgExt($msg2,array('language' => 'en'),$args)); header( 'HTTP/1.0 403 Forbidden' ); - print -" -

Access denied

-

You need to log in to access files on this server

-"; + header( 'Cache-Control: no-cache' ); + header( 'Content-Type: text/html; charset=utf-8' ); + echo << + +

$MsgHdr

+

$detailMsg

+ + +ENDS; wfLogProfilingData(); - exit; + exit(); } - -?>