Trying to decode WP template.php file starting with...

Discussion in 'Programming' started by caridiaz, Mar 25, 2010.

  1. #1
    The template.php file has the following encoding that starts with

    <?php
    eval(base64_decode

    i've seen a few places that decode this type of files but only up to 10mb. this is unfortunately 12.5mbs.

    does anyone have a suggestion of where or how i can decode this file?

    thanks
    Cari!
     
    caridiaz, Mar 25, 2010 IP
  2. mnvlxxx

    mnvlxxx Peon

    Messages:
    47
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You should have "something" in front of that like:
    
    eval(base64_decode(<something>));
    
    Code (markup):
    Replace that with:
    
    echo base64_decode(<something>);
    
    Code (markup):
    Maybe this works.
     
    mnvlxxx, Mar 26, 2010 IP
  3. caridiaz

    caridiaz Guest

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks for the tip. once i end the template.php file with this, what do i do then?

    the decoding sites that i found only handle under 10mb, this file is 12.5 mb. any suggestions?

    thanks!
     
    caridiaz, Mar 26, 2010 IP