Posts

Showing posts from 2025

Hans-Peter Dürr: The spiritual is the driving force

Image
Let's say I mean I'm a dyed-in-the-wool quantum physicist. So that means that I fully consciously took part in this development that took place at the beginning of this century. It started with Planck, with Einstein and so on. But the important thing is that Planck and Einstein, who started this development, actually didn't believe it. Because they interfered, uncertainty principle and so on and then quantum physics and so on. They said it can only be a transitional stage. And it was the young people, Werner Heisenberg, in whose office I am sitting here, Werner Heisenberg at the age of twenty, who said: this is the breakthrough! We need to see reality totally differently. No longer material, but much more open.  For these people, the difficulty then arose: how can something that is so open, which could also include people at once, because we never wanted to submit to determinism, because we naturally thought of ourselves as creative. In such an open world, how can you ever ...

Linux Firewall (iptables) commands for DDoS attacks

Image
The following is the list of IP ranges that had more than 1000 IPs each over the last three months of DDoS attacks, starting from 7000 variations in the first one. The ranges have been checked and the hosts do not resolve to Google search, MSN search or the Amazon crawler. Some resolve to Amazon AWS. Use at your own risk. This may block some legitimate ISPs. Also block the SSH port ( 22 ) on your server hosting provider firewall, if possible. Important: Make sure your own IP is not in a range before running the commands. sudo iptables -A INPUT -s 146.174.0.0/16 -j DROP sudo iptables -A INPUT -s 202.76.0.0/16 -j DROP sudo iptables -A INPUT -s 111.119.0.0/16 -j DROP sudo iptables -A INPUT -s 47.128.0.0/16 -j DROP sudo iptables -A INPUT -s 188.239.0.0/16 -j DROP sudo iptables -A INPUT -s 166.108.0.0/16 -j DROP Also ensure that any IPs within the googlebot IP range below, are removed. sudo iptables -D INPUT -s 66.249.0.0/16 -j DROP sudo iptables -D INPUT -s 209.85.238.0/2...