71 questions
1 vote
1 answer
131 views
TCP packets don't show up on the server C++
I'm trying to flood a server placed on dstat.cc, but it doesn't work as I expected. Here's the code #include <iostream> #include <thread> #include <vector> #include <sys/socket.h&...
1 vote
1 answer
174 views
When to use Energy vs Momentum computation mode for Steady flow analysis on HEC-RAS
What is the difference in using the Energy vs Momentum steady flow computation mode in HEC-RAS?
0 votes
1 answer
1k views
Is there a way to turn off Drupal flood unblock/control from code?
I would like to turn off the flood unblock/control in Drupal, because the user are blocked after a wrong password. Attemted all of simple possibilities and disabled it on the admin page, but every ...
1 vote
1 answer
690 views
can I specify IP soure or interface in packet sender
I use packet sender to generate UDP flooding traffic. However, I have multiple NICs and the NIC packet sender using is not what I want. How do I specify the NIC in the packet sender?
0 votes
0 answers
63 views
Is it possible to disrupt the communication between two parties without a TCP RST attack?
I was wondering if it was possible to disrupt the communication between two parties by sending a large amount of packets with a spoofed source address (HOST A) so that the targeted address (HOST B) ...
0 votes
1 answer
628 views
Someone sending continuosly request to server and flooding it
I have my express server deployed and someone is continuously sending some requests and flooding the server. This flooding makes the server super slow. 2021-12-22T08:32:00.591180+00:00 app[web.1]: GET ...
0 votes
0 answers
755 views
High CPU load on SYN flood
When being under SYN flood attack, my CPU reach to 100% in no time by the kernel proccess named ksoftirqd, I tried so many mitigations but none solve the problem. This is my sysctl configurations ...
0 votes
1 answer
637 views
SYN Flooding Attack
I am trying to stop SYN Flooding Attack but when I set net.ipv4.tcp_syncookies = 1 in sysctl.conf I get this error /proc/sys/net/ipv4/tcp_syncookies: No such file or directory
0 votes
1 answer
302 views
HTTP Flood on Tomcat server causing issues
I am getting hit with small HTTP floods on my apache server running port 80 which is proxying tomcat on port 8080. Now what is happening is this is causing tomcat to create 100s - 1000s of sessions ...
1 vote
1 answer
2k views
How to ask Scapy to send packets faster, say 1000pps
I just wanna control the velocity of packet generation, because Scapy is too slow to send packets by default using "send". Some suggestions say "sendpfast" can specify PPS, however, it doesn't work in ...
0 votes
0 answers
184 views
How to bann/block automatically IPs from a large access log with Nginx?
How can I bann or block automatically all IPs that reached 404 page from a large access log? I am using Nginx on Ubuntu 16.04, so I want to do it via Nginx. It can't be done manually because the log ...
1 vote
1 answer
108 views
ASK : What if 1 server send ping to 5000 or more device?
What if 1 server send ping to 5000 or more device at same time? does it cause bandwidth overload? or does it make flooding? thank you
1 vote
2 answers
2k views
Protection against possible syn-flood DDoS attack
I'm running a service at a given port (let's say 1234). From time to time it's not reachable. When I check dmesg I see: TCP: Possible SYN flooding on port 1234. Sending cookies. Check SNMP counters ...
2 votes
1 answer
410 views
How do deal with bots using the in-site search and overflowing the SQL with too many requests?
What is the best practise to not annoy users with flood limits, but yet block off bots doing automated searches? What is going on: I am been more aware of odd search behaviour and I finally had the ...
1 vote
1 answer
276 views
How to set a dispatch rate to ActiveMQ queue
Given a queue in ActiveMQ with 50+ consumers, Is there a way to dispatch at the most 1 event per second to consumer? This is to control a flood of events dispatch. Event producers are outside my ...