Gynvael Web Challenge 6
We’re back again with another NodeJS web challenge from Gynvael. Let’s get into it!
Description Just like the previous challenges, we are given the source code for the NodeJS application:
const http = require('http') const express = require('express') const fs = require('fs') const path = require('path') const PORT = 5006 const FLAG = process.env.FLAG || "???" const SOURCE = fs.readFileSync(path.basename(__filename)) const app = express() const checkSecret = (secret) => { return [ secret.
[Read More]