
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
eval-overflow
Advanced tools
A Hastebin link generator for Discord, when your eval output is over 1500 characters
A Discord.js addon that you can add to your eval command to format your output if it's over 1500 characters.
First, install the package using npm:
npm install eval-overflow --save
Then, require the package and use it like so:
const { hastebin } = require('eval-overflow');
function clean(text) {
if (typeof(text) === 'string')
return text.replace(/`/g, "`" + String.fromCharCode(8203)).replace(/@/g, "@" + String.fromCharCode(8203));
else
return text;
}
exports.run = (client, msg, args) => {
args = args.join(" ");
try {
var evaled = eval(args);
if (typeof evaled !== 'string')
evaled = require('util').inspect(evaled);
if (evaled.length > 1500) {
hastebin(`${evaled}`, "js").then(r => {
msg.channel.send(`The output was over 1.5k characters, I have uploaded to hastebin. Uploaded to ${r}.`);
}).catch(console.error);
} else {
msg.channel.send(`\`\`\`xl\n${clean(evaled)}\n\`\`\``);
}
} catch (err) {
msg.channel.send(`\`ERROR\` \`\`\`xl\n${clean(err)}\n\`\`\``);
}
};
MIT
FAQs
A Hastebin link generator for Discord, when your eval output is over 1500 characters
The npm package eval-overflow receives a total of 1 weekly downloads. As such, eval-overflow popularity was classified as not popular.
We found that eval-overflow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.