网络安全----web安全防范

以下代码用来防范流行的DDoS攻击,ARP欺骗,CC攻击,XXS攻击,对输入的恶意代码进行过滤,嵌入到web程序可以很好的防范网络攻击,但如果想要更好的防范网络攻击,还需要更加复杂的配置和更硬核的硬件。


import socket

import struct

import time

import threading

定义一些常量

ARP_PACKET_TYPE = 0x0806

IP_PACKET_TYPE = 0x0800

用于检测 ARP 欺骗的函数

def detect_arp_spoofing():

创建原始套接字

sock = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.ntohs(ARP_PACKET_TYPE))

while True:

packet = sock.recvfrom(65535)

eth_header = packet00:14

eth = struct.unpack("!6s6sH", eth_header)

if eth2 == ARP_PACKET_TYPE:

arp_packet = packet014:

arp_header = struct.unpack("!HHBBH6s4s6s4s", arp_packet:28)

检查 ARP 应答的合法性

if arp_header4 == 2:

在此添加验证 MAC 地址和 IP 地址对应关系的逻辑

pass

time.sleep(0.1)

用于检测 DDoS 攻击的函数(简单示例,通过监测短时间内的连接数量)

def detect_ddos():

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

sock.bind(('0.0.0.0', 80))

connection_count = 0

threshold = 100 # 每秒连接数阈值

last_time = time.time()

while True:

sock.listen(5)

client_sock, addr = sock.accept()

connection_count += 1

current_time = time.time()

if current_time - last_time >= 1:

if connection_count > threshold:

print("可能的 DDoS 攻击检测到")

connection_count = 0

last_time = current_time

用于检测 CC 攻击的函数(简单示例,通过监测短时间内对同一资源的请求频率)

def detect_cc():

resource_request_count = {}

threshold = 10 # 每秒对同一资源的请求阈值

last_time = time.time()

while True:

假设这里获取到请求的资源路径

resource_path = "example_resource_path"

if resource_path in resource_request_count:

resource_request_countresource_path += 1

else:

resource_request_countresource_path = 1

current_time = time.time()

if current_time - last_time >= 1:

for resource, count in resource_request_count.items():

if count > threshold:

print(f"可能的 CC 攻击针对资源 {resource} 检测到")

resource_request_count = {}

last_time = current_time

用于检测 XSS 攻击的函数(简单示例,检查输入中是否存在可疑脚本标签)

def detect_xss(input_string):

suspicious_keywords = "\", "\", "\", "javascript:"

for keyword in suspicious_keywords:

if keyword in input_string:

print("可能的 XSS 攻击检测到")

创建线程来运行各个检测函数

threads = [

threading.Thread(target=detect_arp_spoofing),

threading.Thread(target=detect_ddos),

threading.Thread(target=detect_cc),

]

for thread in threads:

thread.start()

相关推荐
其实防守也摸鱼16 小时前
补天SRC新手入门指南:从0到1的漏洞挖掘之路
网络·python·学习·安全·web安全·数据挖掘·挖洞
lubiii_17 小时前
网络安全法律法规备考速查手册
安全·web安全·网络安全
txg66617 小时前
网络安全领域简报(2026年7月14日—20日)
安全·web安全
HackTwoHub20 小时前
解锁 AI 红队全新玩法!Claude-Red 攻防 Skill 库,内置 SQLi、XXE、文件上传等 Web 专项 Skill,一键导入快速落地渗透实战
前端·人工智能·web安全·网络安全·自动化·系统安全
见青..2 天前
phpMyAdmin权限提升
web安全·网络安全·phpmyadmin
数据知道2 天前
邮件安全实战:SPF/DKIM/DMARC 配置与钓鱼绕过
网络·安全·web安全·网络安全·邮件安全
李豆豆喵3 天前
013-基础入门-身份鉴权&参考文章&发包工具项目等
web安全
有浔则灵3 天前
GORM钩子函数详解
网络·安全·web安全
Sagittarius_A*4 天前
CSRF 跨站请求伪造:伪造请求攻击、绕过手段与底层防御
安全·web安全·csrf·dvwa