Bluesky · Hashtag

#DDoS

58
posts · 30d
25
users
2
posts / day
2.3
posts / user
+ 15% vs last week

#DDoS is an active hashtag on Bluesky. In the last 30 days, 25 people shared 58 posts with it — around 2 a day. Activity is up 15% versus the previous week, peaking on Jul 14 with 11 posts.

#DDoS posts per day (last 30 days)

Posts with #DDoS

Jost Maurin
@jostmaurin.bsky.social
over 1 year ago
Die meisten Medien berichten nicht gern über Cyberangriffe auf sich - die taz schon: "Nicht nur mit Bezug zu #Ungarn wurden wir gezielt angegriffen, sondern auch vonseiten Russlands." Solche Angriffe gefährden die #Pressefreiheit. taz.de/Angriff-auf-... #Orban #Putin #DDOS #Hacker #Ukraine #Medien
Angriff auf die taz: Gezielt getroffen

taz.de

Angriff auf die taz: Gezielt getroffen

Am Tag der Bundestagswahl legt ein Cyberangriff taz.de lahm. Es ist nicht der erste dieser Art. Warum das kein Zufall ist.

0 17 38
YourAnonRiots 🐈‍⬛🏴🇵🇸🇲🇲🇺🇦🇸🇦🦋
@youranonriots.bsky.social
12 months ago
A 22-year-old from Oregon built a #DDoS -for-hire botnet so massive it launched 370,000+ attacks across 80 countries. Powered by 95,000 hacked devices, “ #RapperBot ” could blast traffic at 6 Tbps—enough to cripple major platforms. The FBI just shut it down. #CyberAttacks #botnet
DOJ Charges 22-Year-Old for Running RapperBot Botnet Behind 370,000 DDoS Attacks

thehackernews.com

DOJ Charges 22-Year-Old for Running RapperBot Botnet Behind 370,000 DDoS Attacks

RapperBot launched 370,000 DDoS attacks on 18,000 victims in 80+ countries since 2021, DOJ seizes botnet.

1 13 26
fluffy 💜
@fedi.beesbuzz.biz
1 day ago
busybee: fluffy rambles: Futility beesbuzz.biz/blog/3212-Fu… #Futility #Blog #Bots #DDoS #LLM #AI

beesbuzz.biz

Futility

