Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   TSSE 7.0 take upload file decoded (http://www.bvlist.com/showthread.php?t=5531)

fireman 18th October 2010 18:43

TSSE 7.0 take upload file decoded
 
Code:


  function validfilename ($name)
  {
    return preg_match ('/^[^\\0-\\x1f:\\\\\\/?*\\xff#<>|]+$/si', $name);
  }

  function TSStopUpload ($msg, $redirect = true)
  {
    global $lang;
    global $where;
    if ($redirect)
    {
      $where .= '&msg=' . base64_encode ($msg);
      header ('' . 'Location: ' . $where);
      exit ();
    }

    stderr ($lang->global['error'], $msg);
  }

  function isScene ($TorrentName = '')
  {
    if ($TorrentName)
    {
      require_once INC_PATH . '/functions_ts_remote_connect.php';
      $TorrentName = trim (preg_replace ('#\\s+#', '.', $TorrentName));
      $URL = base64_decode ('aHR0cDovL3ByZS56ZXJvc2VjLndzLz9jbWQ9c2VhcmNoJnByZT0=') . urlencode ($TorrentName);
      $Data = TS_Fetch_Data ($URL);
      if ($Data)
      {
        preg_match ('@(.*)(.*)<\\/strong>(.*)<\\/span><\\/a>@Uis', $Data, $Result);
        return ((isset ($Result['1']) AND $Result['1'] != '') ? trim ($Result['1']) : false);
      }
    }

    return false;
  }

  function dict_check ($d, $s)
  {
    global $lang;
    if ($d['type'] != 'dictionary')
    {
      TSStopUpload ($lang->upload['dicterror1']);
    }

    $a = explode (':', $s);
    $dd = $d['value'];
    $ret = array ();
    foreach ($a as $k)
    {
      unset ($t);
      if (preg_match ('/^(.*)\\((.*)\\)$/', $k, $m))
      {
        $k = $m[1];
        $t = $m[2];
      }

      if (!isset ($dd[$k]))
      {
        TSStopUpload ($lang->upload['dicterror2']);
      }

      if (isset ($t))
      {
        if ($dd[$k]['type'] != $t)
        {
          TSStopUpload ($lang->upload['dicterror3']);
        }

        $ret[] = $dd[$k]['value'];
        continue;
      }
      else
      {
        $ret[] = $dd[$k];
        continue;
      }
    }

    return $ret;
  }

  function dict_get ($d, $k, $t)
  {
    global $lang;
    if ($d['type'] != 'dictionary')
    {
      TSStopUpload ($lang->upload['dicterror1']);
    }

    $dd = $d['value'];
    if (!isset ($dd[$k]))
    {
      return null;
    }

    $v = $dd[$k];
    if ($v['type'] != $t)
    {
      TSStopUpload ($lang->upload['dicterror4']);
    }

    return $v['value'];
  }

  function unesc ($x)
  {
    return (get_magic_quotes_gpc () ? stripslashes ($x) : $x);
  }

  @error_reporting (E_ALL & ~E_NOTICE & ~E_STRICT);
  @ini_set ('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT);
  @ini_set ('display_errors', '0');
  @ini_set ('display_startup_errors', '0');
  @ini_set ('ignore_repeated_errors', '1');
  @ini_set ('log_errors', '1');
  require 'global.php';
  require_once INC_PATH . '/benc.php';
  dbconn ();
  loggedinorreturn ();
  maxsysop ();
  @set_time_limit (300);
  @ini_set ('upload_max_filesize', (1000 < $max_torrent_size ? $max_torrent_size : 10485760));
  @ini_set ('memory_limit', '20000M');
  @ignore_user_abort (1);
  if ($usergroups['canupload'] == 'no')
  {
    print_no_permission (true);
    exit ();
  }

  $lang->load ('upload');
  ($query = sql_query ('SELECT canupload FROM ts_u_perm WHERE userid = ' . sqlesc ($CURUSER['id'])) OR sqlerr (__FILE__, 42));
  if (0 < mysql_num_rows ($query))
  {
    $uploadperm = mysql_fetch_assoc ($query);
    if ($uploadperm['canupload'] == '0')
    {
      print_no_permission (true);
      exit ();
    }
  }

  $ModerateTorrent = ($usergroups['canupload'] == 'moderate' ? true : false);
  $where = 'upload.php?upload_step=2&subject=' . (isset ($_POST['subject']) ? base64_encode ($_POST['subject']) : '') . '&type=' . (isset ($_POST['type']) ? htmlspecialchars_uni ($_POST['type']) : '') . '&trackerurl=' . (isset ($_POST['trackerurl']) ? base64_encode ($_POST['trackerurl']) : '') . '&scene=' . (isset ($_POST['scene']) ? htmlspecialchars_uni ($_POST['scene']) : '') . '&t_link=' . (isset ($_POST['t_link']) ? base64_encode ($_POST['t_link']) : '') . '&nforip=' . (isset ($_POST['nforip']) ? htmlspecialchars_uni ($_POST['nforip']) : '') . '&uplver=' . (isset ($_POST['uplver']) ? htmlspecialchars_uni ($_POST['uplver']) : '') . '&offensive=' . (isset ($_POST['offensive']) ? htmlspecialchars_uni ($_POST['offensive']) : '') . '&t_image_url=' . (isset ($_POST['t_image_url']) ? base64_encode ($_POST['t_image_url']) : '') . '&t_image_file=' . (isset ($_POST['t_image_file']) ? base64_encode ($_POST['t_image_file']) : '') . '&message=' . (isset ($_POST['message']) ? base64_encode ($_POST['message']) : '');
  foreach (explode (':', 'message:type:subject') as $v)
  {
    if (!isset ($_POST[$v]))
    {
      TSStopUpload ($lang->global['dontleavefieldsblank']);
      continue;
    }
  }

  if (!isset ($_FILES['file']))
  {
    TSStopUpload ($lang->global['dontleavefieldsblank']);
  }

  require INC_PATH . '/config_announce.php';
  $is_mod = is_mod ($usergroups);
  $f = $_FILES['file'];
  $f = preg_replace ('#\\s+#', '_', $f);
  $fname = unesc ($f['name']);
  if (empty ($fname))
  {
    TSStopUpload ($lang->global['dontleavefieldsblank']);
  }

  if ((isset ($_POST['uplver']) AND $_POST['uplver'] == 'yes'))
  {
    $anonymous = 'yes';
    $anon = $lang->upload['anonymous'];
  }
  else
  {
    $anonymous = 'no';
    $anon = $CURUSER['username'];
  }

  if (((isset ($_POST['free']) AND $_POST['free'] == '1') AND $is_mod))
  {
    $free = 'yes';
  }
  else
  {
    $free = 'no';
  }

  if ((((isset ($_POST['silver']) AND $_POST['silver'] == '1') AND $free == 'no') AND $is_mod))
  {
    $silver = 'yes';
  }
  else
  {
    $silver = 'no';
  }

  if (((isset ($_POST['sticky']) AND $_POST['sticky'] == 'yes') AND $is_mod))
  {
    $sticky = 'yes';
  }
  else
  {
    $sticky = 'no';
  }

  if ((isset ($_POST['offensive']) AND $_POST['offensive'] == 'yes'))
  {
    $offensive = 'yes';
  }
  else
  {
    $offensive = 'no';
  }

  $nfofile = $_FILES['nfo'];
  $NFOUPLOADED = false;
  if ($nfofile['name'] != '')
  {
    if ($nfofile['size'] == 0)
    {
      TSStopUpload ($lang->upload['nfoerror1']);
    }

    if (655350 < $nfofile['size'])
    {
      TSStopUpload ($lang->upload['nfoerror2']);
    }

    $nfofilename = $nfofile['tmp_name'];
    if (!@is_uploaded_file ($nfofilename))
    {
      TSStopUpload ($lang->upload['nfoerror3']);
    }

    $filesize = @filesize ($nfofilename);
    $filenum = fopen ($nfofilename, 'r');
    $NFOCONTENTS = fread ($filenum, $filesize);
    fclose ($filenum);
    if (!$NFOCONTENTS)
    {
      TSStopUpload ($lang->upload['nfoerror1']);
    }

    $NFOUPLOADED = true;
  }

  $descr = ($_POST['message'] ? unesc ($_POST['message']) : '');
  if (!$descr)
  {
    if ((($_POST['nforip'] == 'yes' AND $NFOCONTENTS) AND $NFOUPLOADED))
    {
    }
    else
    {
      TSStopUpload ($lang->global['dontleavefieldsblank']);
    }
  }

  if (strlen ($descr) < 10)
  {
    if ((((isset ($_POST['nforip']) AND $_POST['nforip'] == 'yes') AND $NFOCONTENTS) AND $NFOUPLOADED))
    {
    }
    else
    {
      TSStopUpload ($lang->upload['mindesclimit']);
    }
  }

  $catid = (int)$_POST['type'];
  if (!is_valid_id ($catid))
  {
    TSStopUpload ($lang->upload['selectcategory']);
  }

  if (!validfilename ($fname))
  {
    TSStopUpload ($lang->upload['fileerror1']);
  }

  if (!preg_match ('/^(.+)\\.torrent$/si', $fname, $matches))
  {
    TSStopUpload ($lang->upload['fileerror2']);
  }

  $shortfname = $torrent = $matches[1];
  if (!isset ($_POST['subject']))
  {
    $torrent = unesc ($_POST['subject']);
  }

  $tmpname = $f['tmp_name'];
  if (!@is_uploaded_file ($tmpname))
  {
    TSStopUpload ($lang->upload['uploaderror1']);
  }

  if (!@filesize ($tmpname))
  {
    TSStopUpload ($lang->upload['uploaderror2']);
  }

  if ($xbt_active == 'yes')
  {
    $alink = trim ($xbt_announce_url) . '/' . $CURUSER['torrent_pass'] . '/announce';
    $announce_urls[] = $alink;
  }
  else
  {
    if ($privatetrackerpatch == 'yes')
    {
      $alink = trim ($announce_urls[0]);
    }
    else
    {
      $alink = trim ($announce_urls[0] . '?passkey=' . $CURUSER['torrent_pass']);
    }
  }

  $dict = bdec_file ($tmpname, $max_torrent_size);
  if (!isset ($dict))
  {
    TSStopUpload ($lang->upload['uploaderror3']);
  }

  list ($ann, $info) = dict_check ($dict, 'announce(string):info');
  list ($dname, $plen, $pieces) = dict_check ($info, 'name(string):piece length(integer):pieces(string)');
  $external = false;
  $sql1 = $sql2 = $trackerurl = '';
  $visible = 'no';
  if (($externalscrape == 'yes' AND $ann != $alink))
  {
    $external = true;
    $trackerurl = trim ($ann);
    $sql1 = ',ts_external, ts_external_url';
    $sql2 = ', \'yes\', ' . sqlesc ($ann) . '';
    $visible = 'yes';
  }

  if (($external AND $usergroups['canexternal'] != 'yes'))
  {
    TSStopUpload ($lang->upload['externalerror']);
  }

  if ((($privatetrackerpatch == 'no' AND !$external) AND !in_array ($ann, $announce_urls, 1)))
  {
    $ann = $alink;
  }

  if (strlen ($pieces) % 20 != 0)
  {
    TSStopUpload ($lang->upload['invalidpieces']);
  }

  if (($privatetrackerpatch == 'yes' AND !$external))
  {
    if (((isset ($dict['value']['announce-list']) OR isset ($dict['value']['nodes'])) OR (isset ($dict['value']['azureus_properties']['value']['dht_backup_enable']) AND $dict['value']['azureus_properties']['value']['dht_backup_enable']['value'] != 0)))
    {
      TSStopUpload ($lang->upload['dhterror']);
    }
  }

  $filelist = array ();
  $totallen = dict_get ($info, 'length', 'integer');
  if (isset ($totallen))
  {
    $filelist[] = array ($dname, $totallen);
  }
  else
  {
    $flist = dict_get ($info, 'files', 'list');
    if (!isset ($flist))
    {
      TSStopUpload ($lang->upload['dicterror5']);
    }

    if (!count ($flist))
    {
      TSStopUpload ($lang->upload['dicterror6']);
    }

    $totallen = 0;
    foreach ($flist as $fn)
    {
      list ($ll, $ff) = dict_check ($fn, 'length(integer):path(list)');
      $totallen += $ll;
      $ffa = array ();
      foreach ($ff as $ffe)
      {
        if ($ffe['type'] != 'string')
        {
          TSStopUpload ($lang->upload['dicterror7']);
        }

        $ffa[] = $ffe['value'];
      }

      if (!count ($ffa))
      {
        TSStopUpload ($lang->upload['dicterror7']);
      }

      $ffe = implode ('/', $ffa);
      $filelist[] = array ($ffe, $ll);
    }
  }

  if (($privatetrackerpatch == 'yes' AND !$external))
  {
    $dict['value']['announce'] = bdec (benc_str ($alink));
    $dict['value']['created by'] = bdec (benc_str (('' . 'Created by ' . $anon . ' [' . $SITENAME . ']')));
    $dict['value']['info']['value']['private'] = bdec ('i1e');
    $dict['value']['info']['value']['source'] = bdec (benc_str (('' . $SITENAME . ' [' . $BASEURL . ']')));
    unset ($dict['value'][{'announce-list'}]);
    unset ($dict['value'][nodes]);
    $dict = bdec (benc ($dict));
    list ($ann, $info) = dict_check ($dict, 'announce(string):info');
  }

  if ((strtolower ($_POST['scene']) == 'yes' AND $_contents = isScene (trim ($torrent))))
  {
    $pretime = TIMENOW - TS_MTStoUTS ($_contents);
    $q1 = 'isScene, ';
    $q2 = '' . '\'' . $pretime . '\', ';
  }
  else
  {
    $pretime = $q1 = $q2 = '';
  }

  $torrent = str_replace ('_', ' ', $torrent);
  if (((!isset ($_FILES['t_image_file']) OR !isset ($_POST['t_image_url'])) OR !isset ($_POST['t_link'])))
  {
    include_once INC_PATH . '/class_upload.php';
    $upload = new ts_upload ();
    if ((!isset ($_POST['t_image_url']) AND $_POST['t_image_url'] != $lang->upload['field23']))
    {
      $t_image = fix_url ($_POST['t_image_url']);
      $upload->url = $t_image;
      $upload->file_type = 'image';
      $upload->allowed_ext = array ('gif', 'jpg', 'png');
      $upload->check_url ();
    }
    else
    {
      if (((!isset ($_FILES['t_image_file']) AND !isset ($_FILES['t_image_file']['name'])) AND !isset ($_FILES['t_image_file']['tmp_name'])))
      {
        include_once INC_PATH . '/class_upload2.php';
        $handle = new Upload ($_FILES['t_image_file']);
        if ($handle->uploaded)
        {
          $SQL = '' . 'SHOW
            TABLE STATUS
            FROM
                ' . $mysql_db . '
            LIKE
                \'torrents\'';
          $result = sql_query ($SQL);
          $row = mysql_fetch_assoc ($result);
          $nextInsertId = $row['Auto_increment'];
          $handle->allowed = array ('image/gif', 'image/jpg', 'image/jpeg', 'image/png');
          $allowed = implode (',', $handle->allowed);
          $allowed = str_replace ('image/', '', $allowed);
          $handle->file_new_name_body = $nextInsertId;
          $handle->image_text = $SITENAME;
          $handle->image_text_direction = 'v';
          $handle->image_text_background = '#000000';
          $handle->image_text_font = 1;
          $handle->image_text_position = 'BL';
          $handle->image_text_padding_x = 2;
          $handle->image_text_padding_y = 8;
          $handle->Process (TSDIR . '/' . $torrent_dir . '/images/');
          if ($handle->processed)
          {
            $t_image = $BASEURL . '/' . $torrent_dir . '/images/' . $handle->file_dst_name;
          }
          else
          {
            stderr ($lang->global['error'], sprintf ($lang->upload['invalid_image'], $allowed));
          }

          $handle->Clean ();
        }
      }
    }

    if (!isset ($_POST['t_link']))
    {
      $t_link = fix_url ($_POST['t_link']);
      if (substr ($t_link, 0 - 1, 1) != '/')
      {
        $t_link = '' . $t_link . '/';
      }

      $upload->url = $t_link;
      $upload->valid_link = array ('http://www.imdb.com/title/');
      $upload->file_type = 'imdb';
      $upload->check_url ();
      if (strstr ($t_link, 'imdb'))
      {
        include_once INC_PATH . '/ts_imdb.php';
      }
    }
  }

  $infohash = pack ('H*', sha1 ($info['string']));
  $moderate = ($ModerateTorrent ? '1' : '0');
  ($ret = sql_query ('INSERT INTO torrents (t_image, t_link, filename, ctime, mtime, owner, moderate, visible, anonymous, free, silver, sticky, offensive, info_hash, name, size, numfiles, descr, category, added, ' . $q1 . 'last_action' . $sql1 . ') VALUES (' . implode (',', array_map ('sqlesc', array ((!empty ($t_image) ? $t_image : (!empty ($cover_photo_name) ? $BASEURL . '/' . $cover_photo_name : '')), (!empty ($t_link) ? $t_link : ''), $fname, TIMENOW, TIMENOW, $CURUSER['id'], $moderate, $visible, $anonymous, $free, $silver, $sticky, $offensive, $infohash, $torrent, $totallen, count ($filelist), $descr, 0 + $_POST['type']))) . ', NOW(), ' . $q2 . 'NOW()' . $sql2 . ')') OR sqlerr (__FILE__, 455));
  if (!$ret)
  {
    if (mysql_errno () == 1062)
    {
      TSStopUpload ($lang->upload['sqlerror1']);
    }
    else
    {
      TSStopUpload ($lang->upload['sqlerror2'] . mysql_error ());
    }
  }

  $id = $tid = mysql_insert_id ();
  if (($NFOUPLOADED AND $NFOCONTENTS))
  {
    if ($_POST['nforip'] == 'yes')
    {
      $NewDescr = $BASEURL . '/viewnfo.php?id=' . $id;
      sql_query ('UPDATE torrents SET descr = ' . sqlesc ($NewDescr) . ('' . ' WHERE id = \'' . $id . '\''));
    }

    sql_query ('' . 'REPLACE INTO ts_nfo (id, nfo) VALUES (\'' . $id . '\', ' . sqlesc ($NFOCONTENTS) . ')');
  }

  if (!$external)
  {
    $fp = @fopen ('' . $torrent_dir . '/' . $id . '.torrent', 'w');
    if ($fp)
    {
      @fwrite ($fp, @benc ($dict), @strlen (@benc ($dict)));
      @fclose ($fp);
    }
  }
  else
  {
    $externaltorrent = '' . $torrent_dir . '/' . $id . '.torrent';
    @move_uploaded_file ($tmpname, $externaltorrent);
    include_once INC_PATH . '/ts_external_scrape/ts_external.php';
  }

  if ($CURUSER['anonymous'] == 'yes')
  {
    write_log (sprintf ($lang->upload['writelog1'], $id, $torrent));
  }
  else
  {
    write_log (sprintf ($lang->upload['writelog2'], $id, $torrent, $CURUSER['username']));
  }

  if (!$ModerateTorrent)
  {
    include_once INC_PATH . '/readconfig_kps.php';
    KPS ('+', $kpsupload, $CURUSER['id']);
    $res = sql_query ('SELECT name FROM categories WHERE id=' . sqlesc ($catid));
    $arr = mysql_fetch_assoc ($res);
    $cat = $arr['name'];
    $res = sql_query ('' . 'SELECT u.email FROM users u LEFT JOIN usergroups g ON (u.usergroup=g.gid) WHERE u.enabled=\'yes\' AND u.status=\'confirmed\' AND u.notifs LIKE \'%[cat' . $catid . ']%\' AND u.notifs LIKE \'%[email]%\' AND u.notifs != \'\' AND g.isvipgroup=\'yes\' AND g.canemailnotify=\'yes\'');
    $size = mksize ($totallen);
    $body = sprintf ($lang->upload['emailbody'], $torrent, $size, $cat, $anon, $descr, $BASEURL, $id, $SITENAME);
    $to = '';
    $nmax = 100;
    $nthis = $ntotal = 0;
    $total = mysql_num_rows ($res);
    if (0 < $total)
    {
      while ($arr = mysql_fetch_row ($res))
      {
        if ($nthis == 0)
        {
          $to = $arr[0];
        }
        else
        {
          $to .= ',' . $arr[0];
        }

        ++$nthis;
        ++$ntotal;
        if (($nthis == $nmax OR $ntotal == $total))
        {
          $sm = sent_mail ($to, sprintf ($lang->upload['emailsubject'], $SITENAME, $torrent), $body, 'takeupload', false);
          $nthis = 0;
          continue;
        }
      }
    }

    include_once INC_PATH . '/readconfig_pjirc.php';
    if (($ircbot == 'yes' AND $connect = @fsockopen ($botip, $botport, $errno, $errstr)))
    {
      $botmessage = chr (3) . '9' . chr (2) . ('' . ' ' . $SITENAME) . chr (2) . ' -' . chr (3) . '10 New Torrent: (' . chr (3) . ('' . '13 ' . $torrent) . chr (3) . '10 ) Size: (' . chr (3) . '13 ' . $size . chr (3) . '10 )  Category: (' . chr (3) . '13 ' . $cat . chr (3) . '10 ) Uploader: (' . chr (3) . ('' . '13 ' . $anon) . chr (3) . '10 ) Link: (' . chr (3) . ('' . '13 ' . $BASEURL . '/details.php?id=' . $id) . chr (3) . '10 )

';
      @fwrite ($connect, $botmessage);
      @fclose ($connect);
    }

    require INC_PATH . '/readconfig_shoutbox.php';
    if (($tsshoutbot == 'yes' AND preg_match ('#upload#', $tsshoutboxoptions)))
    {
      $seo_link = ts_seo ($id, $torrent, 's');
      $shoutbOT = sprintf ($lang->upload['shoutbOT'], $seo_link, $torrent, $anon);
      require INC_PATH . '/functions_ajax_chatbot.php';
      TSAjaxShoutBOT ($shoutbOT);
    }

    if (file_exists (TSDIR . '/' . $cache . '/latesttorrents.html'))
    {
      @unlink (TSDIR . '/' . $cache . '/latesttorrents.html');
    }

    if ($use_torrent_details == 'yes')
    {
      redirect ('upload.php?upload_step=3&tid=' . $tid);
    }
    else
    {
      redirect ('details.php?id=' . $tid . '&uploaded=1', sprintf ($lang->upload['writelog2'], $tid, $torrent, $CURUSER['username']));
    }

    exit ();
    return 1;
  }

  $msgtext = sprintf ($lang->upload['modmsgss'], $torrent, $CURUSER['username'], '
' . $BASEURL . '/details.php?id=' . $tid . '');
  $message = sqlesc ($msgtext);
  $subject = sqlesc ($lang->upload['modmsgs']);
  (sql_query ('' . 'INSERT INTO staffmessages (sender, added, msg, subject) VALUES(0, NOW(), ' . $message . ', ' . $subject . ')') OR sqlerr (__FILE__, 569));
  stderr ($lang->upload['head'], $lang->upload['mulmsg']);

?>


Danix 18th October 2010 20:13

Who decode this file?
Can I do this with all files?
If it is to pay how much want?

DrNet 18th October 2010 20:25

decoded by ps2gamer @ decodeby.us , well i know that u r trying to help but u can't request around 700 files to be decoded :) , wait until the online decoders back online again ps2gamer and cyko working hard to add that decoder with the online decoders.:coffee:

fireman 18th October 2010 20:40

I have no problems with giving the proper people credit for the work they do. I was never planning on requesting all the files to be decoded by them its just not fair to them or other users on there. I just wanted to get a idea of what the decoder would decode and what it wouldn't.

DrNet 18th October 2010 21:34

i know dude , let's just pray they will finish it soon :)

Phogo 19th October 2010 12:19

Nice,

i want to see whats inside
functions_ts_remote_connect.php

fireman 19th October 2010 18:51

Quote:

Originally Posted by Phogo (Post 25207)
Nice,

i want to see whats inside
functions_ts_remote_connect.php

PHP Code:

<?php

  
function TS_Clean_String ($imputString)
  {
    
$whatToCleanArray = array (chr (13), chr (10), chr (13) . chr (10), chr (10) . chr (13), '
'
'  ''   ''    ''

'
'
'
'''<br/>''');
    
$cleanWithArray = array ('''''''''''''''''''''''''');
    
$cleaned str_replace ($whatToCleanArray$cleanWithArray$imputString);
    
$cleaned trim ($cleaned);
    return 
$cleaned;
  }

  function 
TS_Fetch_Data ($url$cleantext true)
  {
    @
ini_set ('user_agent''TS_SE via cURL/PHP');
    
$data false;
    if ((
function_exists ('curl_init') AND $ch curl_init ()))
    {
      
$timeout 5;
      
curl_setopt ($chCURLOPT_URL$url);
      
curl_setopt ($chCURLOPT_RETURNTRANSFER1);
      
curl_setopt ($chCURLOPT_CONNECTTIMEOUT$timeout);
      
$data curl_exec ($ch);
      
curl_close ($ch);
    }

    if ((!
$data AND !ini_get ('allow_url_fopen') == 0))
    {
      
$contents '';
      if (
$handle = @fopen ($url'rb'))
      {
        while (!
feof ($handle))
        {
          
$contents .= fread ($handle8192);
        }

        
fclose ($handle);
        
$data $contents;
      }
    }

    if (!
$data)
    {
      
$data file_get_contents ($url);
    }

    return (
$cleantext == true TS_Clean_String ($data) : $data);
  }

  if (!
defined ('IN_TRACKER'))
  {
    exit (
'<font face=\'verdana\' size=\'2\' color=\'darkred\'><b>Error!</b> Direct initialization of this file is not allowed.</font>');
  }

?>

thanks again to ps2gamer for decoding functions_ts_remote_connect.php

Ruffneck 2nd November 2010 17:50

thanx guys !

do u can decoded upload.php ?:(

outlander 3rd November 2010 14:09

thanks m8 can I use it for my website ?


All times are GMT +2. The time now is 05:16.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.