Project import generated by Copybara.

GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/src/cron/cleansigninattempts.php b/src/cron/cleansigninattempts.php
new file mode 100644
index 0000000..946af49
--- /dev/null
+++ b/src/cron/cleansigninattempts.php
@@ -0,0 +1,17 @@
+<?php
+require_once(__DIR__."/../core.php");
+
+if (php_sapi_name() != "cli") {
+  security::notFound();
+  exit();
+}
+
+echo "=======================\n";
+echo "cleansigninattempts.php\n";
+echo "=======================\n\n";
+
+if (security::cleanSignInAttempts()) {
+  echo "[info] The action was performed successfully.\n";
+} else {
+  echo "[error] An error occurred.\n";
+}