mirror of
https://github.com/nickvourd/Windows-Local-Privilege-Escalation-Cookbook
synced 2026-06-08 16:23:53 +00:00
31 lines
542 B
HTML
31 lines
542 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>My App</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: orange;
|
|
}
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button onclick="redirectToCmdAsp()">Try my app</button>
|
|
|
|
<script>
|
|
function redirectToCmdAsp() {
|
|
window.location.href = 'cmdasp.aspx';
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|