Skip to main content

Tool used for converting jiffies from iptables xt_recent into timestamps.

Project description

# xt_recent_parser
Tool used for converting jiffies from iptables xt_recent into timestamps.

An example of xt_recent log can be like this, where only 2 syn connections in 20 seconds are allowed:

````
export IPT=iptables
export SSH_PORT=22
export HITCOUNT=3 # 2 syn connection (<3)
export SECONDS=20 # in 20 seconds are allowed


# --rcheck: Check if the source address of the packet is currently in the list.
# --update: Like --rcheck, except it will update the "last seen" timestamp if it matches.

$IPT -A INPUT -p tcp -m tcp --dport $SSH_PORT -m state --state NEW -m recent --set --name sshguys --rsource
$IPT -A INPUT -p tcp -m tcp --dport $SSH_PORT -m state --state NEW -m recent --rcheck --seconds $SECONDS --hitcount $HITCOUNT --rttl --name sshguys --rsource -j LOG --log-prefix "BLOCKED SSH (brute force)" --log-level 4 -m limit --limit 1/minute --limit-burst 5
$IPT -A INPUT -p tcp -m tcp --dport $SSH_PORT -m recent --rcheck --seconds $SECONDS --hitcount $HITCOUNT --rttl --name sshguys --rsource -j REJECT --reject-with tcp-reset
$IPT -A INPUT -p tcp -m tcp --dport $SSH_PORT -m recent --update --seconds $SECONDS --hitcount $HITCOUNT --rttl --name sshguys --rsource -j REJECT --reject-with tcp-reset
$IPT -A INPUT -p tcp -m tcp --dport $SSH_PORT -m state --state NEW,ESTABLISHED -j ACCEPT
````

In syslog we can see blocked connections :

````
Mar 26 14:06:41 cloudone-cla kernel: [5339977.637052] BLOCKED SSH (brute force)IN=eth0 OUT= MAC=00:50:56:92:00:04:00:14:c2:61:09:be:08:00 SRC=95.142.177.153 DST=160.97.104.18 LEN=60 TOS=0x00 PREC=0x00 TTL=50 ID=42489 DF PROTO=TCP SPT=44636 DPT=22 WINDOW=29200 RES=0x00 SYN URGP=0
````

It only needs Python3:

````
root@cloudone-cla:~/xt_recent_parser# python3 xt_recent_parser.py
XT_RECENT python parser
<giuseppe.demarco@unical.it>


Standard readable view:
190.102.72.44, last seen: 2017-03-26 13:31:55 after 1 connections
187.112.185.153, last seen: 2017-03-26 13:28:07 after 2 connections
95.142.177.153, last seen: 2017-03-26 13:27:31 after 12 connections

CSV view:
ip_src;last_seen;connections;deltas_mean;delta_seconds
190.102.72.44;2017-03-26 13:31:55.462201;1;0;
187.112.185.153;2017-03-26 13:28:07.168819;2;0.0;0
95.142.177.153;2017-03-26 13:27:31.976049;12;1.7272727272727273;1,1,1,1,1,1,2,3,3,1,4

````

In CSV format there will be available time delta mean and time deltas in seconds for every attempt.

Pelase remember to edit the xt_recent file path to make it works as desidered:

````
# at the begin of xt_recent_parser.py
_fpath = '/proc/net/xt_recent/sshguys'

# or in object creation:
xt = XtRecentTable(fpath="/proc/net/xt_recent/sshguys")
````


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iptables_xt_recent_parser-0.4.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

iptables_xt_recent_parser-0.4-py3-none-any.whl (30.6 kB view details)

Uploaded Python 3

File details

Details for the file iptables_xt_recent_parser-0.4.tar.gz.

File metadata

  • Download URL: iptables_xt_recent_parser-0.4.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/33.1.1 requests-toolbelt/0.9.1 tqdm/4.31.0 CPython/3.4.3+

File hashes

Hashes for iptables_xt_recent_parser-0.4.tar.gz
Algorithm Hash digest
SHA256 4be0204584d47ee7e4c7e1051e3cdc3d827f36c2fe3814e3c718acf0f102a872
MD5 30171d93917419e29db47ae147599dfd
BLAKE2b-256 9d1d545d0134c09e8699f63757ef1cac5d880d30e6f1d251082bc92c12bbf334

See more details on using hashes here.

File details

Details for the file iptables_xt_recent_parser-0.4-py3-none-any.whl.

File metadata

  • Download URL: iptables_xt_recent_parser-0.4-py3-none-any.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/33.1.1 requests-toolbelt/0.9.1 tqdm/4.31.0 CPython/3.4.3+

File hashes

Hashes for iptables_xt_recent_parser-0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3332155534894c8147ff5394c8dc1151fdfd5f4f0fb58e13cfb971dd87ca5fa9
MD5 9f13c27ab0da1c65eb7883e185d283ef
BLAKE2b-256 b9f583931843a044645c3421af58fa458a2e1e628cfa859d349d029221f819b0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page