44.201.35.22
Copy IP
Open Ports
1
Unique Services
1
CVEs
0
TLS Services
0
| Port | Protocol | Service | Product | Version | OS | Scan Date |
|---|---|---|---|---|---|---|
| 80 | http | nginx | 1.24.0 | Linux | Feb. 24, 2026 |
Port 80
http
Copy
HTTP/1.1 200 OK
Server: nginx/1.24.0 (Ubuntu)
Date: Tue, 24 Feb 2026 02:45:21 GMT
Content-Type: text/html; charset=utf-8
Content-Length: 3313
Connection: close
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Cloud Platform</title>
<link rel="stylesheet" href="/static/networkingcss.css">
<style>
body{
background-image: url('/static/earth.jpg');
display: flex;
justify-content: center;
align-items: center;
margin: 0;
height: 100vh;
font-family: sans-serif;
}
.glass-card{
text-align: center;
background-color: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(15px);
border-radius: 10px;
border: 2px solid rgba(255, 255, 255, 0.05);
padding: 40px;
width: 400px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}
.input-group{
margin-bottom: 20px;
text-align: left;
}
.glass-card h2{
margin-bottom: 24px;
letter-spacing: 2px;
}
.input-group label{
font-size: 0.8rem;
margin-bottom: 8px;
opacity: 0.8;
}
button{
border-radius: 8px;
padding:12px;
background: #007bff;
border:none;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
width:100%;
}
input{
width:100%;
padding:12px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 8px;
border:1px solid rgba(255, 255, 255, 0.1);
color:white;
outline:none;
}
</style>
</head>
<body>
<div class="glass-card">
<h2>LOGIN</h2>
<form action="/login" method="POST">
<div class="input-group">
<label>EMAIL:</label>
<input type="text" name="email" required>
</div>
<div class="input-group">
<label>PASSWORD:</label>
<input type="password" name="password" id="passwordInput" required>
<div style="display: flex; align-items: center; margin-top: 10px; gap: 10px; font-size: 0.8rem; opacity: 0.8;">
<input type="checkbox" id="toggleCheck" onclick="togglePassword()" style="width: 15px; height: 15px; cursor: pointer;"><label for="toggleCheck" style="margin: 0; cursor: pointer;">Show Password</label>
</div>
</div>
<script>
function togglePassword() {
var x = document.getElementById("passwordInput");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}
</script>
<button type="submit">ENTER PLATFORM</button>
</form>
<p style="margin-top: 8px; font-size: 0.8rem;">don't have an account? <a href="/signup-page" style="color: #007bff;">sign up</a> </p>
</div>
</body>
</html>
No vulnerabilities found.
No TLS/SSL services found.