clipbucket/upload/admin_area/phpinfo.php

34 lines
1.2 KiB
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?php
2009-12-25 19:26:02 +00:00
/*
****************************************************************************************************
2012-08-01 08:43:51 +00:00
| Copyright (c) 2007-2012 Clip-Bucket.com. All rights reserved. |
2009-12-25 19:26:02 +00:00
| @ Author : ArslanHassan |
2012-08-01 08:43:51 +00:00
| @ Software : ClipBucket , <EFBFBD> PHPBucket.com |
2009-12-25 19:26:02 +00:00
****************************************************************************************************
*/
2009-08-25 12:16:42 +00:00
require'../includes/admin_config.php';
$userquery->admin_login_check();
2012-08-01 08:43:51 +00:00
subtitle("Phpinfo");
ob_start();
2009-08-25 12:16:42 +00:00
phpinfo();
2012-08-01 08:43:51 +00:00
$phpinfo = ob_get_contents();
ob_end_clean();
$phpinfo = preg_replace('/\<\!DOCTYPE(.*)\.dtd\"\>/','',$phpinfo);
$phpinfo = preg_replace('/<style[^>]*?>.*?<\/style>/si','',$phpinfo);
$phpinfo = preg_replace('/<title>.*?"center">/si','',$phpinfo);
$phpinfo = preg_replace('/<html><head>/','',$phpinfo);
$phpinfo = preg_replace ('/<\/div><\/body><\/html>/', '', $phpinfo);
//Add Class
$phpinfo = preg_replace('/<table border="0" cellpadding="3" width="600">/',
'<table border="0" class="table table-striped table-bordered" cellpadding="3" width="600">',$phpinfo);
assign('phpinfo',$phpinfo);
template_files('phpinfo.html');
display_it();
2009-08-25 12:16:42 +00:00
?>