order deny,allow deny from all allow from all #Uncomment the 3 lines below, ONLY when you want to run the checker.php! # #allow from all # allow from all allow from all allow from all allow from all allow from all allow from all allow from all allow from all allow from all deny from all

Pages

visitor

free counters

counter

click for a free hit counter
Download a free hit counter here.

search latest game softwear anything from here

search more rapid share filefile

rapidshar downloader just add the url

Monday, November 22, 2010

error_reporting(0);
set_time_limit(0);
define('RAPIDLEECH', 'yes');
define('CLASS_DIR', 'classes/');
define('CONFIG_DIR', 'configs/');
require_once(CONFIG_DIR."config.php");
require_once(CLASS_DIR . 'other.php');
define ( 'TEMPLATE_DIR', 'templates/'.$options['template_used'].'/' );
// For ajax calls, lets make it use less resource as possible
switch ($_GET['ajax']) {
case 'server_stats':
if ($options['server_info'] && $options['ajax_refresh']) {
ob_start();
require(CLASS_DIR."sinfo.php");
ob_end_clean();
$AjaxReturn = array();
$AjaxReturn['FreeSpace'] = ZahlenFormatieren($frei);
$AjaxReturn['InUse'] = ZahlenFormatieren($belegt);
$AjaxReturn['InUsePercent'] = round($prozent_belegt,"2");
$AjaxReturn['DiskPercent'] = round($prozent_belegt,"2");
$AjaxReturn['DiskSpace'] = ZahlenFormatieren($insgesamt);
$AjaxReturn['CPULoad'] = round($cpulast,"0");
$AjaxReturn['CPUPercent'] = round($cpulast, "2");
echo array_to_json($AjaxReturn);
}
break;
case 'linkcheck':
require_once(CLASS_DIR.'linkchecker.php');
if(isset($_POST['debug'])) {
if($debug == 1)
debug();
else
echo lang(16);
if ($_POST['k'] == 1) {
$kl = 1;
$l = 0;
}
}
if (isset($_POST['submit'])) {
$alllinks = $_POST['links'];
$alllinks = explode(" ", $alllinks);
$alllinks = implode("\n", $alllinks);
$alllinks = explode("\n", $alllinks);
$l = 1;
$x = 1;

$alllinks = array_unique($alllinks); //removes duplicates
foreach($alllinks as $link) {
if (empty($link)) continue;
$link = trim($link);
if(eregi("^(http)\:\/\/(www\.)?anonym\.to\/\?", $link)){
$link = explode("?", $link);
unset($link[0]);
$link = implode($link, "?");
if($kl == 1)
echo"\n";
flush();
}

if(eregi("^(http)\:\/\/(www\.)?lix\.in\/", $link)){
$post = 'tiny='.trim(substr(strstr($link, 'n/'), 2)).'&submit=continue';
preg_match('@name="ifram" src="(.+?)"@i', curl($link, $post), $match);
$link = $match[1];
if($kl == 1)
echo"\n";
flush();
}

if(eregi("^(http)\:\/\/(www\.)?linkbucks\.com\/link\/" , $link)) {
$page = curl($link);
preg_match("//" , $page , $match);
$link = $match[1];
if($kl == 1)
echo"
\n";
flush();
}

if(eregi("usercash\.com" , $link)) {
$page = curl($link);
preg_match("/(.+)<\/TITLE>/" , $page , $match); <br /> $link = $match[1]; <br /> if($kl == 1) <br /> echo"<div class=\"n\"><a href=\"$link\"><b>$link</b></a></div>\n"; <br /> flush(); <br /> } <br /> <br /> if(eregi("rapidshare\.com\/users\/" , $link)) { <br /> $page = curl($link); <br /> preg_match_all("/<a href=\"(.+)\" target=\"_blank\">/" , $page , $match); <br /> unset($match[1][0]); <br /> foreach($match[1] as $link) <br /> { <br /> if($l == 1) <br /> { <br /> check(trim($link), $x, "You would like to download the following file::" ); <br /> $x++; <br /> } <br /> if($kl == 1) <br /> echo"<div class=\"n\"><a href=\"$link\"><b>$link</b></a></div>\n"; <br /> flush(); <br /> } <br /> } <br /> <br /> if($l == 1) { <br /> foreach($sites as $site) { <br /> if(preg_match('@'.$site['link'].'@i', $link)) { <br /> $pattern = ''; <br /> $replace = ''; <br /> if (isset($site['pattern'])) $pattern = $site['pattern']; <br /> if (isset($site['replace'])) $replace = $site['replace']; <br /> check(trim($link), $x, $site['regex'], $pattern, $replace); <br /> $x++; <br /> } <br /> } <br /> <br /> if($x > $maxlinks) { <br /> echo "<p style=\"text-align:center\">"; <br /> printf(lang(17),$maxlinks); <br /> echo('</p>'); <br /> include(TEMPLATE_DIR.'/footer.php'); <br /> exit(); <br /> } <br /> } <br /> } <br /> $time = explode(" ", microtime()); <br /> $time = $time[1] + $time[0]; <br /> $endtime = $time; <br /> $totaltime = ($endtime - $begintime); <br /> $x--; <br /> $plural = ($x == 1) ? "" : lang(19); <br /> ($options['fgc'] == 0) ? $method = 'cURL' : $method = 'file_get_contents'; <br /> echo "<p style=\"text-align:center\">"; <br /> printf(lang(18),$x,$plural,$totaltime,$method); <br /> echo "</p>"; <br /> } <br /> break; <br />} <br /> <br />function array_to_json( $array ){ <br /> <br /> if( !is_array( $array ) ){ <br /> return false; <br /> } <br /> <br /> $associative = count( array_diff( array_keys($array), array_keys( array_keys( $array )) )); <br /> if( $associative ){ <br /> <br /> $construct = array(); <br /> foreach( $array as $key => $value ){ <br /> <br /> // We first copy each key/value pair into a staging array, <br /> // formatting each key and value properly as we go. <br /> <br /> // Format the key: <br /> if( is_numeric($key) ){ <br /> $key = "key_$key"; <br /> } <br /> $key = "'".addslashes($key)."'"; <br /> <br /> // Format the value: <br /> if( is_array( $value )){ <br /> $value = array_to_json( $value ); <br /> } else if( !is_numeric( $value ) || is_string( $value ) ){ <br /> $value = "'".addslashes($value)."'"; <br /> } <br /> <br /> // Add to staging array: <br /> $construct[] = "$key: $value"; <br /> } <br /> <br /> // Then we collapse the staging array into the JSON form: <br /> $result = "{ " . implode( ", ", $construct ) . " }"; <br /> <br /> } else { // If the array is a vector (not associative): <br /> <br /> $construct = array(); <br /> foreach( $array as $value ){ <br /> <br /> // Format the value: <br /> if( is_array( $value )){ <br /> $value = array_to_json( $value ); <br /> } else if( !is_numeric( $value ) || is_string( $value ) ){ <br /> $value = "'".addslashes($value)."'"; <br /> } <br /> <br /> // Add to staging array: <br /> $construct[] = $value; <br /> } <br /> <br /> // Then we collapse the staging array into the JSON form: <br /> $result = "[ " . implode( ", ", $construct ) . " ]"; <br /> } <br /> <br /> return $result; <br />} <br />?> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Posted by <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/08869079014553693525' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/08869079014553693525' rel='author' title='author profile'> <span itemprop='name'>muhammad muddasir younus</span> </a> </span> </span> <span class='post-timestamp'> at <meta content='http://coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html' itemprop='url'/> <a class='timestamp-link' href='http://coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2010-11-22T00:15:00-08:00'>12:15 AM</abbr></a> </span> <span class='post-comment-link'> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1062670962'> <a href='https://www.blogger.com/post-edit.g?blogID=4047398307876270182&postID=278893240506663363&from=pencil' title='Edit Post'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4>No comments:</h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>Post a Comment</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/4047398307876270182?po=278893240506663363&hl=en&saa=85391&origin=http://coolsthing.blogspot.com' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/2830521187-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </p> </div> </div> <div class='inline-ad'> <script type="text/javascript"><!-- google_ad_client="pub-0634695007379756"; google_ad_host="pub-1556223355139109"; google_ad_width=300; google_ad_height=250; google_ad_format="300x250_as"; google_ad_type="text_image"; google_ad_host_channel="00000"; google_color_border="FFFFFF"; google_color_bg="FFFFFF"; google_color_link="29303B"; google_color_url="473624"; google_color_text="1B0431"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://coolsthing.blogspot.com/2010/11/rapidleech-plugmod-eqbal-rev.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://coolsthing.blogspot.com/2010/01/movie-info-released-22nd-january-2010.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='http://coolsthing.blogspot.com/'>Home</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> Subscribe to: <a class='feed-link' href='http://coolsthing.blogspot.com/feeds/278893240506663363/comments/default' target='_blank' type='application/atom+xml'>Post Comments (Atom)</a> </div> </div> </div></div> <div id='footer-wrapper'> <div class='footer no-items section' id='footer'></div> </div> </div></div> <div id='main-bot'></div> <!-- placeholder for image --> </div> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/387437488-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AEUoTZo9Uo4ta1qhpU-RE0EEBB0c:1781084831362';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d4047398307876270182','//coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html','4047398307876270182'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '4047398307876270182', 'title': 'every thing', 'url': 'http://coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html', 'canonicalUrl': 'http://coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html', 'homepageUrl': 'http://coolsthing.blogspot.com/', 'searchUrl': 'http://coolsthing.blogspot.com/search', 'canonicalHomepageUrl': 'http://coolsthing.blogspot.com/', 'blogspotFaviconUrl': 'http://coolsthing.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22every thing - Atom\x22 href\x3d\x22http://coolsthing.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22every thing - RSS\x22 href\x3d\x22http://coolsthing.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22every thing - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/4047398307876270182/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22every thing - Atom\x22 href\x3d\x22http://coolsthing.blogspot.com/feeds/278893240506663363/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-0634695007379756', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/a4f7419047e668cf', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '278893240506663363', 'pageName': '', 'pageTitle': 'every thing'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'isResponsive': false, 'isAlternateRendering': false, 'isCustom': false}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'every thing', 'description': 'error_reporting(0);\r set_time_limit(0);\r define(\x27RAPIDLEECH\x27, \x27yes\x27);\r define(\x27CLASS_DIR\x27, \x27classes/\x27);\r define(\x27CONFIG_DIR\x27, \x27configs/\x27);\r ...', 'url': 'http://coolsthing.blogspot.com/2010/11/php-errorreporting0-settimelimit0.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 278893240506663363}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'crosscol', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'crosscol', document.getElementById('PageList1'), {'title': 'Pages', 'links': [{'isCurrentPage': false, 'href': 'http://coolsthing.blogspot.com/', 'title': 'Home'}], 'mobile': false, 'showPlaceholder': true, 'hasCurrentPage': false}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'crosscol', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'crosscol', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'crosscol', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'crosscol', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'crosscol', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AdSenseView', new _WidgetInfo('AdSense1', 'sidebar', document.getElementById('AdSense1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text1', 'sidebar', document.getElementById('Text1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'sidebar', document.getElementById('BlogSearch1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PollView', new _WidgetInfo('Poll1', 'sidebar', document.getElementById('Poll1'), {'pollid': '3744105445486488181', 'iframeurl': '/b/poll-results?pollWidget\x3dPoll1\x26txtclr\x3d%2329303b\x26lnkclr\x3d%23473624\x26chrtclr\x3d%23473624\x26font\x3dnormal+normal+100%25+Georgia,+Times+New+Roman,Sans-Serif;\x26hideq\x3dtrue\x26purl\x3dhttp://coolsthing.blogspot.com/'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/1053750561-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull')); </script> </body> </html>