Trước hết tôi sẽ không đề xuất iptables để giải quyết tất cả những điều này, thực sự là một nút Tor thoát lý tưởng sẽ tải lưu lượng cân bằng mặc dù một số đường hầm VPN để giữ cho ISP khỏi các gói và đích thực và / hoặc sử dụng proxy lưu trữ để tránh các yêu cầu lặp lại bên ngoài đến nội dung tĩnh phổ biến đến mức tối thiểu ... trong khi xem xét các tùy chọn đó là trợ giúp ban nhạc cho các vấn đề khiếu nại lạm dụng;
Nguồn thông tin sử dụng
http://www.ossramblings.com/USE_iptables_rate_limiting_to_prevent_portscans
http://blog.nintechnet.com/how-to-block-w00tw00t-at-isc-sans-dfind-and-other-web-vulnerability-scanners/
Kết hợp hai liên kết nguồn thành các quy tắc có thể được sử dụng để làm nản lòng các bot đang cố gắng sử dụng nút thoát Tor của bạn để quét cổng. Lưu ý điều này có thể khiến tin tặc sử dụng nút thoát của bạn rất không hài lòng vì các quy tắc này gây ra thời gian treo nmap.
#!/bin/bash
## Network interface used by Tor exit daemon
_tor_iface="eth1"
## Ports that Tor exit daemon binds to, maybe comma or space sepperated.
_tor_ports="9050,9051"
## Time to ban connections out in secconds, default equates to 10 minutes, same as default Tor cercut.
_ban_time="600"
## How long to monitor conections in seconds, default equates to 10 minutes.
_outgoing_tcp_update_seconds="600"
## How many new connections can be placed to a server in aloted update time limits. May nead to increes this depending on exit node usage and remote servers usages.
_outgoing_tcp_hitcount="8"
## How long to monitor connections for in minuets, default is 15 minutes but could be lessoned.
_outgoing_tcp_burst_minute="15"
## Hom many connections to accept untill un-matched
_outgoing_tcp_burst_limit="1000"
iptables -N out_temp_ban -m comment --comment "Make custom chain for tracking ban time limits" || exit 1
iptables -A out_temp_ban -m recent --set --name temp_tcp_ban -p TCP -j DROP -m comment --comment "Ban any TCP packet coming to this chain" || exit 1
iptables -N out_vuln_scan -m comment --comment "Make custom chain for mitigating port scans originating from ${_tor_iface}" || exit 1
for _tor_port in ${_tor_ports//,/ }; do
iptables -A out_vuln_scan -p TCP -o ${_tor_iface} --sport ${_tor_port} -m recent --name temp_tcp_ban --update --seconds ${_ban_time} -j DROP -m comment --comment "Update ban time if IP address is found in temp_tcp_ban list" || exit 1
iptables -A out_vuln_scan -p TCP -o ${_tor_iface} --sport ${_tor_port} -m state --state NEW -m recent --set -m comment --comment "Monitor number of new conncetions to ${_server_iface}" || exit 1
iptables -A out_vuln_scan -p TCP -o ${_tor_iface} --sport ${_tor_port} -m state --state NEW -m recent --update --seconds 30 --hitcout 10 -j out_temp_ban -m comment --comment "Ban address when to many new connections are attempted on ${_tor_iface}" || exit 1
done
iptables -A out_vuln_scan -j RETURN -m comment --comment "Return un-matched packets for further processing" || exit 1
## Add rules to accept/allow outbound packets
iptables -N tor_out -m comment --comment "Make custom chain for allowing Tor exit node services" || exit 1
for _tor_port in ${_tor_ports//,/ }; do
iptables -A tor_out -p TCP -o ${_tor_iface} --sport ${_tor_port} -m state --state NEW -m recent --set --name limit_${_tor_port} -m comment --comment "Track out-going tcp connections from port ${_tor_port}" || exit 1
iptables -A tor_out -p TCP -o ${_tor_iface} --sport ${_tor_port} -m state --state NEW -m recent --update --seconds ${_outgoing_tcp_update_seconds:-60} --hitcount ${_outgoing_tcp_hitcount:-8} --rttl --name limit_${_tor_port} -j LOG --log-prefix "TCP flooding port ${_tor_port}" -m comment --comment "Log atempts to flood port ${_tor_port} from your server" || exit 1
iptables -A tor_out -p TCP -o ${_tor_iface} --sport ${_tor_port} -m state --state NEW -m recent --update --seconds ${_outgoing_tcp_update_seconds:-60} --hitcount ${_outgoing_tcp_hitcount:-8} --rttl --name limit_${_tor_port} -j DROP -m comment --comment "Drop attempts to flood port ${_tor_port} from your server" || exit 1
iptables -A tor_out -p TCP -o ${_tor_iface} --sport ${_tor_port} -m limit --limit ${_outgoing_tcp_burst_minute:-15}/minute --limit-burst ${_outgoing_tcp_burst_limit:-1000} -j ACCEPT -m comment --comment "Accept with conditions new connections from port ${_tor_port} from your server" || exit 1
done
iptables -A tor_out -j RETURN -m comment ---comment "Reurn un-matched packets for further filtering or default polices to take effect." || exit 1
## Activate jumps from default output chain to new custom filtering chains
iptables -A OUTPUT -p TCP -o ${_tor_iface} -j out_vuln_scan -m comment --comment "Jump outbound packets through vulnerability scaning mitigation" || exit 1
iptables -A OUTPUT -p TCP -o ${_tor_iface} -j tor_out -m comment --comment "Jump outbound packets through conditional acceptance" || exit 1
Chạy ở trên bash
để có phép thuật được tạo hình sẵn trên các biến với ,
cammas tức là;
user@host~# bash iptables_limit_tor.sh
Đây là danh sách các biến một lần nữa
_tor_iface="eth1"
_tor_ports="9050,9051"
_ban_time="600"
_outgoing_tcp_update_seconds="600"
_outgoing_tcp_hitcount="8"
_outgoing_tcp_burst_minute="15"
_outgoing_tcp_burst_limit="1000"
Lưu ý rằng bạn cũng có thể muốn lọc các kết nối ra bên ngoài mới cho -m state NEW ! --syn
các loại hình vui nhộn được sử dụng bởi một số bot để tìm máy chủ có thể khai thác ở đây là một chuỗi ví dụ mà bạn có thể đặt trước hai phần trên để lọc thêm các cuộc trò chuyện không đúng định dạng như vậy
iptables -N out_bad_packets -m comment --comment "Make new chain for filtering malformed packets" || exit 1
iptables -A out_bad_packets -p TCP --fragment -j out_temp_ban -m comment --comment "Drop all fragmented packets" || exit 1
iptables -A out_bad_packets -p TCP -m state --state INVALID -j out_temp_ban -m comment --comment "Drop all invalid packets" || exit 1
iptables -A out_bad_packets -p TCP ! --syn -m state --state NEW -j out_temp_ban -m comment --comment "Drop new non-syn packets" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL NONE -j out_temp_ban -m comment --comment "Drop NULL scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL ALL -j out_temp_ban -m comment --comment "Drop XMAS scan"|| exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL FIN,URG,PSH -j out_temp_ban -m comment --comment "Drop stealth scan 1" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL SYN,RST,ACK,FIN,URG -j out_temp_ban -m comment --comment "Drop pscan 1"|| exit 1
iptables -A out_bad_packets -p TCP --tcp-flags SYN,FIN SYN,FIN -j out_temp_ban -m comment --comment "Drop pscan 2" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags FIN,RST FIN,RST -j out_temp_ban -m comment --comment "Drop pscan 3" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags SYN,RST SYN,RST -j out_temp_ban -m comment --comment "Drop SYN-RST scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ACK,URG URG -j out_temp_ban -m comment --comment "Drop URG scans" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL SYN,FIN -j out_temp_ban -m comment --comment "Drop SYNFIN scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL URG,PSH,FIN -j out_temp_ban -m comment --comment "Drop nmap Xmas scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL FIN -j out_temp_ban -m comment --comment "Drop FIN scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags ALL URG,PSH,SYN,FIN -j out_temp_ban -m comment --comment "Drop nmap-id scan" || exit 1
iptables -A out_bad_packets -p TCP --tcp-flags RST RST -o ${_tor_iface} --sport ${_tor_port} -m limit --limit 2/second --limit-burst 3 -j out_temp_ban -m comment --comment "Mitigate Smurf attacks from excesive RST packets"
iptables -A out_bad_packets -p TCP --tcp-flags RST RST -o ${_tor_iface} --sport ${_tor_port} -m limit --limit 2/second --limit-burst 2 -j RETURN -m comment --comment "Ban Smurf attacks using excesive RST packets"
iptables -A out_bad_packets -j RETURN -m comment --comment "Return un-matched packets for further processing." || exit 1
Tuy nhiên, chuỗi trên sẽ rất hạn chế vì bất kỳ gói phù hợp nào cũng sẽ bị cấm IP (có thể thay đổi -j out_temp_ban
thành -j DROP
hoặc -j REJECT
để thử nghiệm) trong nhiều giây được chọn trong quy tắc của chuỗi đó. Bộ quy tắc này cũng có thể gây ra sự tích cực khi các ứng dụng được mã hóa kém ở đầu của khách hàng được kết nối lại qua một cercut Tor mới.
~~~~~
Phần mềm cần xem xét để tiếp tục chuyển đổi lưu lượng Kiểm tra firejail
Linux, nguồn trên Github và Source forge và các trang man có thể được tìm thấy trên trang chủ cũ, tên miền phụ wordpress và DigitalOcean có hướng dẫn cho Nginx với PHP và Firejail với một chút sửa đổi có thể mang lại cho bạn nhiều sự kích động hơn về việc mạng sẽ được điều chỉnh trở lại. Có những công cụ khác KVM
cũng có thể được sử dụng để giữ các dịch vụ không gian trong phạm vi hoạt động, vì vậy hãy mua sắm để tìm ra công cụ phù hợp nhất với hệ thống của bạn.
Tuy nhiên, một tùy chọn khác sẽ là chạy fail2ban
theo cách mà khi một quản trị viên hệ thống điên cuồng kết nối http hoặc ssl với IP của bạn, một quy tắc được thêm vào để thả-m state --state NEW
kết nối đến những người yêu cầu trang thông báo thoát của bạn. Điều này nếu được kết hợp với các giới hạn thời gian cấm hoàn toàn có thể cho phép máy chủ từ xa nghỉ trong khi sier-admin lẩm bẩm về cảnh báo nhật ký ;-) Tuy nhiên, điều đó nằm ngoài phạm vi của câu trả lời hiện tại này và phụ thuộc vào phần mềm bạn đang sử dụng để phục vụ trang thông báo thoát; gợi ý cả nginx và apache sẽ phục vụ khối vhost hoặc máy chủ đầu tiên trong cấu hình của bạn nếu bây giờ URL được yêu cầu. Nếu sử dụng một cái gì đó khác ngoài apache hoặc nginx, bạn sẽ muốn tham khảo các trang man nhưng đối với tôi, nó đơn giản như việc đặt vhost đầu tiên để đăng nhập vào một tệp khác và có fail2ban thêm bất kỳ IP nào từ nhật ký đó vào danh sách cấm tạm thời ; điều này cũng có tác dụng tuyệt vời trong việc cấm bot trên các máy chủ công cộng vì chúng thường sử dụng địa chỉ IP và không cung cấp kết quả yêu cầu tên miền trong máy chủ phục vụ bẫy bot,
Tôi muốn sử dụng hai dây dẫn chạy chính sách thoát Tor bị hạn chế (có vẻ như bạn đã xử lý) và sau đó đẩy lưu lượng truy cập qua các đường hầm VPN, các điểm tín dụng bổ sung để cân bằng tải giữa các đường hầm đa nhân. Bởi vì điều này sẽ gây ra sự gián đoạn ít hơn đối với lưu lượng truy cập mạng Tor và khiến mắt ISP của bạn bị che mờ với thực tế là bạn đang chạy một nút thoát ... trừ khi họ muốn thừa nhận để đánh hơi và phá vỡ lưu lượng VPN của bạn. Điều này là do việc chạy các quy tắc tạm thời cấm hoặc cho phép máy chủ từ xa tự cấm có thể dẫn đến vi phạm quyền riêng tư đối với các máy khách của nút của bạn khi việc đẩy lưu lượng ra VPN (hoặc một vài) sẽ hỗ trợ quyền riêng tư của khách hàng và giữ cho bạn ISP khỏi bị săn lùng với các yêu cầu cho nhật ký lưu lượng mạng của bạn bởi bất kỳ khả năng nào của chính phủ đang chạy whois www.some.domain
.
~~~ ~
Chỉnh sửa / Cập nhật
~~~ ~
Tôi đã thực hiện một chuyến đi vào các ghi chú mở rộng của mình và mở các cấu hình cho các máy chủ công cộng mà tôi sử dụng
Đây là fail2ban jail.local
stansa
[apache-ipscan]
enabled = true
port = http,https
filter = apache-ipscan
logpath = /var/log/apache*/*error_ip*
action = iptables-repeater[name=ipscan]
maxretry = 1
Và đây là apache-ipscan.conf
tập tin bộ lọc
[DEFAULT]
_apache_error_msg = \[[^]]*\] \[\S*:error\] \[pid \d+\] \[client <HOST>(:\d{1,5})?\]
[Definition]
failregex = \[client <HOST>\] client denied by server .*(?i)/.*
#^<HOST>.*GET*.*(?!)/.*
# ^%(_apache_error_msg)s (AH0\d+: )?client denied by server configuration: (uri )?.*$
# ^%(_apache_error_msg)s script '\S+' not found or unable to stat(, referer: \S+)?\s*$
ignoreregex =
# DEV Notes:
# the web server only responds to clients with a valid Host:
# header. anyone who tries using IP only will get shunted into
# the dummy-error.log and get a client-denied message
#
# the second regex catches folks with otherwise valid CGI paths but no good Host: header
#
# Author: Paul Heinlein
Và đây là iptables-repeater.conf
tập tin hành động
# Fail2Ban configuration file
#
# Author: Phil Hagen <phil@identityvector.com>
# Author: Cyril Jaquier
# Modified by Yaroslav Halchenko for multiport banning and Lukas Camenzind for persistent banning
# Modified by S0AndS0 to combine features of previous Authors and Modders
#
[Definition]
# Option: actionstart
# Notes.: command executed once at the start of Fail2Ban.
# Values: CMD
#
actionstart = iptables -N fail2ban-BADIPS-<name>
iptables -A fail2ban-BADIPS-<name> -j RETURN
iptables -I INPUT -j fail2ban-BADIPS-<name>
## Comment above line and uncomment bello line to use multiport and protocol in addition to named jails
#iptables -I INPUT -p <protocol> -m multiport --dports <port> -j fail2ban-BADIPS-<name>
# set up from the static file
#cat /etc/fail2ban/ip.blocklist.<name> |grep -v ^\s*#|awk '{print $1}' | while read IP; do iptables -I fail2ban-BADIPS-<name> 1 -s $IP -j DROP; done
cat /etc/fail2ban/ip.blocklist.<name> |grep -v ^\s*#|awk '{print $1}' | while read IP; do iptables -I fail2ban-BADIPS-<name> 1 -d $IP -j DROP; done
## Comment above line and uncomment bellow line to check if there are blacklist files to load before attempting to load them
# if [ -f /etc/fail2ban/ip.blacklist.<name> ]; then cat /etc/fail2ban/ip.blacklist.<name> | grep -e <name>$ | cut -d "," -s -f 1 | while read IP; do iptables -I fail2ban-BADIPS-<name> 1 -s $IP -j DROP; done; fi
# Option: actionstop
# Notes.: command executed once at the end of Fail2Ban
# Values: CMD
#
actionstop = iptables -D INPUT -p <protocol> -m multiport --dports <port> -j fail2ban-BADIPS-<name>
iptables -F fail2ban-BADIPS-<name>
iptables -X fail2ban-BADIPS-<name>
# Option: actioncheck
# Notes.: command executed once before each actionban command
# Values: CMD
#
#actioncheck = iptables -n -L INPUT | grep -q fail2ban-BADIPS-<name>
actioncheck = iptables -n -L OUTPUT | grep -q fail2ban-BADIPS-<name>
# Option: actionban
# Notes.: command executed when banning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: <ip> IP address
# <failures> number of failures
# <time> unix timestamp of the ban time
# Values: CMD
#
#actionban = if ! iptables -C fail2ban-BADIPS-<name> -s <ip> -j DROP; then iptables -I fail2ban-BADIPS-<name> 1 -s <ip> -j DROP; fi
actionban = if ! iptables -C fail2ban-BADIPS-<name> -d <ip> -j DROP; then iptables -I fail2ban-BADIPS-<name> 1 -d <ip> -j DROP; fi
# Add offenders to local blacklist, if not already there
if ! grep -Fxq '<ip>,<name>' /etc/fail2ban/ip.blocklist.<name>; then echo "<ip>,<name> # fail2ban/$( date '+%%Y-%%m-%%d %%T' ): auto-add for BadIP offender" >> /etc/fail2ban/ip.blocklist.<name>; fi
# Report offenders to badips.com
# wget -q -O /dev/null www.badips.com/add/<name>/<ip>
# Option: actionunban
# Notes.: command executed when unbanning an IP. Take care that the
# command is executed with Fail2Ban user rights.
# Tags: <ip> IP address
# <failures> number of failures
# <time> unix timestamp of the ban time
# Values: CMD
#
#actionunban = iptables -D fail2ban-REPEAT-<name> -s <ip> -j DROP
actionunban = iptables -D fail2ban-REPEAT-<name> -d <ip> -j DROP
# Disabled clearing out entry from ip.blacklist (somehow happens after each stop of fail2ban)
#sed --in-place '/<ip>,<name>/d' /etc/fail2ban/ip.blacklist.<name>
[Init]
# Defaut name of the chain
#
# Defaut name of the chain
name = BADIPS
# Option: port
# Notes.: specifies port to monitor
# Values: [ NUM | STRING ] Default:
#
#port = ssh
# Option: protocol
# Notes.: internally used by config reader for interpolations.
# Values: [ tcp | udp | icmp | all ] Default: tcp
Lưu ý bộ lọc ở trên đã được chỉnh sửa để chặn OUTPUT
các hành động bắt đầu / dừng nhưng bạn vẫn muốn thêm các cấu hình -p TCP -m state --state NEW
vào từng dòng để chỉ có các kết nối ngoài mới bị cấm từ địa chỉ IP đã đăng nhập.
Cuối cùng là thiết lập cấu hình Apache vhost để loại bỏ những người không yêu cầu tên miền đối với quyền truy cập và nhật ký lỗi cụ thể và thiết lập quyền truy cập được phép so với quyền truy cập để nó luôn bị lỗi, thậm chí không thể lặp lại trang có thể kéo lên trang mà không xuất hiện lỗi . Cuối cùng nhưng không kém phần quan trọng là thiết lập trang lỗi cho Apache thành thông báo thoát mặc định từ Tor để được cung cấp thay vì 503
hoặc404
tin nhắn nhạt nhẽo. Hoặc nếu bạn đã thêm các dòng trạng thái vào các hành động iptables cho fail2ban, bạn có thể dễ dàng chỉ đến cùng một tệp nhật ký được sử dụng bởi thông báo thoát của bạn. Kết quả là máy chủ của bạn sẽ không thể tạo kết nối mới với IP của máy chủ đã kiểm tra địa chỉ IP của bạn nhưng các kết nối được thiết lập và liên quan vẫn sẽ được cho phép, tức là họ vẫn có thể duyệt các trang khác của bạn nhưng bạn không thể duyệt qua .