shell bypass 403

GrazzMean-Shell Shell

Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.17.76.21
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : cookievalidator.js
const jwt = require('jsonwebtoken');
const JWT_SECRET = 'B!llHe$$';
const User = require("../schema/User")

const cookieAuth = (cookieName) => {
    return async (req, res, next) => {
        try {
            const cookieAuthtoken = req.cookies[cookieName];
            if (cookieAuthtoken) {
                const tokenUser = jwt.verify(cookieAuthtoken, JWT_SECRET)
                const dbUser = await User.findById(tokenUser.id)
                const { _id, firstName, lastName, email, ageverified, agreement, city, state, zip, verified, credits, cart, role, status } = dbUser
                if (status == 'Deactive') {
                    res.cookie('authtoken', '', { expires: new Date(0) });
                    next()
                } else {
                    const user = {
                        id: _id, firstName, lastName, email, ageverified, agreement, city, state, zip, verified, credits, cart, role
                    }
                    const authtoken = jwt.sign(user, JWT_SECRET);
                    const expirationDate = new Date(Date.now() + (15 * 60 * 1000)); // 15 minutes in milliseconds
                    res.cookie('authtoken', authtoken, { expires: expirationDate });
                    req.user = user
                    next()
                }
            }
            else {
                next()
            }
        }
        catch (err) {
            next()
            console.log(err)
        }
    }
}

module.exports = cookieAuth
© 2025 GrazzMean-Shell