#Looking for an automated way of getting the CHAOS Client File from a website/IP

4 messages · Page 1 of 1 (latest)

cloud vault
#

I'm on Windows but I have the basic kali setup in the terminal as well.

woeful thicket
#

Automation python and selenium

#
from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument("--headless")

driver = webdriver.Chrome(options=options)
driver.get("https://target-site.com")

with open("chaos.js", "w", encoding="utf-8") as f:
    f.write(driver.page_source)

driver.quit()