import os import requests # Test edilecek URL URL = "https://certinia.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcertinia.com%2Fapac%2F&format=xml" OUTPUT_DIR = "test_results" os.makedirs(OUTPUT_DIR, exist_ok=True) def cors_test(): """CORS Yanlış Yapılandırma Testi""" print("[*] CORS testi: Farklı bir 'Origin' ile istek gönderiliyor...") headers = {"Origin": "https://evilsite.com"} response = requests.get(URL, headers=headers) if "Access-Control-Allow-Origin" in response.headers: if response.headers["Access-Control-Allow-Origin"] == "https://evilsite.com": print("[!] CORS açığı tespit edildi!") return True print("[*] CORS açığı bulunamadı.") return False def iframe_test(): """iFrame Manipülasyonu Testi""" print("[*] iFrame manipülasyonu testi: iFrame ve postMessage kontrol ediliyor...") response = requests.get(URL) if '