shell bypass 403
UnknownSec Shell
:
/
lib
/
node_modules
/
gulp
/
node_modules
/
last-run
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
index.js
'use strict'; var assert = require('assert'); var runtimes = new WeakMap(); function isFunction(fn) { return typeof fn === 'function'; } function lastRun(fn, timeResolution) { assert(isFunction(fn), 'Only functions can check lastRun'); var time = runtimes.get(fn); if (time == null) { return; } var resolution = parseInt(timeResolution, 10) || 1; return time - (time % resolution); } function capture(fn, timestamp) { assert(isFunction(fn), 'Only functions can be captured'); timestamp = timestamp || Date.now(); runtimes.set(fn, timestamp); } function release(fn) { assert(isFunction(fn), 'Only functions can be captured'); runtimes.delete(fn); } lastRun.capture = capture; lastRun.release = release; module.exports = lastRun;
© 2026 UnknownSec