AkamaiGHost
tcp/80
openresty
tcp/443
Open service 104.82.102.136:80 · remote.nseindia.com
2026-01-22 05:17
HTTP/1.1 301 Moved Permanently Server: AkamaiGHost Content-Length: 0 Location: https://remote.nseindia.com/ Date: Thu, 22 Jan 2026 05:18:04 GMT Connection: close
Open service 104.82.102.136:443 · remote.nseindia.com
2026-01-22 05:17
HTTP/1.1 200 OK
Server: openresty
Content-Type: text/html
Content-Length: 4231
Date: Thu, 22 Jan 2026 05:17:43 GMT
Connection: close
Strict-Transport-Security: max-age=31536000 ; includeSubDomains ; preload
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="support/main.css">
<script src="login.js"> </script>
<script src="heart_beat.js"></script>
<script>
function callLogin() {
login(
document.getElementById("in_username").value,
document.getElementById("in_password").value,
function (data) {
if (data == "Wrong-Credentials") {
document.getElementsByClassName("error_details")[0].innerHTML = "Invalid Login. Please try again.";
} else {
window.location = data;
}
}
);
}
function callFYP() {
let username = document.getElementById("in_fyp_username").value.trim();
let registered_email_id = document.getElementById("in_fyp_email").value.trim();
var email_pattern = /^\w+@[a-zA-Z_]+?\.[a-zA-Z]{2,20}$/;
if (username.length == 0 || registered_email_id.length == 0 || !email_pattern.test(registered_email_id)) {
document.getElementById("fyp_error_details").style.display = "block";
} else {
call_forgot_password(username, registered_email_id);
}
}
</script>
</head>
<body>
<div id="logo_container">
<img id="logo" src="land_image.jpg">
</div>
<div class="right_pane">
<button id="login_button" onclick="document.getElementById('id01').style.display='block'"
style="width:auto;">Login</button>
<div class="content_container">
<div id="content"></div>
</div>
</div>
<div id="id01" class="modal">
<div class="modal-content animate">
<div class="imgcontainer">
<span onclick="document.getElementById('id01').style.display='none'" class="close"
title="Close Modal">×</span>
<img src="support/img_avatar2.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label><b>Username</b></label>
<input id="in_username" type="text" placeholder="Enter Username" required>
<label><b>Password</b></label>
<input id="in_password" type="password" placeholder="Enter Password" required>
<button onclick="callLogin()">Login</button>
<div class="error_details"></div>
<input type="checkbox" checked="checked"> Remember me
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'"
class="cancelbtn">Cancel</button>
<span
onclick="document.getElementById('id01').style.display='none';document.getElementById('id02').style.display='block'"
class="psw">Forgot password?</span>
</div>
</div>
</div>
<div id="id02" class="modal">
<div class="modal-content animate">
<div class="container">
<label>
<p style="display:inline; color:red">*</p><b>Username</b>
</label>
<input id="in_fyp_username" type="text" placeholder="Username" required>
<label>
<p style="display:inline; color:red">*</p><b>Email ID</b>
</label>
<input id="in_fyp_email" type="text" placeholder="Email ID">
<div id="fyp_error_details" style="display:none; background: rgba(255,0,0,0.5); text-align: center;">
Invalid
details</div>
<button onclick="callFYP()">Next</button>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id02').style.display='none'"
class="c