From 0c2409f70776a978516bf572cf9348184758b4ca Mon Sep 17 00:00:00 2001 From: edward Date: Thu, 15 Feb 2018 11:27:44 +0800 Subject: [PATCH] VerifyAccess.php --- VerifyAccess.php | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/VerifyAccess.php b/VerifyAccess.php index d4433e57..b22d919b 100644 --- a/VerifyAccess.php +++ b/VerifyAccess.php @@ -61,26 +61,11 @@ class Pman_Core_VerifyAccess extends Pman if( empty($_REQUEST['id']) || - empty($_REQUEST['verify_key']) || - !$core_ip_access->get($_REQUEST['id']) + empty($_REQUEST['authorized_key']) || + !$core_ip_access->get($_REQUEST['id']) || + $core_ip_access->authorized_key != $_REQUEST['authorized_key'] ){ - $this->jerr('broken_link'); - return; - } - - if(!empty($coba_application_signup->coba_application_id)){ - $this->jerr('already_registered'); - return; - } - - if($coba_application_signup->verify_key != $_REQUEST['verify_key']){ - $this->jerr('broken_link'); - return; - } - - if(time() > strtotime($coba_application_signup->expiry_dt)) { - $this->jerr('expired'); - return; + $this->jerr('Invalid URL'); } $this->jdata($coba_application_signup->toArray()); -- 2.39.2