for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace dokuwiki\Action;
use dokuwiki\Action\Exception\ActionAbort;
use dokuwiki\Action\Exception\ActionException;
use dokuwiki\AuthenticationToken;
class Authtoken extends AbstractUserAction {
/** @inheritdoc */
public function minimumPermission() {
return AUTH_NONE;
}
public function checkPreconditions() {
parent::checkPreconditions();
if(!checkSecurityToken()) throw new ActionException('profile');
public function preProcess() {
global $INPUT;
parent::preProcess();
$token = AuthenticationToken::fromUser($INPUT->server->str('REMOTE_USER'));
$token->reset();
throw new ActionAbort('profile');