Quantcast
Channel: CodeSection,代码区,网络安全 - CodeSec
Viewing all articles
Browse latest Browse all 12749

Worst IPs: 2016 Edition

$
0
0

Worst IPs: 2016 Edition
A little late this year, butfollowing tradition here is my list of the absolute worst IP addresses from 2016. All in nice numerical order for easy crunching. These IPs are associated with all sorts of malicious activity, including exploit scanning, email harvesting, brute-force login attacks, referrer spam, and everything in between. Really obnoxious stuff that degrades your site’s performance and potentially threatens security. Word to the wise..

Blocking by IP address is not recommended unless you know what you are doing . I haveexplained numerous times the reasoning behind this, so I won’t waste our collective time repeating it all here. If you are new to the game, you can visit those links to learn more about when, where, and why to block IP addresses.

How I collect this information

Securing sites is a big part of what I do professionally. I’ve been researchingweb security for over 10 years. This ongoing research provides an abundance of useful data, including IP information associated with malicious requests. I use this data when writing tutorials , books , and when developing WordPress plugins . This article provides a snapshot of this research: a list of the top worst IPs of the previous year.

Please also read the notes following the next section.

The worst IP addresses from 2016

So without further ado, here is my collected list of really nasty IPs from last year:

ip-2016.txt

Disclaimer

The lists provided here atPerishable Press are for informational purposes only. I am not responsible for anything that happens once the code leaves this site. That said, this 2016 Bad-IP List is entirely open source and you can republish or use however you want for any purpose. Credit links and shouts out are appreciated, but not required.

Notes

It is important to understand that just because an IP address is associated with bad activity, it doesn’t imply that the owner or primary user of the IP has done anything wrong. In many cases, bad actors use hacked machines and devices to scan sites remotely, so the victim’s IP is associated with the activity instead of the perpetrator’s actual address.

So if you find a familiar IP on this list, don’t panic; but do investigate your machine (site, server, local device, whatever) for any security breaches. Chances are high that the machine using the IP is compromised. If this sounds like you,let me know and I’ll do my best to help out however possible.

(Dis)Honorable mention

Out of all the hundreds of bad IPs I encountered in 2016, there is a handful of especially horrible IPs that are absolutely worth blocking on any site:

79.155.74.231 5.9.136.67 195.154.225.19 198.27.101.168

Whoever/whatever is behind these four IPs are real scumbags, making endless requests for the stupidest resources imaginable in the entire history of exploit scanning. Who knows how much memory and bandwidth these idiots cumulatively have wasted in their vain pursuit of pointless vulnerabilities. Seriously, learn how to log your scans to avoid wasting everyone’s time and resources, including your own.

So to protect your site against these four losers (or maybe the same loser, I have no idea), convert the previous list of IPs into the following .htaccess snippet:

# block worst ips <Limit GET POST PUT> Order Allow,Deny Allow from All Deny from 5.9.136.67 Deny from 79.155.74.231 Deny from 195.154.225.19 Deny from 198.27.101.168 </Limit>

Then add to your site’s .htaccess file , upload, and done. Moving on with my life..

How to block by IP address

If and when you need to block someone or something based on their IP address, .htaccess can do the job quite nicely. Here is an example:

# block some IPs <Limit GET POST PUT> Order Allow,Deny Allow from All Deny from 91.121.149.203 Deny from 111.222.333.44 Deny from 555.444.333.22 </Limit>

So to implement, you would paste that code into your site’s root .htaccess file. Then you would replace each of the three example IP addresses with real ones. Or remove whatever is not needed if you only want to block one or two. Or you can add more IPs by replicating the pattern, etc.

To add massive numbers of IPs to the list, you can use any good code/text editor and simply prepend “Deny from ” to each line in your list of bad IPs. Automation really is the only way to go for this sort of work; check out the useful online tools linked up in the next section.

Essential Tools

By the way, here are some essential online tools for sorting massive lists of IP addresses:

Remove Duplicate Lines Sort Text Lines

Completely awesome that these time-saving tools are available for free online :)


Viewing all articles
Browse latest Browse all 12749

Latest Images

Trending Articles





Latest Images