encode this file

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    encode this file

    anyone can encode this zip archive php files i try to encode but i unsuccesfull pls do this for me i am very thanx full to u
    Attached Files

    #2
    its already encoded man ...you have to decode that

    Comment


      #3
      Originally posted by rdxmob View Post
      anyone can encode this zip archive php files i try to encode but i unsuccesfull pls do this for me i am very thanx full to u
      PHP Code:
      <?php 
      $theme 
      ''.htmlspecialchars($_GET['file']).'';
      $type =strstr($file,'.');
      $name 'prowap/'.str_replace('/','--prowap----',$theme).'.gif';
      $location 'http://'.str_replace(array('\\','//'),array('/','/'),$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/'.$name);
      if(
      file_exists($name)){
      header('Location: '.$location,true,301);
      exit;
      }
      include(
      'setup.php');
      $size explode('*',$themepreview);
      $g_preview_image_w round(intval($size[0]));
      $g_preview_image_h round(intval($size[1]));
      if(
      $type == '.nth'){
      include 
      'req/pclzip.lib.php';
      $nth = &new PclZip($theme);
      $content $nth->extract(PCLZIP_OPT_BY_NAME,'theme_descriptor.xml',PCLZIP_OPT_EXTRACT_AS_STRING);
      if(!
      $content){
      $content $nth->extract(PCLZIP_OPT_BY_PREG,'\.xml$',PCLZIP_OPT_EXTRACT_AS_STRING);
      }
      $teg simplexml_load_string($content[0]['content'])->wallpaper['src'] or $teg simplexml_load_string($content[0]['content'])->wallpaper['main_display_graphics'];
      $image $nth->extract(PCLZIP_OPT_BY_NAME,trim($teg),PCLZIP_OPT_EXTRACT_AS_STRING);
      $im array_reverse(explode('.',$teg));
      $im 'imageCreateFrom'.str_ireplace('jpg','jpeg',trim($im[0]));
      file_put_contents($name,$image[0]['content']);
      $f $im($name);
      $h imagesy($f);
      $w imagesx($f);
      $ratio $w/$h;
      if(
      $g_preview_image_w/$g_preview_image_h >$ratio){
      $g_preview_image_w $g_preview_image_h*$ratio;
      }
      else{
      $g_preview_image_h $g_preview_image_w/$ratio;
      }
      $new imagecreatetruecolor($g_preview_image_w,$g_preview_image_h);
      imagecopyresampled($new,$f,0,0,0,0,$g_preview_image_w,$g_preview_image_h,$w,$h);
      imageGif($new,$name);
      }
      elseif(
      $type == '.thm'){
      include 
      'req/tar.php';
      $thm = &new Archive_Tar($theme);
      if(!
      $file=$thm->extractInString('Theme.xml') or !$file=$thm->extractInString(pathinfo($theme,PATHINFO_FILENAME).'.xml')){
      $list $thm->listContent();
      $all sizeof($list);
      for(
      $i=0;$i<$all;++$i){
      if(
      pathinfo($list[$i]['filename'],PATHINFO_EXTENSION) == 'xml'){
      $file $thm->extractInString($list[$i]['filename']);
      break;
      }
      }
      }
      if(!
      $file){
      preg_match('/<\?\s*xml\s*version\s*=\s*"1\.0"\s*\?>(.*)<\/.+>/isU',file_get_contents($theme),$arr);
      $file trim($arr[0]);
      }
      $load trim((string)simplexml_load_string($file)->Standby_image['Source']);
      if(
      strtolower(strrchr($load,'.'))=='.swf'){
      $load '';
      }
      if(!
      $load){
      $load trim((string)simplexml_load_string($file)->Desktop_image['Source']);
      }
      if(
      strtolower(strrchr($load,'.'))=='.swf'){
      $load '';
      }
      if(!
      $load){
      $load trim((string)simplexml_load_string($file)->Desktop_image['Source']);
      }
      if(
      strtolower(strrchr($load,'.'))=='.swf'){
      $load '';
      }
      if(!
      $load){
      exit;
      }
      $image $thm->extractInString($load);
      $im array_reverse(explode('.',$load));
      $im 'imageCreateFrom'.str_ireplace('jpg','jpeg',trim($im[0]));
      file_put_contents($name,$image);
      $f $im($name);
      $h imagesy($f);
      $w imagesx($f);
      $ratio $w/$h;
      if(
      $g_preview_image_w/$g_preview_image_h >$ratio){
      $g_preview_image_w $g_preview_image_h*$ratio;
      }
      else{
      $g_preview_image_h $g_preview_image_w/$ratio;
      }
      $new imagecreatetruecolor($g_preview_image_w,$g_preview_image_h);
      imagecopyresampled($new,$f,0,0,0,0,$g_preview_image_w,$g_preview_image_h,$w,$h);
      imageGif($new,$name);
      }
      header('Location: '.$location,true,301);
      ?>

      Comment


        #4
        ur lot of thanx i am very happy can u tell me how to do this

        Comment


          #5
          @ amylee where you decoded this man ...share with us

          Added after 3 minutes:

          also try to decode this man
          Attached Files
          Last edited by wap4ads; 16.02.11, 07:57.

          Comment

          Working...
          X