Skip to content

fatehkabbani/antiWebsite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

ANTI_WEBSITE - A simple website blocker for windows with python

import os
import re

# specify the path of the porn list file
file_path = "porn_list.txt"

# open the porn list file and read the lines using the correct encoding
with open(file_path, "r", encoding="utf-8") as f:
    lines = f.readlines()

# replace any non-ascii characters with a placeholder string
non_ascii_re = re.compile(r'[^\x00-\x7F]+')
new_lines = [non_ascii_re.sub('###', line).replace("0.0.0.0", "").strip() for line in lines if line.strip()]

# write the new lines to a new file using utf-8 encoding
with open("new_porn_list.txt", "w", encoding="utf-8") as f:
    f.write("\n".join(new_lines))

# specify the path of the hosts file
hosts_path = r"C:\Windows\System32\drivers\etc\hosts"  # update this path to match your operating system

# open the new porn list file and add each website to the hosts file with the localhost IP address
with open("new_porn_list.txt", "r", encoding="utf-8") as f:
    lines = f.readlines()

with open(hosts_path, "a") as hosts_file:
    for line in lines:
        hosts_file.write("127.0.0.1 " + line.strip() + "\n")

# flush the DNS cache to ensure that the changes take effect immediately
os.system("ipconfig /flushdns")

how to use

run the python script and it will add the websites to the hosts file and flush the DNS cache Warning will only work on windows and requires admin privileges to run and to be able to change host file and flush DNS cache

About

python script to block certaine type of website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages