DDoS Attack in Python (educational purposes only)

preview_player
Показать описание
#shorts #hacking #python #education

EDUCATIONAL PURPOSES ONLY!!

Here's how you can create a (inefficient) DDoS Tool using
Python.

Keep in mind:
It's not very powerful code, since it simply sends requests in a loop.

I am not responsible for any damage done by this code.
Рекомендации по теме
Комментарии
Автор

This isn't even a DDoS attack nor a DoS attack. This is just sending requests to an endpoint until you get a 429 status code and your IP gets blocked

samukaze
Автор

This is like reloading a page and expecting it to shut down

FrogInALog_
Автор

Isn’t it funny how he tried to break the line for a single argument but the formatter said dude wtf

freeottis
Автор

If that was enough to take a website down we’d all be pretty cooked

cphdev
Автор

This is extremely basic and is not a DDOS attack but rather a DOS attack. Essentially all websites under the sun have protection against this kind of attack. You have to use proxies for it to be somewhat useful. Botnets are preferred since they can output a lot of bandwidth.

Jaywalked
Автор

As someone who is been working in this industry for 2 yrs

Thats some BULLSHIT

The sophistication behind an actual ddos attack would blow your mind its not just a simple http request

karim
Автор

That script just pumps up the rste limit until you go zero, then the server starts rejecting your requests. Real ddos attacks include either corrupt or incomplete BINARY constructed requests that totally confuse the server and keeps the connections open endlessly until the slots completely fill up

seasonedtoker
Автор

DDOS
D = Distributed (requires multiple machines (botnets) attacking a target simultaneously)

sleento
Автор

not even a DOS attack, blocking call, what a newbie.

sarevoker
Автор

Plot twist: you're attacking a honeypot

larg
Автор

Requests works synchronously. This is neither a ddos attack nor a dos attack. Its not an attack at all. You are just doing a request only once at a time and wait for that to complete and make a new one.

An example, load balancer making a request to server to check its availability, although load balancer waits some time, say 2 sec, before making a new request.

kalyan_gupta
Автор

For this, to somehow work you would need to actually run it in parallel and do it across multiple machines. Also, every 3-4-5 requests, ips should be rotated to prevent bot detection.

shadowpwls
Автор

you can Ping Ips in Terminal too. it would be more effective to do so there

SergeyevaETS
Автор

This is the smallest form of DDOS possible and would do little to no damage to 99.9999% of sites.

For an actual good DDOS attack, you should request a large amount of data (like a query) and stop in the middle of the request. Do this asynchronously across a large amount of computers and you could harm very small sites

pretro
Автор

This can be considered an attack, but it is very ineffective and it is better to use POST requests instead of GET

BlitzTankovic
Автор

ah yes printing a single status code will shutdown a whole website
this isnt even a dos attack

Miweoro
Автор

i swear one day im gonna see "how to build a nuke (for educational purposes) "

xmm_
Автор

use multiprocessing module for stronger attacks
this is DoS btw not DDoS

MohitChauhan-xg
Автор

He broke the firewall and entered the mainframe 😂

Ducky-wq
Автор

Socks library is used for DDoS attack tool
It that library is used to craft costome packets and send to the server in a bulk form

What you are doing is just sending a single packet one after the other and it will have no effect on the server

quahmehomepage
welcome to shbcf.ru