def writeInjectPointUrlToSuccLog(url):
with open(sqlInjectSuccLogFile, 'a+') as file_to_read:
file_to_read.write(url + '\r\n')
def checkSqlInResult(filename):
injectSuccStr = 'the following injection point'
with open(filename, 'r') as file_to_read:
file_context =file_to_read.read()
xx=0
if file_context.find(injectSuccStr) != -1:
return 'succ'
return ''
该博客主要围绕Python文件处理展开,虽未给出具体内容,但可知聚焦于Python在文件处理方面的应用,属于后端开发中Python技术的相关实践。
1135

被折叠的 条评论
为什么被折叠?



