Sponsored Content
The Lounge What is on Your Mind? Blocked A6-Index and Entire AWS Netblock Post 303020617 by Neo on Tuesday 24th of July 2018 06:09:13 AM
Old 07-24-2018
Man, this A6 Bot is malicious. It's killing the site. Mostly running from so many AWS netblocks that i"m starting to block huge AWS blocks (some overlapping as I have not had time to clean this up):

Code:
iptables -A INPUT -s 35.164.186.253/24 -j DROP #         A6 Indexor
iptables -A INPUT -s 35.166.71.145/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 35.167.251.12/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 35.160.220.18/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 54.200.0.0/14 -j DROP #     A6 Indexor
iptables -A INPUT -s 54.244.201.240/24 -j DROP #         A6 Indexor
iptables -A INPUT -s 52.32.63.7/24 -j DROP #     A6 Indexor
iptables -A INPUT -s 52.38.180.198/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 35.167.3.59/24 -j DROP #    A6 Indexor
iptables -A INPUT -s 35.163.255.97/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 52.38.183.234/24 -j DROP #  A6 Indexor
iptables -A INPUT -s 52.13.16.215/24 -j DROP #   A6 Indexor
iptables -A INPUT -s 52.13.26.158/24 -j DROP #   A6 Indexor
iptables -A INPUT -s 52.39.35.76/24 -j DROP #    A6 Indexor
iptables -A INPUT -s 52.32.0.0/11 -j DROP #      A6 Indexor
iptables -A INPUT -s 52.0.0.0/11 -j DROP #       A6 Indexor
iptables -A INPUT -s 54.240.0.0/12 -j DROP #     A6 Indexor

 

7 More Discussions You Might Find Interesting

1. IP Networking

BitTorrent port 6969 blocked... how to get around the blocked port

Due to the massive Upload speeds killing .... or overstressing our schools network...... my school has blocked port 6969 (the most common BitTorrent port). So I cant connect to the tracker anymore, in other words no more downloading from school :( Does anyone know how I can get around the ports... (1 Reply)
Discussion started by: PenguinDevil
1 Replies

2. Filesystems, Disks and Memory

why the inode index of file system starts from 1 unlike array index(0)

why do inode indices starts from 1 unlike array indexes which starts from 0 its a question from "the design of unix operating system" of maurice j bach id be glad if i get to know the answer quickly :) (0 Replies)
Discussion started by: sairamdevotee
0 Replies

3. UNIX for Dummies Questions & Answers

wh inode index starts from 1 unlike array index (0)

brothers why inode index starts from 1 unlike array inex which starts from 0 its a question from the design of unix operating system of maurice j.bach i need to know the answer urgently...someone help please (1 Reply)
Discussion started by: sairamdevotee
1 Replies

4. Shell Programming and Scripting

Sort from start index and end index in line

Hi All, I have a file (FileNames.txt) which contains the following data in it. $ cat FileNames.txt MYFILE17XXX208Sep191307.csv MYFILE19XXX208Sep192124.csv MYFILE20XXX208Sep192418.csv MYFILE22XXX208Sep193234.csv MYFILE21XXX208Sep193018.csv MYFILE24XXX208Sep194053.csv... (5 Replies)
Discussion started by: krish_indus
5 Replies

5. Virtualization and Cloud Computing

Computing in the Clouds with AWS

Tim Bass 07-25-2008 02:34 AM The admin*team at The UNIX Forums*have been considering moving the UNIX and*Linux*Forums to the clouds - the Amazon Web Services (AWS) cloud.* Amazon EC2 is one option to scale the forums, which is a*LAMP application.* Amazon EC2 allows*us to rent dedicated... (3 Replies)
Discussion started by: Linux Bot
3 Replies

6. Shell Programming and Scripting

AWS S3 with Bash Script

Hello All, I am trying few stuff on Amazon S3 move files to EC2 (Ubuntu Server) I am receiving daily 2 files in S# bucket XYZ_2015-02-26_ 200.csv ABC_2015-02-26_ 200.csv I want to move daily received files to local EC2(Ubuntu server) and rename files to XYZ_2015-02-26.csv... (3 Replies)
Discussion started by: krux_rap
3 Replies

7. Shell Programming and Scripting

Convert ip ranges to CIDR netblock

2 scripts to convert IP ranges to CIDR notation using awk, gawk or mawk. The scripts are much faster than using ipcalc and will return the same results. The first script is reliably compatible with awk, gawk and mawk but is over 3 times as slow as the second script which is reliably compatible with... (38 Replies)
Discussion started by: azdps
38 Replies
DROP 
DATABASE(7) SQL Commands DROP DATABASE(7) NAME
DROP DATABASE - remove a database SYNOPSIS
DROP DATABASE name INPUTS name The name of an existing database to remove. OUTPUTS DROP DATABASE This message is returned if the command is successful. DROP DATABASE: cannot be executed on the currently open database You cannot be connected to the database you are about to remove. Instead, connect to template1 or any other database and run this command again. DROP DATABASE: may not be called in a transaction block You must finish the transaction in progress before you can call this command. DESCRIPTION
DROP DATABASE removes the catalog entries for an existing database and deletes the directory containing the data. It can only be executed by the database owner (usually the user that created it). DROP DATABASE cannot be undone. Use it with care! NOTES This command cannot be executed while connected to the target database. Thus, it might be more convenient to use the shell script dropdb [dropdb(1)], which is a wrapper around this command, instead. Refer to CREATE DATABASE [create_database(7)] for information on how to create a database. COMPATIBILITY
SQL92 DROP DATABASE statement is a PostgreSQL language extension; there is no such command in SQL92. SQL - Language Statements 2002-11-22 DROP DATABASE(7)
All times are GMT -4. The time now is 01:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy