Activity Stream
48,167 MEMBERS
61405 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 8 of 8
  1.     
    #1
    Member
    Website's:
    FlowForums.com

    Default Decode this?

    Can someone help me decode this as it was in a footer that I need.

    PHP Code: 
    <?php eval(base64_decode('Pz4gPC9kaXY+IDwhLS0gTWFpbiBjb250ZW50IGRpdiAtLT4NCg0KPGRpdiBpZD0ic3ViZm9vdGVyIj48P3BocA0KDQokcGFnZXMgPSB3cF9saXN0X3BhZ2VzKCdkZXB0aD0xJnRpdGxlX2xpPSZlY2hvPTAnKTsNCg0KCQkkcGFnZXMyID0gcHJlZ19zcGxpdCgnLyg8bGlbXj5dKj4pLycgLCRwYWdlcyk7DQoNCmZvcmVhY2goJHBhZ2VzMiBhcyAkdmFyKXsNCg0KZWNobyBzdHJfcmVwbGFjZSgnPC9saT4nLCAnJywgJHZhcik7DQoNCn0NCg0KCQk/PjwvZGl2Pg0KDQo8ZGl2IGlkPSJmb290ZXIiPg0KDQo8ZGl2IGlkPSJjb3B5cmlnaHQiPkNvcHlyaWdodCA8P3BocCBlY2hvIGRhdGUgKCdZJyk7ID8+IDxhIGhyZWY9Ijw/cGhwIGJsb2dpbmZvKCd1cmwnKTsgPz4iPjw/cGhwIGJsb2dpbmZvKCduYW1lJyk7ID8+PC9hPi4gPGEgaHJlZj0iaHR0cDovL3d3dy53ZKWWHob3N0aW5nLXdvcmtzLmNvbS8iIHRpdGxlPSJXZWIgaG9zdGluZyIgPldlYiBob3N0aW5nPC9hPi4gPGEgaHJlZj0iaHR0cDovL2xhcHRvcHNuZXdzLmNvbS8iIHRpdGxlPSJMYXB0b3BzIG5ld3MiID5MYXB0b3BzIG5ld3M8L2E+LiA8YSBocmVmPSJodHRwOi8vaXBvZGNvbnZlcnRlcnMub3JnLyIgdGl0bGU9ImlQb2QgY29udmVydGVyIj5pUG9kIGNvbnZlcnRlcjwvYT48L2Rpdj4NCg0KPGRpdiBpZD0ibGlua3MiPjwvZGl2Pg0KDQo8L2Rpdj4gPCEtLSBGb290ZXIgZGl2IC0tPg0KDQo8L2Rpdj4gPCEtLSBXcmFwcGVyIGRpdiAtLT4NCg0KPD9waHAgd3BfZm9vdGVyKCk7ID8+DQo8L2JvZHk+DQoNCjwvaHRtbD4gPD8='));?>
    I have tried to decode and I got it but when I made footer what I decoded it was wrong.

    Any ideas it is on Wordpress.
    -Im.z2ight- Reviewed by -Im.z2ight- on . Decode this? Can someone help me decode this as it was in a footer that I need. <?php Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    base64_decode decodes it, don't use templates/themes with encoded crap, even if the encoded string is safe, just my opinion.

    PHP Code: 
    ?> </div> 
    <!-- Main content div --> 
    <div id="subfooter">
    <?php 
    $pages 
    wp_list_pages('depth=1&title_li=&echo=0');
    $pages2 preg_split('/(<li[^>]*>)/' ,$pages); 

    foreach(
    $pages2 as $var) { 
     echo 
    str_replace('</li>'''$var); 

    ?>
    </div> 

    <div id="footer">
     <div id="copyright">
      Copyright <?php echo date ('Y'); ?> <a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>. <a href="http://www.webhosting-works.com/" title="Web hosting" >Web hosting</a>. <a href="http://laptopsnews.com/" title="Laptops news" >Laptops news</a>. <a href="http://ipodconverters.org/" title="iPod converter">iPod converter</a>
      </div>

       <div id="links"></div> 

      </div> 
    <!-- Footer div --> 
    </div> 
    <!-- Wrapper div --> 
    <?php wp_footer(); ?> 
    </body>
    </html> <?

  4.     
    #3
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org
    You can use this tool in future... http://www.opinionatedgeek.com/dotne.../Base64Decode/

  5.     
    #4
    Member
    Website's:
    FlowForums.com
    I was using that one and I kept getting an error what part of the code do I stick in there?

  6.     
    #5
    Member
    Code: 
    Pz4gPC9kaXY+IDwhLS0gTWFpbiBjb250ZW50IGRpdiAtLT4NCg0KPGRpdiBpZD0ic3ViZm9vdGVyIj48P3BocA0KDQokcGFnZXMgPSB3cF9saXN0X3BhZ2VzKCdkZXB0aD0xJnRpdGxlX2xpPSZlY2hvPTAnKTsNCg0KCQkkcGFnZXMyID0gcHJlZ19zcGxpdCgnLyg8bGlbXj5dKj4pLycgLCRwYWdlcyk7DQoNCmZvcmVhY2goJHBhZ2VzMiBhcyAkdmFyKXsNCg0KZWNobyBzdHJfcmVwbGFjZSgnPC9saT4nLCAnJywgJHZhcik7DQoNCn0NCg0KCQk/PjwvZGl2Pg0KDQo8ZGl2IGlkPSJmb290ZXIiPg0KDQo8ZGl2IGlkPSJjb3B5cmlnaHQiPkNvcHlyaWdodCA8P3BocCBlY2hvIGRhdGUgKCdZJyk7ID8+IDxhIGhyZWY9Ijw/cGhwIGJsb2dpbmZvKCd1cmwnKTsgPz4iPjw/cGhwIGJsb2dpbmZvKCduYW1lJyk7ID8+PC9hPi4gPGEgaHJlZj0iaHR0cDovL3d3dy53ZKWWHob3N0aW5nLXdvcmtzLmNvbS8iIHRpdGxlPSJXZWIgaG9zdGluZyIgPldlYiBob3N0aW5nPC9hPi4gPGEgaHJlZj0iaHR0cDovL2xhcHRvcHNuZXdzLmNvbS8iIHRpdGxlPSJMYXB0b3BzIG5ld3MiID5MYXB0b3BzIG5ld3M8L2E+LiA8YSBocmVmPSJodHRwOi8vaXBvZGNvbnZlcnRlcnMub3JnLyIgdGl0bGU9ImlQb2QgY29udmVydGVyIj5pUG9kIGNvbnZlcnRlcjwvYT48L2Rpdj4NCg0KPGRpdiBpZD0ibGlua3MiPjwvZGl2Pg0KDQo8L2Rpdj4gPCEtLSBGb290ZXIgZGl2IC0tPg0KDQo8L2Rpdj4gPCEtLSBXcmFwcGVyIGRpdiAtLT4NCg0KPD9waHAgd3BfZm9vdGVyKCk7ID8+DQo8L2JvZHk+DQoNCjwvaHRtbD4gPD8=

  7.     
    #6
    Member
    Website's:
    FlowForums.com
    I was leaving in the base64...

    Thanks for the help and it worked.

  8.     
    #7
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org
    Quote Originally Posted by -Im.z2ight- View Post
    I was using that one and I kept getting an error what part of the code do I stick in there?
    It works fine for me, its just the same as the php function...?

    Or just put textarea tags around the base64 line in a file and upload and you will see the code on your own server.

  9.     
    #8
    Member
    Website's:
    FlowForums.com
    Thanks guys!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Decode help?
    By -Im.z2ight- in forum Wordpress
    Replies: 4
    Last Post: 18th Feb 2012, 01:05 AM
  2. Decode help?
    By -Im.z2ight- in forum Web Development Area
    Replies: 1
    Last Post: 12th Jan 2012, 10:42 PM
  3. Help Decode this
    By -Im.z2ight- in forum Web Development Area
    Replies: 10
    Last Post: 16th Aug 2011, 04:10 AM

Tags for this Thread

BE SOCIAL