Open and End

This commit is contained in:
minoplhy 2021-10-02 16:50:33 +07:00
parent 97c78dcb4c
commit 6c3ee34e8e

View File

@ -52,7 +52,7 @@ def IP_URL_FILTERING(filters_welcome):
file[i] = re.sub(':(\d\d\d\d\d|\d\d\d\d|\d\d\d|\d\d|\d)', '', file[i])
file[i] = re.sub('\A'+str(IP4)+'\Z', '', file[i])
file[i] = re.sub('\A(\[|)'+str(IP6)+'(\]|)\Z', '', file[i])
file[i] = re.sub('\[..*\]', '', file[i])
file[i] = re.sub('\A\[..*\]\Z', '', file[i])
with open(filters_welcome, 'w') as f1:
f1.writelines(["%s\n" % item for item in file])
print("Ip Address and Url Path filtering Operation Completed!")