This project is designed to help developers understand and mitigate code injection and XSS vulnerabilities. It includes a backend API and a frontend interface for testing various attack vectors in a controlled environment.
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
const db = require("../../query/database");
|
|
|
|
const loginUser = async (username, password) => {
|
|
const user = await db.loginUser(username, password);
|
|
return user;
|
|
};
|
|
|
|
const executeJS = (code) => {
|
|
const result = db.executeCode(code);
|
|
return result;
|
|
};
|
|
|
|
module.exports = {
|
|
loginUser,
|
|
executeJS,
|
|
};
|