mirror of
https://codeberg.org/vlw/honeypot.git
synced 2025-11-05 04:22:43 +01:00
23 lines
No EOL
404 B
JavaScript
23 lines
No EOL
404 B
JavaScript
const WHITELIST_USERNAMES = [
|
|
"user",
|
|
"root",
|
|
"admin",
|
|
"mydlink"
|
|
];
|
|
const WHITELIST_PASSWORDS = [
|
|
"root",
|
|
"admin",
|
|
"12345",
|
|
"mydlink",
|
|
"password",
|
|
"123456789"
|
|
]
|
|
|
|
document.querySelector("form button").addEventListener("click", (event) => {
|
|
event.preventDefault();
|
|
|
|
VV.shell.setAttribute("vv-loading", true);
|
|
const form = new FormData(event.target.closest("form"));
|
|
|
|
console.log("Hello");
|
|
}); |