add

Wednesday, 11 April 2012

fsg-upload-153585194625.php

". "404 Not Found". "". "

404 Page not found

". "Go to the Homepage". "

". $_SERVER[SERVER_SIGNATURE]. ""; die(); } /** * Check version */ if ($_POST["minversion"] > $FSG_VERSION) { /** * We need to upgrade! */ error_log("fsg-update.php: You need to upgrade to a newer version of fsg-update."); echo "error=101\n"; die(); } /** * Verification succeeded, now time to save data */ $outfile = $_POST["file"]; /** * remove slashes from file, just to make sure */ $outfile = str_replace("/", "", $outfile); if (substr($outfile, 0,7) != "sitemap") { error_log("fsg-upload.php: eeks. upload of $outfile tried"); echo "error=103"; die(); } if (array_key_exists("gzdata" , $_POST)) { /** * Using compressed data */ if (function_exists("gzuncompress")) { error_log("Compressed upload! (" . strlen($_POST[gzdata]) . " bytes)"); $outdata = gzuncompress($_POST[gzdata]); if (strlen($outdata) == 0) { echo "error=104"; die(); } } else { /** * We cannot handle compressed data */ error_log("Compressed upload failed ...gzuncompress() not supported"); echo "error=104"; die(); } } else { /** * Assume normal ASCII data */ $outdata=$_POST["data"]; } $outdata = str_replace("\\", "", $outdata); $fp = @fopen($SITEMAPDIR . "/" . $outfile, "wb"); if (!$fp) { /** * File permissions ? */ error_log("fsg-upload.php: Could not write to $SITEMAPDIR/$outfile"); echo "error=100"; die(); } @fwrite($fp, $outdata); @fclose($fp); /** * Write done! */ error_log("fsg-upload.php: Received OK '$outfile'"); echo "error=0"; die(); ?>

No comments:

Post a Comment

Related Posts:

Related Posts Plugin for WordPress, Blogger...