Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-py-test committed Oct 12, 2024
1 parent 68d160b commit 574d2ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions antimalware.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
! Title: The malicious website blocklist
! Homepage: https://github.com/iam-py-test/my_filters_001
! Expires: 1 day
! Last updated: 2024-10-11
! Version: 20241011.1
! Last updated: 2024-10-12
! Version: 20241012.1
! Description: This list aims to protect against scams, phishing, malware, some stalkerware, and potentially unwanted programs (PUPs). It includes a version of vxvault.net's list, modified by me to work in adblockers.
! Special thanks to all of the people who have helped me maintain this list! Check out https://github.com/iam-py-test/my_filters_001/blob/main/CONTRIBUTORS.md
! Issues url: https://github.com/iam-py-test/my_filters_001/issues
Expand Down Expand Up @@ -7063,6 +7063,10 @@ ostrowlubelski.pl##^responseheader(location)
! https://github.com/mitchellkrogza/phishing/pull/494
||usps.com-trackahc.top^$all

! https://github.com/hagezi/dns-blocklists/pull/3961
||lvrv0gkspz.blob.core.windows.net^$document
||formally-up.com^$document

! ---- Scams ----

! fails to disclose it's lack of connection to uBlock *Origin*
Expand Down
4 changes: 3 additions & 1 deletion scripts/ed.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def is_alive(domain, in_list=True):
return False
except:
pass
if domain.endswith(".itch.io") or domain.endswith(".appspot.com") or domain.endswith(".squarespace.com") or domain.endswith(".web.app") or domain.endswith(".weeblysite.com") or domain.endswith(".square.site") or domain.endswith(".webflow.io") or domain.endswith(".firebaseio.com"):
if domain.endswith(".itch.io") or domain.endswith(".appspot.com") or domain.endswith(".squarespace.com") or domain.endswith(".web.app") or domain.endswith(".weeblysite.com") or domain.endswith(".square.site") or domain.endswith(".webflow.io") or domain.endswith(".firebaseio.com") or domain.endswith(".vercel.app"):
try:
userreq = requests.get(f"http://{domain}")
if userreq.status_code == 404:
Expand Down Expand Up @@ -335,6 +335,8 @@ def get_dns_record(domain, record):
if ip in parked_ips:
print(f"{e} is - and has always been - parked. Forcing recheck")
entry_data[e]['check_counter'] = 40
if e.endswith(".vercel.app") and entry_data[e]['check_status'] == True: # TODO: remove afterword
entry_data[e]["check_counter"] = 40
entry_data[e]["last_seen"] = current_date
entry_data[e]["removed"] = False
entry_data[e]["removed_date"] = ""
Expand Down

0 comments on commit 574d2ca

Please sign in to comment.