blob: 946af49b773e49a563facb57b276adf58f5a6a55 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001<?php
2require_once(__DIR__."/../core.php");
3
4if (php_sapi_name() != "cli") {
5 security::notFound();
6 exit();
7}
8
9echo "=======================\n";
10echo "cleansigninattempts.php\n";
11echo "=======================\n\n";
12
13if (security::cleanSignInAttempts()) {
14 echo "[info] The action was performed successfully.\n";
15} else {
16 echo "[error] An error occurred.\n";
17}