Jump to content

qooy (file upload) script error


millhugz

Recommended Posts

Hello, when I try to upload a file to mirroruploads.com I get this error:

 

Notice: Undefined offset: -1 in /home2/***/public_html/mirroruploads.com/exec.php on line 30

 

Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in /home2/***/public_html/mirroruploads.com/exec.php on line 5

 

Can someone help me fix this issue? I thank you ahead of time!

Link to comment
https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/
Share on other sites

<?
/*
Product: Qooy.com script

Notice: OpenSource should be OpenSource!
*/

  require 'includes/configs.inc.php';
  $status = 0;

    if ((isset ($_POST_DATA['rapidshare']) OR isset ($_POST['rapidshareremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/rapidshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['megaupload']) OR isset ($_POST['megauploadremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/megaupload.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['easyshare']) OR isset ($_POST['easyshareremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/easyshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['depositfiles']) OR isset ($_POST['depositfilesremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/depositfiles.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['zshare']) OR isset ($_POST['zshareremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/zshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['filefactory']) OR isset ($_POST['filefactoryremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/filefactory.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['flyupload']) OR isset ($_POST['flyuploadremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/flyupload.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['sendspace']) OR isset ($_POST['sendspaceremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/sendspace.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['sharedzilla']) OR isset ($_POST['sharedzillaremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/sharedzilla.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['badongo']) OR isset ($_POST['badongoremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/badongo.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['netload']) OR isset ($_POST['netloadremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/netload.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

    if ((isset ($_POST_DATA['loadto']) OR isset ($_POST['loadtoremote'])))
    {
      exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/loadto.php ' . $file_uid . ' ' . $status . ' >/dev/null &');
    }

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.