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 
TABLESPACE(7) SQL Commands DROP TABLESPACE(7) NAME
DROP TABLESPACE - remove a tablespace SYNOPSIS
DROP TABLESPACE [ IF EXISTS ] tablespacename DESCRIPTION
DROP TABLESPACE removes a tablespace from the system. A tablespace can only be dropped by its owner or a superuser. The tablespace must be empty of all database objects before it can be dropped. It is possible that objects in other databases might still reside in the tablespace even if no objects in the current database are using the tablespace. Also, if the tablespace is listed in the temp_tablespaces setting of any active session, the DROP might fail due to temporary files residing in the tablespace. PARAMETERS
IF EXISTS Do not throw an error if the tablespace does not exist. A notice is issued in this case. tablespacename The name of a tablespace. NOTES
DROP TABLESPACE cannot be executed inside a transaction block. EXAMPLES
To remove tablespace mystuff from the system: DROP TABLESPACE mystuff; COMPATIBILITY
DROP TABLESPACE is a PostgreSQL extension. SEE ALSO
CREATE TABLESPACE [create_tablespace(7)], ALTER TABLESPACE [alter_tablespace(7)] SQL - Language Statements 2010-05-14 DROP TABLESPACE(7)
All times are GMT -4. The time now is 09:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy