5222 /
tcp
-264380881 | 2025-03-23T23:45:58.605471
<?xml version='1.0' encoding='UTF-8'?><stream:stream xmlns:stream="http://etherx.jabber.org/streams" xmlns="jabber:client" from="weaver" id="65itdmgpt4" xml:lang="en-US" version="1.0"><stream:features><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>SCRAM-SHA-1</mechanism><mechanism>CRAM-MD5</mechanism><mechanism>DIGEST-MD5</mechanism></mechanisms><compression xmlns="http://jabber.org/features/compress"><method>zlib</method></compression><ver xmlns="urn:xmpp:features:rosterver"/><auth xmlns="http://jabber.org/features/iq-auth"/><register xmlns="http://jabber.org/features/iq-register"/></stream:features>
5353 /
udp
1353900194 | 2025-03-22T22:31:57.746393
mDNS:
authorities:
NS:
b.root-servers.net
c.root-servers.net
d.root-servers.net
e.root-servers.net
i.root-servers.net
g.root-servers.net
a.root-servers.net
f.root-servers.net
j.root-servers.net
k.root-servers.net
l.root-servers.net
m.root-servers.net
h.root-servers.net
1400743347 | 2025-04-03T14:28:00.962790
HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Access-Control-Allow-Headers: Content-Type, api_key, Authorization
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: OPTIONS,GET,POST
Date: Thu, 03 Apr 2025 14:27:58 GMT
Content-Length: 175986
Vulnerabilities
-396318182 | 2025-04-04T14:02:41.909341
HTTP/1.1 200 OK
Server: nginx
Date: Fri, 04 Apr 2025 13:50:39 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
Set-Cookie: PHPSESSID=7ms7rd7r72khjbkv4blt4gh0h4; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Pragma: no-cache
Cache-control: private
X-Powered-By: dekeego.com
1410487790 | 2025-04-11T14:16:11.963565
HTTP/1.1 200 OK
Cache-Control: private, max-age=0
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Access-Control-Allow-Headers: Content-Type, api_key, Authorization
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: OPTIONS,GET,POST
Date: Fri, 11 Apr 2025 14:15:55 GMT
Content-Length: 7190
Vulnerabilities
517821182 | 2025-04-04T09:24:58.076417
HTTP/1.1 200 OK
Date: Fri, 04 Apr 2025 09:25:07 GMT
X-Frame-Options: samedomain
X-XSS-Protection: 1;mode=block
X-Content-Type-Options: nosiff
Strict-Transport-Security: max-age=31536000; includeSubDomains
Content-Security-Policy: default-src 'self' 'unsafe-inline';script-src 'self' 'unsafe-inline';style-src 'self' 'unsafe-inline';img-src 'self' 'unsafe-inline';media-src 'self' 'unsafe-inline';font-src 'self' data: 'unsafe-inline'
Referrer-Policy: no-referrer-when-downgrade
X-Permitted-Cross-Domain-Policies: *
X-Download-Options: noopen
Last-Modified: Fri, 10 Jun 2022 09:18:04 GMT
Content-Type: text/html
Accept-Ranges: bytes
Content-Length: 162
-1919757223 | 2025-04-09T01:25:08.600445
HTTP/1.1 200 OK
Server: WVS
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1
X-UA-Compatible: IE=8
Cache-Control: private,max-age=86400000
ETag: "HCPGHF5c4V7"
Last-Modified: Thu, 06 May 2021 01:48:18 GMT
Set-Cookie: ecology_JSessionid=aaafyvLmcErg9cCNgYoyz; path=/
Content-Type: text/html; charset=utf-8
Content-Length: 3235
Date: Wed, 09 Apr 2025 01:25:04 GMT
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="/js/jquery/jquery_wev8.js"></script>
<script type="text/javascript" src="/js/jquery/plugins/client/jquery.client_wev8.js"></script>
<script type="text/javascript" src="/system/index_wev8.js"></script>
</head>
<script language="javascript1.1">
window.onload=function()
{
var now = new Date().getTime();
var redirectUrl = "/wui/index.html#/?logintype=1&time="+ now;
window.location.href=redirectUrl
}
function checkPopupBlocked(poppedWindow) {
setTimeout(function(){
var flag= false
if(jQuery.client.browser=="Chrome"){
flag = doCheckPopupBlocked(poppedWindow);
}else{
if(poppedWindow!=null){
flag = false;
}else{
flag = true;
}
}
if(flag){
var now = new Date().getTime();
var redirectUrl = "/wui/index.html#/?logintype=1&time="+now ;
var helpurl=getHelpUrl();
if(helpurl!=""){
var yn = confirm(msg);
if(!yn) location.href = redirectUrl;
if(yn) location.href = helpurl;
}else{
location.href = redirectUrl;
}
}else{
window.open('','_self');
window.close();
}
},500);
}
function doCheckPopupBlocked(poppedWindow) {
var result = false;
//alert(poppedWindow.closed)
try {
if (typeof poppedWindow == 'undefined') {
// Safari with popup blocker... leaves the popup window handle undefined
result = true;
//alert(1)
}
else if (poppedWindow && poppedWindow.closed) {
// This happens if the user opens and closes the client window...
// Confusing because the handle is still available, but it's in a "closed" state.
// We're not saying that the window is not being blocked, we're just saying
// that the window has been closed before the test could be run.
result = false;
//alert(2)
}
else if (poppedWindow && poppedWindow.outerWidth == 0) {
// This is usually Chrome's doing. The outerWidth (and most other size/location info)
// will be left at 0, EVEN THOUGH the contents of the popup will exist (including the
// test function we check for next). The outerWidth starts as 0, so a sufficient de
703707298 | 2025-03-26T22:37:34.721596
HTTP/1.1 200 OK
Content-Type: text/html
Last-Modified: Thu, 30 Mar 2023 08:00:28 GMT
Accept-Ranges: bytes
ETag: "5080cb1dd62d91:0"
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
Date: Wed, 26 Mar 2025 22:37:34 GMT
Content-Length: 703
1164641253 | 2025-04-11T07:04:52.319056
HTTP/1.1 400 Bad Request
Content-Type: text/html; charset=us-ascii
Server: Microsoft-HTTPAPI/2.0
Date: Fri, 11 Apr 2025 07:04:50 GMT
Connection: close
Content-Length: 334
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Bad Request - Invalid Hostname</h2>
<hr><p>HTTP Error 400. The request hostname is invalid.</p>
</BODY></HTML>
728451787 | 2025-03-31T15:42:37.175341
HTTP/1.1 200 OK
Date: Mon, 31 Mar 2025 15:42:27 GMT
Set-Cookie: JSESSIONID=node01sw2u18wf4uypu8wd3r25o9lq114751.node0; Path=/; HttpOnly
Expires: Thu, 01 Jan 1970 00:00:00 GMT
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1
X-Frame-Options: samedomain
X-XSS-Protection: 1;mode=block
X-Content-Type-Options: nosiff
Strict-Transport-Security: max-age=31536000; includeSubDomains
Content-Security-Policy: default-src 'self' 'unsafe-inline';script-src 'self' 'unsafe-inline';style-src 'self' 'unsafe-inline';img-src 'self' 'unsafe-inline';media-src 'self' 'unsafe-inline';font-src 'self' data: 'unsafe-inline'
Referrer-Policy: no-referrer-when-downgrade
X-Permitted-Cross-Domain-Policies: *
X-Download-Options: noopen
Content-Type: text/html;charset=utf-8
Set-Cookie: csrf=BF1VOdk4rEqSaKT; Path=/;HttpOnly; HttpOnly
Content-Language: zh-CN
Content-Length: 7892
1711640856 | 2025-04-06T18:29:14.637755
HTTP/1.1 400 Bad Request
Content-Type: text/html; charset=us-ascii
Server: Microsoft-HTTPAPI/2.0
Date: Sun, 06 Apr 2025 18:29:12 GMT
Connection: close
Content-Length: 326
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Bad Request - Invalid Verb</h2>
<hr><p>HTTP Error 400. The request verb is invalid.</p>
</BODY></HTML>