kevinbanet
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in here@thehipcola, please search first before posting. This one has already been decoded by myself around 1 month ago. See this link for the details:
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in hereDecoded: https://pastebin.com/Ux4c10Uc
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in hereThat’s not PHP encoded. It seems to be something related to form. PKCS7 is used to sign and/or encrypt messages under a PKI. It can also be used for certificate dissemination. Maybe the site using this is ensuring that the page hasn’t been tampered with.
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in hereDecoded file: https://wordpress.pastebin.com/YSr4mXqF
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in here@i1000a
The file has been tampered with. It is a variation of PHPLockIt which can be easily decoded. Make sure you are providing the un-tampered file.
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in herePost the file on pastebin and I’ll help you in decoding it.
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in hereDecoded: https://pastebin.com/3Jt0Us9v
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in here@z2:
Forum: Themes and Templates
In reply to: Posts requests for theme decoding in hereYour theme was obfuscated. In decoded form it can be seen at https://wordpress.pastebin.ca/1869595
Forum: Themes and Templates
In reply to: Base64 coding? Hidden adYour ad is coming from this line:
$credit_text2 = file_get_contents("https://www.wordpresstemplates.com/form_work2/?url=".get_bloginfo('url')."&installed=".get_option("template_install_date"));
Modify the code as follows:
function start_template() { $credit_text2 = ''; echo $credit_text2; } if(get_option("template_install_date") == "") { add_option("template_install_date", time()); }
Forum: Themes and Templates
In reply to: Base64 coding? Hidden adHere it is in decoded form:
function start_template() { global $reftime; $updated = get_option("credit_date2"); if ((time() - $updated) > (24 * 3600 * $reftime)) { $credit_text2 = file_get_contents("https://www.wordpresstemplates.com/form_work2/?url=".get_bloginfo('url')."&installed=".get_option("template_install_date")); update_option("credit_text2",$credit_text2); update_option("credit_date2",time()); } else { $credit_text2 = get_option("credit_text2"); } echo $credit_text2; } if(get_option("template_install_date") == "") { add_option("template_install_date", time()); }
Forum: Themes and Templates
In reply to: Decode Base64 Footer PleaseForum: Themes and Templates
In reply to: Decode Base64 Footer PleaseForum: Themes and Templates
In reply to: Grey Tutu footer</div> <div id="footer"> <div id="footer_text"> © All Rights Reserved. <a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a> </div> <div id="footer_copyrights"> <a href="https://www.askgraphics.com/" title="blog design">Blog Design</a> | <a href="https://www.radiantorange.com/" title="web hosting">web hosting</a> | <a href="https://lyricsmusic.name/" title="Lyrics">Lyrics</a><br /> Download from <a href="https://freewpthemes.name" title="Wordpress themes">Wordpress Themes</a> </div> </div> </div> </div> </body> </html>
Forum: Fixing WordPress
In reply to: Unknown code in footer can someone help<div class="clear"></div> </div> <div id="footer"> © <?php echo date('Y'); bloginfo('name');?> <br /> <a href="https://topwpthemes.com/remedy/" >'Remedy WP Theme'</a> Designed by <a href="https://webhostinggeeks.com" >'Web Hosting Geeks'</a> </div> </div> <?php wp_footer(); ?> </body> </html>