Fix for logging in on site and with script

This commit is contained in:
MrFry 2020-04-09 12:33:29 +02:00
parent a6d260f6af
commit fa4b29efe6
6 changed files with 26 additions and 9 deletions

View file

@ -228,7 +228,8 @@ function GetApp () {
app.post('/login', (req, res) => {
logger.LogReq(req)
const pw = req.body.pw
const pw = req.body.pw || false
const isScript = req.body.script
const ip = req.headers['cf-connecting-ip'] || req.connection.remoteAddress
const user = dbtools.Select(userDB, 'users', {
pw: pw
@ -239,14 +240,16 @@ function GetApp () {
// FIXME: Users now can only log in in one session, this might be too strict.
const existingSessions = dbtools.Select(userDB, 'sessions', {
userID: user.id
userID: user.id,
isScript: isScript ? 1 : 0
})
if (existingSessions.length > 0) {
logger.Log(`Multiple sessions ( ${existingSessions.length} ) for #${user.id}, deleting olds`, logger.GetColor('cyan'))
existingSessions.forEach((sess) => {
dbtools.Delete(userDB, 'sessions', {
id: sess.id
id: sess.id,
isScript: isScript ? 1 : 0
})
})
}
@ -263,14 +266,19 @@ function GetApp () {
id: sessionID,
ip: ip,
userID: user.id,
isScript: isScript ? 1 : 0,
createDate: utils.GetDateString()
})
// https://www.npmjs.com/package/cookie
// TODO: cookie age
res.cookie('sessionID', sessionID, {
domain: '.frylabs.net', // TODO: use url. url: "https://api.frylabs.net"
sameSite: 'none'
})
res.cookie('sessionID', sessionID, {
sameSite: 'none'
})
res.json({
result: 'success',

View file

@ -81,6 +81,10 @@
},
"lastAccess": {
"type": "text"
},
"isScript": {
"type": "number",
"notNull": true
}
}
},

View file

@ -178,7 +178,7 @@ function GetApp () {
app.get('/getVeteranPw', function (req, res) {
res.render('veteranPw', {
cid: req.query.cid
cid: req.query.cid || ''
})
logger.LogReq(req)
})

View file

@ -70,12 +70,12 @@
Frylabs
</div>
<div id='text' class='text'>
Másold be ide régi kliens ID-d, és az alapján jelszót ad. Ezt csak egyszer teheted meg, a
Másold be ide régi kliens ID-d, és az alapján jelszót kapsz. Ezt csak egyszer teheted meg, a
kapott jelszót tuti helyre írd le!
</div>
<div id='form'>
<div class='inputContainer'>
<input type='text' id='cid' name='pw' autocomplete="off"/>
<input type='text' id='cid' name='pw' value=<%= cid %> autocomplete="off"/>
</div>
<input type='hidden' name='redirect' value='asd' autocomplete="off"/>
<button id='sendButton' onclick="GetVeteranPW(this)">Submit</button>

View file

@ -20,7 +20,8 @@
console.clear()
const startHTTPS = true
const port = 80
const isRoot = process.getuid && process.getuid() === 0
const port = isRoot ? 80 : 8080
const httpsport = 5001
const express = require('express')
@ -91,6 +92,7 @@ function exit (reason) {
}
const app = express()
// https://github.com/expressjs/cors#configuration-options
app.use(cors({
credentials: true,
origin: true
@ -198,6 +200,9 @@ function LogTimerAction () {
logger.Log('Node version: ' + process.version)
logger.Log('Current working directory: ' + process.cwd())
logger.Log('Listening on port: ' + port)
if (isRoot) {
logger.Log('Running as root', logger.GetColor('red'))
}
const httpServer = http.createServer(app)
httpServer.listen(port)

View file

@ -24,8 +24,8 @@ function CreateDB () {
})
try {
if (utils.FileExists('../dbUsers/keys')) {
const uids = utils.ReadFile('../dbUsers/keys').split('\n')
if (utils.FileExists('./ids')) {
const uids = utils.ReadFile('./ids').split('\n')
uids.forEach((cid, i) => {
if (!cid) { return }