xkeeper posted a blog post about their issues running TCRF. On a related note, here’s my webserver’s HTTP response code stats for today, across all of my websites: fluffy@nautilus[/var/log/nginx] fluffy$ cut -f3 -d\" access.log | cut -f2 -d\ | sort | uniq -c | sort -n 3 408 4 502 4 503 10 410 20 504 56 307 60 403 165 406 225 401 462 499 662 405 670 500 819 202 1739 304 2989 400 6299 206 16352 302 32402 301 52673 404 83035 303 192512 200 308859 429 This is pretty disheartening. For those who don’t know, 429 is Too Many Requests, and is what my site responds with when it detects bad-behavior crawler activity, primarily from attempting to crawl over the tag browser, which is not presented to properly-declared bots (because there is no reason for bots to crawl them). So, of the nearly 700,000 requests served up today, around 44% were these crawler bots. Most of these bots come from residential proxy networks, meaning people have installed malware like Honeygain to earn tiny amounts of money for “Internet testing” or similar. Things are even worse, though. That 303 response code is See Other, which is a form of redirect that is used when you redirect a HTTP POST to a GET. There is only one place on my sites that such a thing happens: when someone presses the button for the “sentience check” that occurs on a 429 error page. When this button is clicked, the user gets a simple “button pressed” cookie that is signed with the user’s IP address and User-Agent and with a timestamp that expires after an hour. For a legitimate user who happened to trip the bot detection (by legitimately browsing multiple tags simultaneously), this will grant them access to the site. However, what’s actually happening here is that the crawlers are pretending to click the button so that they can try to access the site, but because each request comes from a different IP address or a randomized user-agent (trying to look like a real web browser), they end up just trying the same URL again and getting the same 429 response. So that’s another 12% of my website traffic going to bots who are specifically trying to get around my anti-bot measures. Back when I first started with this anti-bot measure I only checked for the presence of a cookie, under the presumption that the bots weren’t storing them at all, but one of the bots from the Alibaba cloud IP range did start to get through the check, indicating that it was storing _a_ cookie, and it was flooding my server with very expensive requests as a result. Signing it to the IP address stopped that, at least, but it hasn’t stopped the unrelenting onslaught, all the same. Okay, so HTTP 200 is the response code for an actual successful pageview. _At best_ that’s around 27.5% of my traffic. Let’s see how much of that is coming from declared bots: fluffy@nautilus[/var/log/nginx] fluffy$ grep ' 200 ' access.log | grep '+http' | wc -l 55024 So, of the 193,000 successful web requests, 29% is coming from bots that declare themselves to be bots. Let’s spot-check some of the other successful requests: x.x.x.x - - [07/Aug/2026:23:43:10 -0700] "GET /blog/everything?id=1643&tag=late-stage-capitalism HTTP/1.1" 200 3697 "https://beesbuzz.biz/blog/everything?id=1643&tag=late-stage-capitalism" "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Mobile Safari/537.36" "beesbuzz.biz" https Okay so, this request is being made with its own URL as its referer, which legitimate browsers don’t do, but which bots do in order to try to look like real traffic while avoiding anti-hotlink protections. That’s harder to filter out with a simple command line. But spot-checking my access log, I see a lot of requests like that. I also see a lot of `ClaudeBot` requests. These do not properly declare themselves as bots, as they do not follow the `+http` convention for giving an informational page about the bot. They do provide a contact email address. The requests are all for nonexistent paths and seem to be probing for runtime configuration files and AWS credenetials and so on, so I doubt that these are _actually_ ClaudeBot. 35.205.29.241 - - [07/Aug/2026:23:47:38 -0700] "GET /@fs/.env?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:38 -0700] "GET /@fs/home/ubuntu/.aws/config?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:38 -0700] "GET /@fs/app/rootkey.csv?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:41 -0700] "GET /@fs/app/terraform.tfstate?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:41 -0700] "GET /@fs/var/www/.env?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:44 -0700] "GET /@fs/home/ubuntu/.azure/credentials?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:44 -0700] "GET /@fs/var/www/html/wp-config.php?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:44 -0700] "GET /@fs/root/.config/linode-cli?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:48 -0700] "GET /@fs/app/.openai/config.json?raw?? HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https 35.205.29.241 - - [07/Aug/2026:23:47:51 -0700] "GET /server/.env HTTP/1.1" 404 184 "-" "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])" "flrig.beesbuzz.biz" https Anyway. I don’t really have the energy to figure out a good test to find people who are legitimately browsing this site without doing much deeper analytics on IP addresses and so on, but I can safely say that very little of the traffic going to my server is fulfilling the purpose of putting my creative works online for other people to peruse. It’s disheartening. I spend so much time and energy and effort trying to make things that work well, and very little of it goes towards making a difference that matters. I am in a constant state of pain and fatigue, and try so very hard to do things that I care about with what little time and energy I can muster for it, but it all feels so futile. People keep telling me that AI is the future and you “can’t unsqueeze the tube of toothpaste” and so on, but what good is any of that shit doing? What good am _I_ doing? Why do I even bother? What’s the point to any of this?

1 1 2
YourAnonRiots 🐈‍⬛🏴🇵🇸🇲🇲🇺🇦🇸🇦🦋
@youranonriots.bsky.social
over 1 year ago
#X hit with 3 outages in one day after hacking group Dark Storm Team claims responsibility for a #DDoS attack. Elon Musk suggests it could be a coordinated effort by a large group or even a nation. #X #Cyberattack #DarkStormTeam #TeslaTakedown www.timesnownews.com/worl….
Who Are The Dark Storm Team? Hacking Group Claims Responsibility For 'Cyberattack' On X

www.timesnownews.com

Who Are The Dark Storm Team? Hacking Group Claims Responsibility For 'Cyberattack' On X

Social media platform X suffered three massive outages in one day. Hacking group Dark Storm Team has reportedly claimed responsibility for a Distributed Denial-of-service (DDoS) attack on the platform...

0 3 18

Posts are pulled live from Bluesky and cached briefly. Posts with content labels are hidden.