Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
April 26, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 856
Members: 0
Total: 856
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> Could you decode this for me??
Post new topic  Reply to topic View previous topic :: View next topic 
Could you decode this for me??
PostPosted: Fri Dec 06, 2013 4:03 pm Reply with quote
juanf03
Beginner
Beginner
 
Joined: Dec 06, 2013
Posts: 2




Hey, I saw you know how to decode this php code and I implore you to help me Very Happy

Thanks in advance, here's the code:

https://drive.google.com/file/d/0B6Iu9ScJmhpEMm9hOXowN2xLdk0/edit?usp=sharing
View user's profile Send private message
Re: Could you decode this for me??
PostPosted: Fri Dec 06, 2013 4:53 pm Reply with quote
vv456
Advanced user
Advanced user
 
Joined: Aug 24, 2012
Posts: 190




juanf03 wrote:
Hey, I saw you know how to decode this php code and I implore you to help me Very Happy

Thanks in advance, here's the code:

https://drive.google.com/file/d/0B6Iu9ScJmhpEMm9hOXowN2xLdk0/edit?usp=sharing


Code:
<?php
$qad="21";$wsm="12";$rdy="2013";if(mktime(0,0,0,date("m"),date("d"),date("Y"))>mktime(0,0,0,intval($wsm),intval($qad),intval($rdy))){die("Script expired!");}class SimpleXMLExtended extends SimpleXMLElement{public function addCData($cdata_text){$node=dom_import_simplexml($this);$no=$node->ownerDocument;$node->appendChild($no->createCDATASection($cdata_text));}}class jqGridUtils{public static$days3=array("Mon","Tue","Wed","Thu","Fri","Sat","Sun");public static$days=array("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");public static$month3=array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");public static$month=array("January","February","March","April","May","June","July","August","September","October","November","December");public static$types=array("d"=>"([0-9]{2})","D"=>"([a-zA-z]{3})","j"=>"([0-9]{1,2})","l"=>"([A-Z][a-z]{4,7})","N"=>"([1-7])","S"=>"(st|nd|rd|th)","w"=>"([0-6])","z"=>"([0-9]{3})","W"=>"([0-9]{2})","F"=>"([A-Z][a-z]{2,8})","m"=>"([0-9]{2})","M"=>"([A-Za-z]{3})","n"=>"([0-9]{1,2})","t"=>"(28|29|30|31)","L"=>"(1|0)","o"=>"([0-9]{4})","Y"=>"([0-9]{4})","y"=>"([0-9]{2})","a"=>"(am|pm)","A"=>"(AM|PM)","B"=>"([0-9]{3})","g"=>"([1-12])","G"=>"([0-23])","h"=>"([0-9]{2})","H"=>"([0-9]{2})","i"=>"([0-9]{2})","s"=>"([0-9]{2})","u"=>"([0-9]{1,5})","e"=>"([A-Za-z0-9_]{3,})","I"=>"(1|0)","O"=>"(+[0-9]{4})","P"=>"(+[0-9]{2}:[0-9]{2})","T"=>"([A-Z]{1,4})","Z"=>"(-?[0-9]{1,5})","c"=>"(\d\d\d\d)(?:-?(\d\d)(?:-?(\d\d)(?:[T](\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(?:Z|(?:([-+])(\d\d)(?::?(\d\d))?)?)?)?)?)?","r"=>"([a-zA-Z]{2,}),\040(\d{1,})\040([a-zA-Z]{2,})\040([0-9]{4})\040([0-9]{2}):([0-9]{2}):([0-9]{2})\040([+-][0-9]{4})","U"=>"(\d+)");public static$patrVal="";public static function toXml($data,$rootNodeName='root',$xml=null,$encoding='utf-8',$cdata=false){if(ini_get("zend.ze1_compatibility_mode")==1){ini_set("zend.ze1_compatibility_mode",0);}if($xml==null){$xml=new SimpleXMLExtended("<?xml version='1.0' encoding='".$encoding."'?><$rootNodeName />");}foreach($data as$key=>$value){if(is_numeric($key)){$key="row";}if(is_array($value)||is_object($value)){$node=$xml->addChild($key);self::toXml($value,$rootNodeName,$node,$encoding,$cdata);}else{$value=is_bool($value)?($value?"true":"false"):$value;$value=htmlspecialchars($value);if($cdata===true){$node=$xml->addChild($key);$node->addCData($value);}else{$xml->addChild($key,$value);}}}return$xml->asXML();}public static function quote($js,$forUrl=false){if($forUrl)return strtr($js,array("%"=>"%25","\t"=>"\\t","\n"=>"\\n","\r"=>"\r","\""=>"\\"","'"=>"\\'","\"=>"\\"));else return strtr($js,array("\t"=>"\t","\n"=>"\\n","\r"=>"\r","\""=>"\\\"","'"=>"\\'","\"=>"\\\","'"=>"'","/"=>"\\/"));}public static function encode($value){if(is_string($value)){if(strpos($value,"js:")===0)return substr($value,3);else return"\"".self::quote($value)."\"";}else if($value===null)return"null";else if(is_bool($value))return$value?"true":"false";else if(is_integer($value))return"$value";else if(is_float($value)){if($value===-INF)return"Number.NEGATIVE_INFINITY";else if($value===INF)return"Number.POSITIVE_INFINITY";else return"$value";}else if(is_object($value))return self::encode(get_object_vars($value));else if(is_array($value)){$es=array();if(($n=count($value))>0&&array_keys($value)!==range(0,$n-1)){foreach($value as$k=>$v)$es[]="\"".self::quote($k)."\":".self::encode($v);return"{".implode(",",$es)."}";}else{foreach($value as$v)$es[]=self::encode($v);return"[".implode(",",$es)."]";}}else return"";}public static function decode($json){$json=str_replace(array("\\\","\\""),array("\","""),$json);$parts=preg_split("@(\"[^\"]*\")|([\[\\]\{\},:])|\\s@is",$json,-1,PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);foreach($parts as$index=>$part){if(strlen($part)==1){switch($part){case"[":case"{":$parts[$index]="array(";break;case"]":case"}":$parts[$index]=")";break;case":":$parts[$index]="=>";break;case",":break;default:return null;}}else{if((substr($part,0,1)!="\"")||(substr($part,-1,1)!="\"")){return null;}}}$json=str_replace(array("\",""","\$"),array("\\\","\\\"","\\\$"),implode("",$parts));return eval("return $json;");}public static function Strip($value){if(get_magic_quotes_gpc()!=0){if(is_array($value)){if(0!==count(array_diff_key($value,array_keys(array_keys($value))))){foreach($value as$k=>$v){$tmp_val[$k]=stripslashes($v);}$value=$tmp_val;}else{for($j=0;$j<sizeof($value);$j++){$value[$j]=stripslashes($value[$j]);}}}else{$value=stripslashes($value);}}return$value;}public static function generatePattern($dateformat){$k=0;$datearray=preg_split("//",$dateformat);$patternkey=array();self::$patrVal="";for($i=0;$i<count($datearray);$i++){if(isset($datearray[$i-1])&&$datearray[$i-1]=="@"){$patternkey[$i]=$datearray[$i];}elseif($datearray[$i]=="@"){$patternkey[$i]="";}elseif($datearray[$i]==" "){$patternkey[$i]="\040";}elseif(in_array($datearray[$i],array_keys(self::$types))){$patternkey[$i]=self::$types[$datearray[$i]];self::$patrVal[$k]=array_search($datearray[$i],array_keys(self::$types));$k++;}else{$patternkey[$i]=$datearray[$i];}}$patternkey=implode("",$patternkey);return"/".$patternkey."/";}public static function date_parse($dateformat,$date){$newdate="";$dateformat=str_replace(array("\\","\t","/"),array("@","@t","~"),$dateformat);$date=str_replace("/","~",$date);$pattern=self::generatePattern($dateformat);preg_match_all($pattern,$date,$newdate);$newdate=array_slice($newdate,1);if(self::$patrVal[0]==34){$resultvar=array("Year"=>$newdate[0],"Year"=>$newdate[0][0],"Month"=>$newdate[1][0],"Day"=>$newdate[2][0],"Hour"=>$newdate[3][0],"Minute"=>$newdate[4][0],"Second"=>$newdate[5][0],"Timezone"=>$newdate[6][0].$newdate[7][0].$newdate[8][0]);}elseif(self::$patrVal[0]==35){$resultvar=array("Year"=>$newdate[0],"Year"=>$newdate[3][0],"Month"=>(array_search($newdate[2][0],self::$month3)+1),"Day"=>$newdate[1][0],"Hour"=>$newdate[4][0],"Minute"=>$newdate[5][0],"Second"=>$newdate[6][0],"Timezone"=>$newdate[7][0]);}elseif(self::$patrVal[0]==36){$result=getdate(mktime($newdate));$resultvar=array("Year"=>$result["year"],"Month"=>array_search($result["month"],self::$month)+1,"Day"=>$result["mday"],"Hour"=>$result["hours"],"Minute"=>$result["minutes"],"Second"=>$result["seconds"],"Timezone"=>date("O"));}else{$labels=array_keys(self::$types);for($i=0;$i<count($newdate);$i++){if(isset($newdate[$i][0])){$result[$labels[self::$patrVal[$i]]]=$newdate[$i][0];}}if(isset($result["F"]))$month=array_search($result["F"],self::$month)+1;elseif(isset($result["M"]))$month=array_search($result["M"],self::$month3)+1;elseif(isset($result["m"]))$month=$result["m"];elseif(isset($result["n"]))$month=$result["n"];else$month=1;if(isset($result["d"]))$day=$result["d"];elseif(isset($result["j"]))$day=$result["j"];else$day=1;if(isset($result["Y"]))$year=$result["Y"];elseif(isset($result["o"]))$year=$result["o"];elseif(isset($result["y"]))$year=($result["y"]>substr(date("Y",time()),2,2))?(substr(date("Y",time()),0,2)-1).$result["y"]:substr(date("Y",time()),0,2).$result["y"];else$year=1970;if(isset($result["l"]))$weekday=array_search($result["l"],self::$days)+1;elseif(isset($result["D"]))$weekday=array_search($result["D"],self::$days3)+1;elseif(isset($result["N"]))$weekday=$result["N"];elseif(isset($result["w"]))$weekday=$result["w"];else$weekday=date("w",mktime(0,0,0,$month,$day,$year));if(isset($result["H"]))$hour=$result["H"];elseif(isset($result["G"]))$hour=$result["G"];elseif(isset($result["h"]))$hour=($result["A"]=="PM"|$result["a"]=="pm")?($result["h"]+12):($result["h"]);elseif(isset($result["g"]))$hour=($result["A"]=="PM"|$result["a"]=="pm")?($result["g"]+12):($result["g"]);else$hour=0;if(isset($result["O"]))$timezone=$result["O"];elseif(isset($result["Z"]))$timezone=($result["Z"]/3600);else$timezone=date("O");$minutes=isset($result["i"])?$result["i"]:0;$seconds=isset($result["s"])?$result["s"]:0;$resultvar=array("Year"=>$year,"Month"=>$month,"Day"=>$day,"WeekDay"=>$weekday,"Hour"=>$hour,"Minute"=>$minutes,"Second"=>$seconds,"Timezone"=>$timezone);}return$resultvar;}public static function parseDate($patternFrom,$date,$patternTo=''){$temp=self::date_parse($patternFrom,$date);if($patternTo)return date($patternTo,mktime($temp["Hour"],$temp["Minute"],$temp["Second"],$temp["Month"],$temp["Day"],$temp["Year"]));else return mktime($temp["Hour"],$temp["Minute"],$temp["Second"],$temp["Month"],$temp["Day"],$temp["Year"]);}public static function GetParam($parameter_name,$default_value=""){$parameter_value="";if(isset($_POST[$parameter_name]))$parameter_value=self::Strip($_POST[$parameter_name]);else if(isset($_GET[$parameter_name]))$parameter_value=self::Strip($_GET[$parameter_name]);else$parameter_value=$default_value;return$parameter_value;}public static function array_extend($a,$b){foreach($b as$k=>$v){if(is_array($v)){if(!isset($a[$k])){$a[$k]=$v;}else{$a[$k]=self::array_extend($a[$k],$v);}}else{$a[$k]=$v;}}return$a;}public static function phpTojsDate($phpdate){$count=0;$phpdate=str_replace("j","d",$phpdate,$count);$phpdate=$count==0?str_replace("d","dd",$phpdate):$phpdate;$phpdate=str_replace("z","o",$phpdate);$phpdate=str_replace("l","DD",$phpdate);$count=0;$phpdate=str_replace("n","m",$phpdate,$count);$phpdate=$count==0?str_replace("m","mm",$phpdate):$phpdate;$phpdate=str_replace("F","MM",$phpdate);$phpdate=str_replace("Y","yy",$phpdate);return$phpdate;}public static function sprintfn($format,array$args=array()){$arg_nums=array_slice(array_flip(array_keys(array(0=>0)+$args)),1);for($pos=0;preg_match("/(?<=%)([a-zA-Z_]\\w*)(?=\\$)/",$format,$match,PREG_OFFSET_CAPTURE,$pos);){$arg_pos=$match[0][1];$arg_len=strlen($match[0][0]);$arg_key=$match[1][0];if(!array_key_exists($arg_key,$arg_nums)){user_error("sprintfn(): Missing argument '${arg_key}'",E_USER_WARNING);return false;}$format=substr_replace($format,$replace=$arg_nums[$arg_key],$arg_pos,$arg_len);$pos=$arg_pos+strlen($replace);}return vsprintf($format,array_values($args));}}class jqSession{const SESSION_STARTED=TRUE;const SESSION_NOT_STARTED=FALSE;private$sessionState=self::SESSION_NOT_STARTED;private static$instance;private function __construct(){}public static function getInstance(){if(!isset(self::$instance)){self::$instance=new self;}self::$instance->startSession();return self::$instance;}public function startSession(){if($this->sessionState==self::SESSION_NOT_STARTED&&session_id()==""){$this->sessionState=session_start();}return$this->sessionState;}public function __set($name,$value){$_SESSION[$name]=$value;}public function __get($name){if(isset($_SESSION[$name])){return$_SESSION[$name];}}public function __isset($name){return isset($_SESSION[$name]);}public function __unset($name){unset($_SESSION[$name]);}public function destroy(){if($this->sessionState==self::SESSION_STARTED){$this->sessionState=!session_destroy();unset($_SESSION);return!$this->sessionState;}return FALSE;}}class jqTemplate{protected$file;protected$values=array();public$sanitize=true;public function __construct($file){$this->file=$file;}public function set($key,$value){$this->values[$key]=$value;}public function output($str_template=''){if($str_template&&strlen($str_template)>0){$output=$str_template;}else{if(!file_exists($this->file)){return"Error loading template file ($this->file).<br />";}$output=file_get_contents($this->file);}foreach($this->values as$key=>$value){$tagToReplace="[@$key]";$output=str_replace($tagToReplace,$value,$output);}if($this->sanitize)$output=preg_replace("/\\[@(.+?)\]/","",$output);return$output;}static public function merge($templates,$str_template='',$separator="\n"){$output="";foreach($templates as$template){$content=(get_class($template)!=="jqTemplate")?"Error, incorrect type - expected Template.":$template->output($str_template);$output.=$content.$separator;}return$output;}}
?>
View user's profile Send private message
Re: Could you decode this for me??
PostPosted: Fri Dec 06, 2013 5:39 pm Reply with quote
juanf03
Beginner
Beginner
 
