Domain Fronting
Host: custom CDN, DEST: frontable domain's IP ; shell connection looks like calling to custom CDN with frontable domain's IP but it is point to custom origin hostname ip by the custom CDN
setup custom CDN endpoint & custom origin hostname that listener host hosting the web ser

sudo python3 -m http.server 80from http.server import HTTPServer, SimpleHTTPRequestHandler
import ssl
import socketserver
httpd = socketserver.TCPServer(('138.68.99.177', 443), SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket(httpd.socket,
keyfile="key.pem",
certfile='cert.pem', server_side=True)
httpd.serve_forever()
check if it is fetching custom server content from the host that host the custom origin hostname web set in 1. (same as 1. end results)

configure listener on VM that hosting the 1. custom origin hostname web

Last updated