[mirotalksfu] - use post method for login page

هذا الالتزام موجود في:
Miroslav Pejic
2023-07-12 19:44:13 +02:00
الأصل baa1119baa
التزام aff1a910af
2 ملفات معدلة مع 30 إضافات و8 حذوفات

عرض الملف

@@ -222,28 +222,33 @@ function startServer() {
// main page
app.get(['/'], (req, res) => {
if (hostCfg.protected == true) {
hostCfg.authenticated = false;
res.sendFile(views.login);
const ip = getIP(req);
if (allowedIP(ip)) {
res.sendFile(views.landing);
} else {
hostCfg.authenticated = false;
res.sendFile(views.login);
}
} else {
res.sendFile(views.landing);
}
});
// handle login on host protected
app.get(['/login'], (req, res) => {
app.post(['/login'], (req, res) => {
if (hostCfg.protected == true) {
let ip = getIP(req);
log.debug(`Request login to host from: ${ip}`, req.query);
const { username, password } = checkXSS(req.query);
log.debug(`Request login to host from: ${ip}`, req.body);
const { username, password } = checkXSS(req.body);
if (username == hostCfg.username && password == hostCfg.password) {
hostCfg.authenticated = true;
authHost = new Host(ip, true);
log.debug('LOGIN OK', { ip: ip, authorized: authHost.isAuthorized(ip) });
res.sendFile(views.landing);
res.status(200).json({ message: 'authorized' });
} else {
log.debug('LOGIN KO', { ip: ip, authorized: false });
hostCfg.authenticated = false;
res.sendFile(views.login);
res.status(401).json({ message: 'unauthorized' });
}
} else {
res.redirect('/');

عرض الملف

@@ -45,7 +45,12 @@
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
<!-- xss -->
<script src="https://rawgit.com/leizongmin/js-xss/master/dist/xss.js"></script>
<!-- axios -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body class="is-boxed has-animations">
<div class="body-wrap">
@@ -124,7 +129,19 @@
const password = filterXSS(document.getElementById('password').value);
if (username && password) {
window.location.href = `/login?username=${username}&password=${password}`;
axios
.post('/login', {
username: username,
password: password,
})
.then(function (response) {
console.log(response);
window.location.href = '/';
})
.catch(function (error) {
console.error(error);
alert('Unauthorized');
});
return;
}
if (!username && !password) {