ȸ»ç¼Ò°³¡¤È«º¸
21 º´¿ø¡¤¼ºÇü¡¤ºäƼ10 ÇÁ·£Â÷ÀÌÁÀ½½ÄÁ¡13 ´ëÃ⡤º¸Ç衤»ó´ã7 ÀÚµ¿Â÷¿ëÇ°¡¤·»Å»5 ÀÎÅ׸®¾î¡¤ÀÌ»ç9 Çпø¼Ò°³¡¤°øºÎ¹æ9 Á¾±³¡¤Çùȸ7 ÇÇƼ¡¤Çà»ç¡¤¹Ú¶÷ȸ10 ¼îÇθô21 ¿©Çà»ç¡¤Ææ¼Ç5 |
// Check if it is an allowed extension. if ( ( count($arAllowed) > 0 && !in_array( $sExtension, $arAllowed ) ) || ( count($arDenied) > 0 && in_array( $sExtension, $arDenied ) ) ) SendResults( '202' ) ;
//¾÷·Îµå È®ÀåÀÚ Ã¼Å© 2012-01-23 $happy_ext = array('php','php2','php3','php4','php5','phtml','pwml','inc','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','com','dll','vbs','js','reg','cgi','html','htm','shtml') ; if ( in_array($sExtension,$happy_ext) ) { SendResults( '1', '', '', "¾÷·Îµå ÇϽǼö ¾ø´Â È®ÀåÀÚÀÔ´Ï´Ù" ) ; exit; } //¾÷·Îµå È®ÀåÀÚ Ã¼Å© 2012-01-23