Generation

generate functionMon, 10 Jul 2023

crea un software que escanee las webs por si tienen malware que que se pueda intalar como una extencion de nabegador y que se pueda manejar con interfas grafica

import requests import re def scan_website(website): response = requests.get(website) text = response.text # scan for malware pattern = re.compile("malware") matches = pattern.finditer(text) for match in matches: print(match)

Questions about programming?Chat with your personal AI assistant