欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

批量加密php文件的破解篇~

程序员文章站 2022-04-08 22:27:52
...
php代码
<?php
if(isset($_SERVER['argv'][1]) && file_exists($_SERVER['argv'][1])) {
	$file = $_SERVER['argv'][1];
	$content = preg_replace('/(\$lll1ll1l1l1l1=")(\S.*)(";.*)/', '$2', base64_decode(preg_replace('/.*eval\(\$o0o0o00ll11l1\("(\S.*)"\)\);.*/', '$1', strtr(file_get_contents($file), array("\n" => ' ', "\r" => ' ')))));
	$content = base64_decode(strtr(substr($content, 52 * 2), substr($content, 52, 52), substr($content, 0, 52)));
	$file = pathinfo($file);
	$file = $file['dirname'].DIRECTORY_SEPARATOR.$file['filename'].'.cracked.'.$file['extension'];
	file_put_contents($file, $content);
	echo $file." done!\n";
} else {
	echo "no file input or file not exist!\n";
}