1.116.157.206
Copy IP
Open Ports
6
Unique Services
2
CVEs
0
TLS Services
0
| Port | Protocol | Service | Product | Version | OS | Scan Date |
|---|---|---|---|---|---|---|
| 80 | http | nginx | 1.14.0 | Linux | Feb. 23, 2026 | |
| 3000 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 4, 2025 |
| 3001 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 4, 2025 |
| 3002 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 4, 2025 |
| 3201 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 4, 2025 |
| 3202 | tcp | - | - | - | - | Dec. 4, 2025 |
| 3000 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 2, 2025 |
| 3001 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 2, 2025 |
| 3002 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 2, 2025 |
| 3201 | tcp | ventrilo | Ventrilo | 2.1.2+ | - | Dec. 2, 2025 |
| 3202 | tcp | - | - | - | - | Dec. 2, 2025 |
Port 80
http
Copy
HTTP/1.1 200 OK
Server: nginx/1.14.0 (Ubuntu)
Date: Mon, 23 Feb 2026 11:14:57 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Fri, 07 Oct 2022 08:19:25 GMT
Connection: close
ETag: "633fe10d-264"
Accept-Ranges: bytes
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
Port 3000
ventrilo
Copy
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Connection: Close
Content-Type: text/html; charset=utf-8
Content-Length: 4060
ETag: W/"fdc-f1Ok+39qOP7Ix3uRuuaAwqDd0yc"
Date: Thu, 04 Dec 2025 22:46:27 GMT
<!DOCTYPE html>
<html lang="zh"><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Remote Management Center</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<h1>Remote Center</h1>
<form class="form" id="from">
<input name="username" type="text" placeholder="Username">
<input name="password" type="password" placeholder="Password">
<button type="submit" id="login-button">Login</button>
<div id="registerDiv" style="margin: 0px;top: 0px;">
<a name="regIndex" id="register" href="#" style="text-decoration:none;" style="cursor:pointer"> To Register >></a>
</div>
</form>
</div>
<ul class="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<script type="text/javascript" src="/lib/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="/lib/jquery.cookie.js"></script>
<script type="text/javascript">
jQuery(function($) {
$('#register').click(function(){
$.ajax({
url:'doRegisterHtml',
complete: function (data, str) {
setInterval(function () {
window.location = "/register";
}, 1000)
}
})
})
var dn = $("input[name=domain]");
var flag = 0;
if (dn && dn.length) {
flag = 1;
d = $("input[name=domain]").val();
$(".container").css("padding-top", "50px");
} else {
$(".container").css("padding-top", "80px");
}
// $.cookie('the_cookie', 'the_value', { expires: 7 });
if(flag){
var rm_domain = $.cookie('rm_domain');
if (rm_domain) {
$("input[name=domain]").val(rm_domain);
}
}
var rm_user = $.cookie('rm_user');
var rm_pwd = $.cookie('rm_pwd');
if (rm_user) {
$("input[name=username]").val(rm_user);
}
if (rm_pwd) {
$("input[name=password]").val(rm_pwd);
}
$('#login-button').click(function (event) {
event.preventDefault();
var u = $("input[name=username]").val();
var p = $("input[name=password]").val();
var d = "";
if (flag) {
d = $("input[name=domain]").val();
}
var h = $('.container h1');
var wp = "<font color='red' size='3'>";
var ws = "</font>";
if (flag && !dn.val()) {
h.html(wp + "Domain can not be empty" + ws);
return;
}
if (u == "") {
h.html(wp + "Username can not be empty" + ws);
return;
}
if (p == "") {
h.html(wp + "Password can not be empty" + ws);
return;
}
var es = "Username or Password Error";
if (flag) {
es = "Domain or Username or Password Error";
}
$.ajax({
url: "/doLogin",
data: {username: u, password: p, domain: d},
complete: function (data, str) {
if (data.responseText) {
$.cookie('rm_user', $("input[name=username]").val(), {expires: 7});
$.cookie('rm_pwd', $("input[name=password]").val(), {expires: 7});
if(flag){
$.cookie('rm_domain', $("input[name=domain]").val(), {expires: 7});
}
var obj = eval('(' + data.responseText + ')');
if (obj.success) {
$('.wrapper').addClass('form-success');
h.html("Turning to the home page...");
setInterval(function () {
window.location = "/index";
}, 1000)
Port 3001
ventrilo
Copy
HTTP/1.1 400 Content-Type: text/html;charset=utf-8 Content-Length: 67 <font size='18'color='red'>SESSION TIMEOUT</font><br>Plase do login
Port 3002
ventrilo
Copy
HTTP/1.1 400 Content-Type: text/html;charset=utf-8 Content-Length: 67 <font size='18'color='red'>SESSION TIMEOUT</font><br>Plase do login
Port 3201
ventrilo
Copy
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Connection: Close
Content-Type: text/html; charset=utf-8
Content-Length: 1388
ETag: W/"56c-8EtuQQbF9ofysYyUXhfgreKxkas"
Date: Thu, 04 Dec 2025 22:46:28 GMT
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>这个.. 页面没有找到!!</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
background: #efefef;
font-family: Georgia, Times, Verdana, Geneva, Arial, Helvetica, sans-serif;
}
div#mother {
margin: 0 auto;
width: 943px;
height: 572px;
position: relative;
}
div#errorBox {
background: url(/img/404_bg.png) no-repeat top left;
width: 943px;
height: 572px;
margin: auto;
}
div#errorText {
color: #39351e;
padding: 146px 0 0 446px
}
div#errorText p {
width: 303px;
font-size: 14px;
line-height: 26px;
}
div.link { /*background:#f90;*/
height: 50px;
width: 145px;
float: left;
}
div#home {
margin: 20px 0 0 444px;
}
div#contact {
margin: 20px 0 0 25px;
}
h1 {
font-size: 40px;
margin-bottom: 35px;
}
</style>
</head>
<body>
<div id="mother">
<div id="errorBox">
<div id="errorText">
<h1>Sorry..页面没有找到!</h1>
<p>
似乎你所寻找的网页已移动或丢失了。
<p>或者也许你只是键入错误了一些东西。</p>
请不要担心,这没事。如果该资源对你很重要,请与管理员联系。
</p>
<p>
火星不太安全,我可以免费送你回地球
</p>
</div>
</div>
</div>
</body>
</html>
Port 3000
ventrilo
Copy
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Connection: Close
Content-Type: text/html; charset=utf-8
Content-Length: 4060
ETag: W/"fdc-f1Ok+39qOP7Ix3uRuuaAwqDd0yc"
Date: Tue, 02 Dec 2025 23:23:49 GMT
<!DOCTYPE html>
<html lang="zh"><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Remote Management Center</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<h1>Remote Center</h1>
<form class="form" id="from">
<input name="username" type="text" placeholder="Username">
<input name="password" type="password" placeholder="Password">
<button type="submit" id="login-button">Login</button>
<div id="registerDiv" style="margin: 0px;top: 0px;">
<a name="regIndex" id="register" href="#" style="text-decoration:none;" style="cursor:pointer"> To Register >></a>
</div>
</form>
</div>
<ul class="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<script type="text/javascript" src="/lib/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="/lib/jquery.cookie.js"></script>
<script type="text/javascript">
jQuery(function($) {
$('#register').click(function(){
$.ajax({
url:'doRegisterHtml',
complete: function (data, str) {
setInterval(function () {
window.location = "/register";
}, 1000)
}
})
})
var dn = $("input[name=domain]");
var flag = 0;
if (dn && dn.length) {
flag = 1;
d = $("input[name=domain]").val();
$(".container").css("padding-top", "50px");
} else {
$(".container").css("padding-top", "80px");
}
// $.cookie('the_cookie', 'the_value', { expires: 7 });
if(flag){
var rm_domain = $.cookie('rm_domain');
if (rm_domain) {
$("input[name=domain]").val(rm_domain);
}
}
var rm_user = $.cookie('rm_user');
var rm_pwd = $.cookie('rm_pwd');
if (rm_user) {
$("input[name=username]").val(rm_user);
}
if (rm_pwd) {
$("input[name=password]").val(rm_pwd);
}
$('#login-button').click(function (event) {
event.preventDefault();
var u = $("input[name=username]").val();
var p = $("input[name=password]").val();
var d = "";
if (flag) {
d = $("input[name=domain]").val();
}
var h = $('.container h1');
var wp = "<font color='red' size='3'>";
var ws = "</font>";
if (flag && !dn.val()) {
h.html(wp + "Domain can not be empty" + ws);
return;
}
if (u == "") {
h.html(wp + "Username can not be empty" + ws);
return;
}
if (p == "") {
h.html(wp + "Password can not be empty" + ws);
return;
}
var es = "Username or Password Error";
if (flag) {
es = "Domain or Username or Password Error";
}
$.ajax({
url: "/doLogin",
data: {username: u, password: p, domain: d},
complete: function (data, str) {
if (data.responseText) {
$.cookie('rm_user', $("input[name=username]").val(), {expires: 7});
$.cookie('rm_pwd', $("input[name=password]").val(), {expires: 7});
if(flag){
$.cookie('rm_domain', $("input[name=domain]").val(), {expires: 7});
}
var obj = eval('(' + data.responseText + ')');
if (obj.success) {
$('.wrapper').addClass('form-success');
h.html("Turning to the home page...");
setInterval(function () {
window.location = "/index";
}, 1000)
Port 3001
ventrilo
Copy
HTTP/1.1 400 Content-Type: text/html;charset=utf-8 Content-Length: 67 <font size='18'color='red'>SESSION TIMEOUT</font><br>Plase do login
Port 3002
ventrilo
Copy
HTTP/1.1 400 Content-Type: text/html;charset=utf-8 Content-Length: 67 <font size='18'color='red'>SESSION TIMEOUT</font><br>Plase do login
Port 3201
ventrilo
Copy
HTTP/1.1 200 OK
X-Powered-By: Express
Access-Control-Allow-Origin: *
Connection: Close
Content-Type: text/html; charset=utf-8
Content-Length: 1388
ETag: W/"56c-8EtuQQbF9ofysYyUXhfgreKxkas"
Date: Tue, 02 Dec 2025 23:23:42 GMT
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>这个.. 页面没有找到!!</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
background: #efefef;
font-family: Georgia, Times, Verdana, Geneva, Arial, Helvetica, sans-serif;
}
div#mother {
margin: 0 auto;
width: 943px;
height: 572px;
position: relative;
}
div#errorBox {
background: url(/img/404_bg.png) no-repeat top left;
width: 943px;
height: 572px;
margin: auto;
}
div#errorText {
color: #39351e;
padding: 146px 0 0 446px
}
div#errorText p {
width: 303px;
font-size: 14px;
line-height: 26px;
}
div.link { /*background:#f90;*/
height: 50px;
width: 145px;
float: left;
}
div#home {
margin: 20px 0 0 444px;
}
div#contact {
margin: 20px 0 0 25px;
}
h1 {
font-size: 40px;
margin-bottom: 35px;
}
</style>
</head>
<body>
<div id="mother">
<div id="errorBox">
<div id="errorText">
<h1>Sorry..页面没有找到!</h1>
<p>
似乎你所寻找的网页已移动或丢失了。
<p>或者也许你只是键入错误了一些东西。</p>
请不要担心,这没事。如果该资源对你很重要,请与管理员联系。
</p>
<p>
火星不太安全,我可以免费送你回地球
</p>
</div>
</div>
</div>
</body>
</html>
No vulnerabilities found.
No TLS/SSL services found.