Probe Diagnostic'; $o .= '
'; $o .= 'Lookup address: '; $o .= '
'; $o .= '

'; if(x($_GET,'addr')) { $channel = $a->get_channel(); $addr = trim($_GET['addr']); $res = zot_finger($addr,$channel,false); $o .= '
';
		if($res['success'])
			$j = json_decode($res['body'],true);
		else {
			$o .= "https connection failed. Trying again with auto failover to http.\r\n\r\n";
			$res = zot_finger($addr,$channel,true);
			if($res['success'])
				$j = json_decode($res['body'],true);
		}
		if($j && $j['permissions'] && $j['permissions']['iv'])
			$j['permissions'] = json_decode(aes_unencapsulate($j['permissions'],$channel['channel_prvkey']),true);
		$o .= str_replace("\n",'
',print_r($j,true)); $o .= '
'; } return $o; }