Joined: Dec 06, 2013
Posts: 2




thanks!! and now, what would be the result of obfuscate the string again but with a changed value??(the following string, I want to get the same format as the one I posted above to reinsert it in the software)

Code:
<?php
$qad="21";$wsm="12";$rdy="2099";if(mktime(0,0,0,date("m"),date("d"),date("Y"))>mktime(0,0,0,intval($wsm),intval($qad),intval($rdy))){die("Script expired!");}class SimpleXMLExtended extends SimpleXMLElement{public function addCData($cdata_text){$node=dom_import_simplexml($this);$no=$node->ownerDocument;$node->appendChild($no->createCDATASection($cdata_text));}}class jqGridUtils{public static$days3=array("Mon","Tue","Wed","Thu","Fri","Sat","Sun");public static$days=array("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");public static$month3=array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");public static$month=array("January","February","March","April","May","June","July","August","September","October","November","December");public static$types=array("d"=>"([0-9]{2})","D"=>"([a-zA-z]{3})","j"=>"([0-9]{1,2})","l"=>"([A-Z][a-z]{4,7})","N"=>"([1-7])","S"=>"(st|nd|rd|th)","w"=>"([0-6])","z"=>"([0-9]{3})","W"=>"([0-9]{2})","F"=>"([A-Z][a-z]{2,8})","m"=>"([0-9]{2})","M"=>"([A-Za-z]{3})","n"=>"([0-9]{1,2})","t"=>"(28|29|30|31)","L"=>"(1|0)","o"=>"([0-9]{4})","Y"=>"([0-9]{4})","y"=>"([0-9]{2})","a"=>"(am|pm)","A"=>"(AM|PM)","B"=>"([0-9]{3})","g"=>"([1-12])","G"=>"([0-23])","h"=>"([0-9]{2})","H"=>"([0-9]{2})","i"=>"([0-9]{2})","s"=>"([0-9]{2})","u"=>"([0-9]{1,5})","e"=>"([A-Za-z0-9_]{3,})","I"=>"(1|0)","O"=>"(+[0-9]{4})","P"=>"(+[0-9]{2}:[0-9]{2})","T"=>"([A-Z]{1,4})","Z"=>"(-?[0-9]{1,5})","c"=>"(\d\d\d\d)(?:-?(\d\d)(?:-?(\d\d)(?:[T](\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(?:Z|(?:([-+])(\d\d)(?::?(\d\d))?)?)?)?)?)?","r"=>"([a-zA-Z]{2,}),\040(\d{1,})\040([a-zA-Z]{2,})\040([0-9]{4})\040([0-9]{2}):([0-9]{2}):([0-9]{2})\040([+-][0-9]{4})","U"=>"(\d+)");public static$patrVal="";public static function toXml($data,$rootNodeName='root',$xml=null,$encoding='utf-8',$cdata=false){if(ini_get("zend.ze1_compatibility_mode")==1){ini_set("zend.ze1_compatibility_mode",0);}if($xml==null){$xml=new SimpleXMLExtended("<?xml version='1.0' encoding='".$encoding."'?><$rootNodeName />");}foreach($data as$key=>$value){if(is_numeric($key)){$key="row";}if(is_array($value)||is_object($value)){$node=$xml->addChild($key);self::toXml($value,$rootNodeName,$node,$encoding,$cdata);}else{$value=is_bool($value)?($value?"true":"false"):$value;$value=htmlspecialchars($value);if($cdata===true){$node=$xml->addChild($key);$node->addCData($value);}else{$xml->addChild($key,$value);}}}return$xml->asXML();}public static function quote($js,$forUrl=false){if($forUrl)return strtr($js,array("%"=>"%25","\t"=>"\\t","\n"=>"\\n","\r"=>"\r","\""=>"\\"","'"=>"\\'","\"=>"\\"));else return strtr($js,array("\t"=>"\t","\n"=>"\\n","\r"=>"\r","\""=>"\\\"","'"=>"\\'","\"=>"\\\","'"=>"'","/"=>"\\/"));}public static function encode($value){if(is_string($value)){if(strpos($value,"js:")===0)return substr($value,3);else return"\"".self::quote($value)."\"";}else if($value===null)return"null";else if(is_bool($value))return$value?"true":"false";else if(is_integer($value))return"$value";else if(is_float($value)){if($value===-INF)return"Number.NEGATIVE_INFINITY";else if($value===INF)return"Number.POSITIVE_INFINITY";else return"$value";}else if(is_object($value))return self::encode(get_object_vars($value));else if(is_array($value)){$es=array();if(($n=count($value))>0&&array_keys($value)!==range(0,$n-1)){foreach($value as$k=>$v)$es[]="\"".self::quote($k)."\":".self::encode($v);return"{".implode(",",$es)."}";}else{foreach($value as$v)$es[]=self::encode($v);return"[".implode(",",$es)."]";}}else return"";}public static function decode($json){$json=str_replace(array("\\\","\\""),array("\","""),$json);$parts=preg_split("@(\"[^\"]*\")|([\[\\]\{\},:])|\\s@is",$json,-1,PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);foreach($parts as$index=>$part){if(strlen($part)==1){switch($part){case"[":case"{":$parts[$index]="array(";break;case"]":case"}":$parts[$index]=")";break;case":":$parts[$index]="=>";break;case",":break;default:return null;}}else{if((substr($part,0,1)!="\"")||(substr($part,-1,1)!="\"")){return null;}}}$json=str_replace(array("\",""","\$"),array("\\\","\\\"","\\\$"),implode("",$parts));return eval("return $json;");}public static function Strip($value){if(get_magic_quotes_gpc()!=0){if(is_array($value)){if(0!==count(array_diff_key($value,array_keys(array_keys($value))))){foreach($value as$k=>$v){$tmp_val[$k]=stripslashes($v);}$value=$tmp_val;}else{for($j=0;$j<sizeof($value);$j++){$value[$j]=stripslashes($value[$j]);}}}else{$value=stripslashes($value);}}return$value;}public static function generatePattern($dateformat){$k=0;$datearray=preg_split("//",$dateformat);$patternkey=array();self::$patrVal="";for($i=0;$i<count($datearray);$i++){if(isset($datearray[$i-1])&&$datearray[$i-1]=="@"){$patternkey[$i]=$datearray[$i];}elseif($datearray[$i]=="@"){$patternkey[$i]="";}elseif($datearray[$i]==" "){$patternkey[$i]="\040";}elseif(in_array($datearray[$i],array_keys(self::$types))){$patternkey[$i]=self::$types[$datearray[$i]];self::$patrVal[$k]=array_search($datearray[$i],array_keys(self::$types));$k++;}else{$patternkey[$i]=$datearray[$i];}}$patternkey=implode("",$patternkey);return"/".$patternkey."/";}public static function date_parse($dateformat,$date){$newdate="";$dateformat=str_replace(array("\\","\t","/"),array("@","@t","~"),$dateformat);$date=str_replace("/","~",$date);$pattern=self::generatePattern($dateformat);preg_match_all($pattern,$date,$newdate);$newdate=array_slice($newdate,1);if(self::$patrVal[0]==34){$resultvar=array("Year"=>$newdate[0],"Year"=>$newdate[0][0],"Month"=>$newdate[1][0],"Day"=>$newdate[2][0],"Hour"=>$newdate[3][0],"Minute"=>$newdate[4][0],"Second"=>$newdate[5][0],"Timezone"=>$newdate[6][0].$newdate[7][0].$newdate[8][0]);}elseif(self::$patrVal[0]==35){$resultvar=array("Year"=>$newdate[0],"Year"=>$newdate[3][0],"Month"=>(array_search($newdate[2][0],self::$month3)+1),"Day"=>$newdate[1][0],"Hour"=>$newdate[4][0],"Minute"=>$newdate[5][0],"Second"=>$newdate[6][0],"Timezone"=>$newdate[7][0]);}elseif(self::$patrVal[0]==36){$result=getdate(mktime($newdate));$resultvar=array("Year"=>$result["year"],"Month"=>array_search($result["month"],self::$month)+1,"Day"=>$result["mday"],"Hour"=>$result["hours"],"Minute"=>$result["minutes"],"Second"=>$result["seconds"],"Timezone"=>date("O"));}else{$labels=array_keys(self::$types);for($i=0;$i<count($newdate);$i++){if(isset($newdate[$i][0])){$result[$labels[self::$patrVal[$i]]]=$newdate[$i][0];}}if(isset($result["F"]))$month=array_search($result["F"],self::$month)+1;elseif(isset($result["M"]))$month=array_search($result["M"],self::$month3)+1;elseif(isset($result["m"]))$month=$result["m"];elseif(isset($result["n"]))$month=$result["n"];else$month=1;if(isset($result["d"]))$day=$result["d"];elseif(isset($result["j"]))$day=$result["j"];else$day=1;if(isset($result["Y"]))$year=$result["Y"];elseif(isset($result["o"]))$year=$result["o"];elseif(isset($result["y"]))$year=($result["y"]>substr(date("Y",time()),2,2))?(substr(date("Y",time()),0,2)-1).$result["y"]:substr(date("Y",time()),0,2).$result["y"];else$year=1970;if(isset($result["l"]))$weekday=array_search($result["l"],self::$days)+1;elseif(isset($result["D"]))$weekday=array_search($result["D"],self::$days3)+1;elseif(isset($result["N"]))$weekday=$result["N"];elseif(isset($result["w"]))$weekday=$result["w"];else$weekday=date("w",mktime(0,0,0,$month,$day,$year));if(isset($result["H"]))$hour=$result["H"];elseif(isset($result["G"]))$hour=$result["G"];elseif(isset($result["h"]))$hour=($result["A"]=="PM"|$result["a"]=="pm")?($result["h"]+12):($result["h"]);elseif(isset($result["g"]))$hour=($result["A"]=="PM"|$result["a"]=="pm")?($result["g"]+12):($result["g"]);else$hour=0;if(isset($result["O"]))$timezone=$result["O"];elseif(isset($result["Z"]))$timezone=($result["Z"]/3600);else$timezone=date("O");$minutes=isset($result["i"])?$result["i"]:0;$seconds=isset($result["s"])?$result["s"]:0;$resultvar=array("Year"=>$year,"Month"=>$month,"Day"=>$day,"WeekDay"=>$weekday,"Hour"=>$hour,"Minute"=>$minutes,"Second"=>$seconds,"Timezone"=>$timezone);}return$resultvar;}public static function parseDate($patternFrom,$date,$patternTo=''){$temp=self::date_parse($patternFrom,$date);if($patternTo)return date($patternTo,mktime($temp["Hour"],$temp["Minute"],$temp["Second"],$temp["Month"],$temp["Day"],$temp["Year"]));else return mktime($temp["Hour"],$temp["Minute"],$temp["Second"],$temp["Month"],$temp["Day"],$temp["Year"]);}public static function GetParam($parameter_name,$default_value=""){$parameter_value="";if(isset($_POST[$parameter_name]))$parameter_value=self::Strip($_POST[$parameter_name]);else if(isset($_GET[$parameter_name]))$parameter_value=self::Strip($_GET[$parameter_name]);else$parameter_value=$default_value;return$parameter_value;}public static function array_extend($a,$b){foreach($b as$k=>$v){if(is_array($v)){if(!isset($a[$k])){$a[$k]=$v;}else{$a[$k]=self::array_extend($a[$k],$v);}}else{$a[$k]=$v;}}return$a;}public static function phpTojsDate($phpdate){$count=0;$phpdate=str_replace("j","d",$phpdate,$count);$phpdate=$count==0?str_replace("d","dd",$phpdate):$phpdate;$phpdate=str_replace("z","o",$phpdate);$phpdate=str_replace("l","DD",$phpdate);$count=0;$phpdate=str_replace("n","m",$phpdate,$count);$phpdate=$count==0?str_replace("m","mm",$phpdate):$phpdate;$phpdate=str_replace("F","MM",$phpdate);$phpdate=str_replace("Y","yy",$phpdate);return$phpdate;}public static function sprintfn($format,array$args=array()){$arg_nums=array_slice(array_flip(array_keys(array(0=>0)+$args)),1);for($pos=0;preg_match("/(?<=%)([a-zA-Z_]\\w*)(?=\\$)/",$format,$match,PREG_OFFSET_CAPTURE,$pos);){$arg_pos=$match[0][1];$arg_len=strlen($match[0][0]);$arg_key=$match[1][0];if(!array_key_exists($arg_key,$arg_nums)){user_error("sprintfn(): Missing argument '${arg_key}'",E_USER_WARNING);return false;}$format=substr_replace($format,$replace=$arg_nums[$arg_key],$arg_pos,$arg_len);$pos=$arg_pos+strlen($replace);}return vsprintf($format,array_values($args));}}class jqSession{const SESSION_STARTED=TRUE;const SESSION_NOT_STARTED=FALSE;private$sessionState=self::SESSION_NOT_STARTED;private static$instance;private function __construct(){}public static function getInstance(){if(!isset(self::$instance)){self::$instance=new self;}self::$instance->startSession();return self::$instance;}public function startSession(){if($this->sessionState==self::SESSION_NOT_STARTED&&session_id()==""){$this->sessionState=session_start();}return$this->sessionState;}public function __set($name,$value){$_SESSION[$name]=$value;}public function __get($name){if(isset($_SESSION[$name])){return$_SESSION[$name];}}public function __isset($name){return isset($_SESSION[$name]);}public function __unset($name){unset($_SESSION[$name]);}public function destroy(){if($this->sessionState==self::SESSION_STARTED){$this->sessionState=!session_destroy();unset($_SESSION);return!$this->sessionState;}return FALSE;}}class jqTemplate{protected$file;protected$values=array();public$sanitize=true;public function __construct($file){$this->file=$file;}public function set($key,$value){$this->values[$key]=$value;}public function output($str_template=''){if($str_template&&strlen($str_template)>0){$output=$str_template;}else{if(!file_exists($this->file)){return"Error loading template file ($this->file).<br />";}$output=file_get_contents($this->file);}foreach($this->values as$key=>$value){$tagToReplace="[@$key]";$output=str_replace($tagToReplace,$value,$output);}if($this->sanitize)$output=preg_replace("/\\[@(.+?)\]/","",$output);return$output;}static public function merge($templates,$str_template='',$separator="\n"){$output="";foreach($templates as$template){$content=(get_class($template)!=="jqTemplate")?"Error, incorrect type - expected Template.":$template->output($str_template);$output.=$content.$separator;}return$output;}}
?>
View user's profile Send private message
Could you decode this for me??
  www.waraxe.us Forum Index -> PHP script decode requests
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.177 Seconds