python 代码审计-命令执行漏洞(自己编写的代码)
2021-07-03 23:08
标签:审计 eval lse def tip getc command exec json 第一步:获取前台传入的ip: ip= request.POST.get("ip") 这段代码仔细一看,只是判断了ip是否以正常ip开头,比如 12.12.121.12,只要是以正常ip开头的,就可以通过ip的检测。比如输入的ip为:127.0.0.1; ping -c 1 127.0.0.1 第三步: 修复改问题主要是要严格过滤ip,因此将ip以‘.‘分割成4份,判断每一份是否是数字,如果不是全是则表名输入的ip不合法。 python 代码审计-命令执行漏洞(自己编写的代码) 标签:审计 eval lse def tip getc command exec json 原文地址:http://blog.51cto.com/13770310/21731250x00 源代码
def execute(request):
context ={}
ip= request.POST.get("ip")
username= request.POST.get("username")
password= request.POST.get("password")
idnex= int(request.POST.get("index"))
current_time=request.POST.get("time")
context = {"ip":ip,"username":username,"password":password,"result":False}
ippattern="(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)\.(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)"
if(re.match(ippattern,ip)):
pass
else:
context[‘error‘]="ip格式不正确"
log("error","[-]%s ip is error"%(ip))
print ("[-]%s ip格式不正确"%(ip))
#return render(request, ‘test.html‘, context)
return HttpResponse(json.dumps(context))
try:
length,scripts=executeScript.getScriptNums()
if(idnex>length or idnex
0x01 代码执行漏洞原因分析
第二步:判断输入的ip是否合法
ippattern="(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d).(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d).(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d).(25[0-5]|2[0-4]\d|[0-1]\d{2}|[1-9]?\d)"if(re.match(ippattern,ip)):
pass
else:
payload="python %s//jixianjiancha/check/%s %s"%(current_path,script,ip)
commandResult=commands.getoutput(payload)
将判断后的ip直接拼接到payload中,然后使用commands命令执行函数执行命令
由于ip过滤不严格,所以会造成任意命令执行漏洞0x02 修复方案
ip= request.POST.get("ip")
testip=ip.split(".")
if(testip[0].isdigit() and testip[1].isdigit() and testip[2].isdigit()and testip[3].isdigit()):
pass
else:
context[‘error‘]="ip格式不正确"
log("error","[-] %s ip is error"%(ip))
上一篇:C语言的编译预处理
下一篇:Python:你应该知道这些
文章标题:python 代码审计-命令执行漏洞(自己编写的代码)
文章链接:http://soscw.com/index.php/essay/101477.html