php 검 측 이미지 목마 다 진 프로 그래 밍 실천

4118 단어 다 진그림 목마
얼마 전에 나 는 어떤 오픈 소스 조직 에 가입 할 것 을 신청 했다.그들 은 나 에 게 그림 에 목마 스 크 립 트 가 있 는 지 확인 하 는 기능 을 쓰 라 고 했다.사실 처음에 저 는 아무것도 몰 랐 습 니 다.다만 나중에 인터넷 에서 자 료 를 찾 아 보 았 습 니 다.찾 은 것 은 모두 사진 목 마 를 만 드 는 튜 토리 얼 이 있 었 고 검 측 절 차 를 찾 지 못 했 습 니 다.몇 차례 의 사색 끝 에 이 목마 프로그램 을 제작 원리 에서 분석 하기 로 했다.이런 목마 프로그램 은 16 진법 인 코딩 으로 쓴 것 이다.나 는 영감 이 떠 올 라 다음 과 같은 업로드 종 류 를 썼 다.결국 조직 테스트 를 통과 했다.허허 이제 그것 을 꺼 내 서 여러분 께 나 누 어 드 리 겠 습 니 다.무슨 안 좋 은 점 이 있 으 면 지적 해 주세요[email protected];
 
<?php
/**
+------------------------------------------------------------------------------
* Upload
+------------------------------------------------------------------------------
* @package Upload
* @author Anyon <[email protected]>
* @version $Id: Upload.class.php 2013-3-20 21:47:23 Anyon $
+------------------------------------------------------------------------------
*/
class Upload {
private static $image = null;
private static $status = 0;
private static $suffix = null;
private static $imageType = array('.jpg', '.bmp','.gif','.png');
private static $message = array(
'0' => ' , 。',
'1' => ' php.ini upload_max_filesize 。',
'2' => ' HTML MAX_FILE_SIZE 。',
'3' => ' 。',
'4' => ' 。',
'5' => ' 。',
'6' => ' 。',
'7' => ' 。',
'8' => ' ',
'9' => ' 。',
);
//@
public static function start($feild = 'file') {
if (!empty($_FILES)) {
self::$status = $_FILES[$feild]['error'];
if (self::$status > 0)
return array('status' => self::$status, 'msg' => self::$message[self::$status]);
self::$image = $_FILES[$feild]['tmp_name'];
self::$suffix = strtolower(strrchr($_FILES[$feild]['name'], '.'));
return array('status' => self::_upload(), 'path' => self::$image, 'msg' => self::$message[self::$status]);
} else {
return array('status' => self::$status, 'msg' => self::$message[self::$status]);
}
}
//@
private static function _upload($path = './upload/') {
date_default_timezone_set('PRC');
$newFile = $path . date('Y/m/d/His') . rand(100, 999) . self::$suffix;
self::umkdir(dirname($newFile));
if (is_uploaded_file(self::$image) && move_uploaded_file(self::$image, $newFile)) {
self::$image = $newFile;
if (in_array(self::$suffix, self::$imageType))
return self::checkHex();
else
return self::$status = 0;
} else {
return self::$status = 9;
}
}
//@ 16
private static function checkHex() {
if (file_exists(self::$image)) {
$resource = fopen(self::$image, 'rb');
$fileSize = filesize(self::$image);
fseek($resource, 0);
if ($fileSize > 512) { //
$hexCode = bin2hex(fread($resource, 512));
fseek($resource, $fileSize - 512);
$hexCode .= bin2hex(fread($resource, 512));
} else { //
$hexCode = bin2hex(fread($resource, $fileSize));
}
fclose($resource);
/* 16 <% ( ) %> */
/* 16 <? ( ) ?> */
/* 16 <script | /script> */
if (preg_match("/(3c25.*?28.*?29.*?253e)|(3c3f.*?28.*?29.*?3f3e)|(3C534352495054)|(2F5343524950543E)|(3C736372697074)|(2F7363726970743E)/is", $hexCode))
self::$status = 5;
else
self::$status = 0;
return self::$status;
} else {
return self::$status = 9;
}
}
//@
private static function umkdir($dir) {
if (!file_exists($dir) && !is_dir($dir)) {
self::umkdir(dirname($dir));
@mkdir($dir);
}
}
}

좋은 웹페이지 즐겨찾기