- 1000 - Japan (WiFi)
- 1100 - Japan (3G)
- 1001 - USA (WiFi)
- 1101 - USA (3G)
- 1002 - Australia / New Zealand (WiFi)
- 1102 - Australia / New Zealand (3G)
- 1003 - UK (WiFi)
- 1103 - UK (3G)
- 1004 - EU (WiFi)
- 1104 - EU (3G)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if(session_status() == PHP_SESSION_NONE){ | |
| session_start(); | |
| }//PHP >= 5.4.0, PHP 7 | |
| if(session_id() == ''){ | |
| session_start(); | |
| }//PHP < 5.4.0 | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $_webhook = "webhook_url"; | |
| $_blob = json_encode(["content" => (md5(time())),"username" => "username_to_publish"]); | |
| $_discord = curl_init(); | |
| curl_setopt($_discord,CURLOPT_URL,$_webhook); | |
| curl_setopt($_discord,CURLOPT_POST,1); | |
| curl_setopt($_discord,CURLOPT_HTTPHEADER,["Content-Type:Application/JSON"]); | |
| curl_setopt($_discord,CURLOPT_POSTFIELDS,$_blob); | |
| curl_setopt($_discord,CURLOPT_SSL_VERIFYPEER,0); | |
| curl_setopt($_discord,CURLOPT_RETURNTRANSFER,1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private $_servers = [ | |
| "ac" => "whois.nic.ac", | |
| "ae" => "whois.aeda.net.ae", | |
| "aero" => "whois.aero", | |
| "af" => "whois.nic.af", | |
| "ag" => "whois.nic.ag", | |
| "al" => "whois.ripe.net", | |
| "am" => "whois.amnic.net", | |
| "as" => "whois.nic.as", | |
| "asia" => "whois.nic.asia", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| void delay(int nos){ | |
| int ms = 1000 * nos; | |
| clock_t st = clock(); | |
| while(clock() < st + ms); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| protected static function expression($_currency = []){ | |
| $_request = []; | |
| $_request["global"] = "/\<td\sclass\=\'rtRates\'\>\<a\shref\=\'(http|https)\:\/\/([a-z\-.]+)\/([a-z]+)\/([a-zA-Z0-9?=\;&\_]+)\'\>([0-9.]+)\<\/a\>\<\/td\>/i"; | |
| $_request["switch"] = "/\<td\sclass\=\'rtRates\'\>\<a\shref\=\'(http|https)\:\/\/([a-z\-.]+)\/([a-z]+)\/\?from\=".$_currency["from"]."\&\;to\=".$_currency["to"]."\'\>([0-9.]+)\<\/a\>\<\/td\>/i"; | |
| return($_request["switch"]); | |
| }// | |
| //Regular Expression for getting Forex Declaration Values.. | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Shadow Breaker - 15 Digit IMEI Generator.. | |
| class shadow{ | |
| //7 + 8 = 15 Digit IMEI.. | |
| public static function breaker(){ | |
| $_byte = NULL; | |
| $_entryPoint = "8607020"; | |
| $_count = "99999999"; | |
| $_digits = count(str_split($_count,1)); | |
| $_hash = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class shadow{ | |
| //Beak = Variable.. | |
| //Prey = Function.. | |
| //Protected and Private = Accessed within the Scope.. | |
| //Public = Accessed outside the Scope.. | |
| public static $beak = "eagles"; | |
| public static function prey(){ | |
| self::$beak = "snakes"; | |
| return(self::$beak); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $_string = "username=admin"; | |
| $_string = preg_replace("/username\=(\w+)/",'<li>${1}</li>',$_string); | |
| echo($_string."\r\n"); | |
| //String Interpolation using PHP Regular Expression.. | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $_emailaddress = readline("Email Address:\r\n"); | |
| $_listid = "Database or List ID"; | |
| $_apikey = "Mailchimp API Key"; | |
| $_datacenter = substr($_apikey,strpos($_apikey,"-")+1); | |
| $_url = "https://".($_datacenter).".api.mailchimp.com/3.0/lists/".($_listid)."/members"; | |
| $_data = json_encode([ | |
| "email_address" => $_emailaddress, | |
| "status" => "subscribed" | |
| ]); |