summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <gohr@cosmocode.de>2013-05-30 16:56:34 +0200
committerAndreas Gohr <gohr@cosmocode.de>2013-05-30 16:56:34 +0200
commit3c124064ad6f670d52c3678335caa57892408362 (patch)
tree8a1c259f9bc8dfd918f8d71db251885f4cfaae71 /inc
parentf1b824b5c0be76a818f44690294790d00fa9d066 (diff)
downloadrpg-3c124064ad6f670d52c3678335caa57892408362.tar.gz
rpg-3c124064ad6f670d52c3678335caa57892408362.tar.bz2
use HMAC in media_token FS#2794
Diffstat (limited to 'inc')
-rw-r--r--inc/media.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/inc/media.php b/inc/media.php
index e29a47631..18148a446 100644
--- a/inc/media.php
+++ b/inc/media.php
@@ -1879,20 +1879,21 @@ function media_crop_image($file, $ext, $w, $h=0){
* cropped images have been internally generated - and prevent external
* DDOS attacks via fetch
*
+ * @author Christopher Smith <chris@jalakai.co.uk>
+ *
* @param string $id id of the image
* @param int $w resize/crop width
* @param int $h resize/crop height
- *
- * @author Christopher Smith <chris@jalakai.co.uk>
+ * @return string
*/
function media_get_token($id,$w,$h){
// token is only required for modified images
if ($w || $h) {
- $token = auth_cookiesalt().$id;
+ $token = $id;
if ($w) $token .= '.'.$w;
if ($h) $token .= '.'.$h;
- return substr(md5($token),0,6);
+ return substr(PassHash::hmac('md5', $token, auth_cookiesalt()),0,6);
}
return '';