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.32 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.15.190.254
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : Job.js
const mongoose = require('mongoose');
const { Schema } = mongoose;

const job = new Schema({
    company: {
        type: mongoose.Schema.Types.ObjectId,
        ref: 'business'
    },
    title: {
        type: String,
        required: true
    },
    summary: {
        type: String,
        required: true
    },
    responsiblities: [{
        type: String,
        required: true
    }],
    education: {
        type: String
    },
    skills: [{
        type: String,
        required: true
    }],
    experience: {
        type: Number,
        required: true
    },
    certification: {
        type: String
    },
    position: {
        type: String,
        required: true
    },
    industry: {
        type: String,
        required: true
    },
    location: {
        type: String,
        required: true
    },
    jobType: {
        type: String,
        required: true
    },
    benefits: [{
        type: String
    }],
    salary: {
        type: Number,
        required: true
    },
    workScheduled: {
        type: Number,
        required: true
    },
    applicationPosted: {
        type: Date,
        required: true
    },
    applicationDeadline: {
        type: Date,
        required: true
    },
    applicationInstruction: {
        type: String
    },
    requiredDocuments: [{
        type: String,
        required: true
    }],
    contactPerson: {
        type: String,
    },
    contactNumber: {
        type: String,
    },
    additionalInfo: {
        type: String,
    },
}, { timestamps: true });

const Job = mongoose.model('job', job)
module.exports = Job;
© 2025 GrazzMean-Shell