updateweb

This commit is contained in:
Local Server
2025-12-14 01:54:40 -06:00
parent dce6460994
commit 61929a5daf
454 changed files with 12193 additions and 42002 deletions

View File

@@ -0,0 +1,16 @@
const bcrypt = require("bcrypt");
const password = process.argv[2] || "admin123";
bcrypt.hash(password, 10, (err, hash) => {
if (err) {
console.error("Error:", err);
return;
}
console.log("Password:", password);
console.log("Hash:", hash);
console.log("\nUse this SQL to update:");
console.log(
`UPDATE adminusers SET passwordhash = '${hash}' WHERE email = 'admin@example.com';`
);
});