/**
  * @return boolean Return "true" If we believe that this person takes too much request otherwise "false"
  */
 public function session()
 {
     $oSession = new Session();
     if (!$oSession->exists(static::COOKIE_NAME)) {
         $oSession->set(static::COOKIE_NAME, 1);
     } else {
         $oSession->set(static::COOKIE_NAME, $oSession->get(static::COOKIE_NAME) + 1);
     }
     if ($oSession->get(static::COOKIE_NAME) > PH7_DDOS_MAX_SESSION_PAGE_LOAD) {
         $oSession->remove(static::COOKIE_NAME);
         // Remove Session
         $bStatus = true;
     } else {
         $bStatus = false;
     }
     unset($oSession);
     return $bStatus;
 }