Closes #30 Introduces the "challenge" field in bot rule definitions: ```json { "name": "generic-bot-catchall", "user_agent_regex": "(?i:bot|crawler)", "action": "CHALLENGE", "challenge": { "difficulty": 16, "report_as": 4, "algorithm": "slow" } } ``` This makes Anubis return a challenge page for every user agent with "bot" or "crawler" in it (case-insensitively) with difficulty 16 using the old "slow" algorithm but reporting in the client as difficulty 4. This is useful when you want to make certain clients in particular suffer. Additional validation and testing logic has been added to make sure that users do not define "impossible" challenge settings. If no algorithm is specified, Anubis defaults to the "fast" algorithm. Signed-off-by: Xe Iaso <me@xeiaso.net>
89 lines
No EOL
2.8 KiB
JavaScript
89 lines
No EOL
2.8 KiB
JavaScript
import processFast from "./proof-of-work.mjs";
|
|
import processSlow from "./proof-of-work-slow.mjs";
|
|
import { testVideo } from "./video.mjs";
|
|
|
|
const algorithms = {
|
|
"fast": processFast,
|
|
"slow": processSlow,
|
|
}
|
|
|
|
// from Xeact
|
|
const u = (url = "", params = {}) => {
|
|
let result = new URL(url, window.location.href);
|
|
Object.entries(params).forEach((kv) => {
|
|
let [k, v] = kv;
|
|
result.searchParams.set(k, v);
|
|
});
|
|
return result.toString();
|
|
};
|
|
|
|
const imageURL = (mood, cacheBuster) =>
|
|
u(`/.within.website/x/cmd/anubis/static/img/${mood}.webp`, { cacheBuster });
|
|
|
|
(async () => {
|
|
const status = document.getElementById('status');
|
|
const image = document.getElementById('image');
|
|
const title = document.getElementById('title');
|
|
const spinner = document.getElementById('spinner');
|
|
const anubisVersion = JSON.parse(document.getElementById('anubis_version').textContent);
|
|
|
|
// const testarea = document.getElementById('testarea');
|
|
|
|
// const videoWorks = await testVideo(testarea);
|
|
// console.log(`videoWorks: ${videoWorks}`);
|
|
|
|
// if (!videoWorks) {
|
|
// title.innerHTML = "Oh no!";
|
|
// status.innerHTML = "Checks failed. Please check your browser's settings and try again.";
|
|
// image.src = imageURL("sad");
|
|
// spinner.innerHTML = "";
|
|
// spinner.style.display = "none";
|
|
// return;
|
|
// }
|
|
|
|
status.innerHTML = 'Calculating...';
|
|
|
|
const { challenge, rules } = await fetch("/.within.website/x/cmd/anubis/api/make-challenge", { method: "POST" })
|
|
.then(r => {
|
|
if (!r.ok) {
|
|
throw new Error("Failed to fetch config");
|
|
}
|
|
return r.json();
|
|
})
|
|
.catch(err => {
|
|
title.innerHTML = "Oh no!";
|
|
status.innerHTML = `Failed to fetch config: ${err.message}`;
|
|
image.src = imageURL("sad", anubisVersion);
|
|
spinner.innerHTML = "";
|
|
spinner.style.display = "none";
|
|
throw err;
|
|
});
|
|
|
|
const process = algorithms[rules.algorithm];
|
|
if (!process) {
|
|
title.innerHTML = "Oh no!";
|
|
status.innerHTML = `Failed to resolve check algorithm. You may want to reload the page.`;
|
|
image.src = imageURL("sad", anubisVersion);
|
|
spinner.innerHTML = "";
|
|
spinner.style.display = "none";
|
|
return;
|
|
}
|
|
|
|
status.innerHTML = `Calculating...<br/>Difficulty: ${rules.report_as}`;
|
|
|
|
const t0 = Date.now();
|
|
const { hash, nonce } = await process(challenge, rules.difficulty);
|
|
const t1 = Date.now();
|
|
console.log({ hash, nonce });
|
|
|
|
title.innerHTML = "Success!";
|
|
status.innerHTML = `Done! Took ${t1 - t0}ms, ${nonce} iterations`;
|
|
image.src = imageURL("happy", anubisVersion);
|
|
spinner.innerHTML = "";
|
|
spinner.style.display = "none";
|
|
|
|
setTimeout(() => {
|
|
const redir = window.location.href;
|
|
window.location.href = u("/.within.website/x/cmd/anubis/api/pass-challenge", { response: hash, nonce, redir, elapsedTime: t1 - t0 });
|
|
}, 250);
|
|
})(); |