Compare commits
11
Commits
7817122265
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c3a192c79 | ||
|
|
c8f17a17e6 | ||
|
|
90d6569cfc | ||
|
|
c0f4712ef7 | ||
|
|
5038553fbc | ||
|
|
131110abe9 | ||
|
|
31b1050c42 | ||
|
|
2c64f1b079 | ||
|
|
a3d1c07989 | ||
|
|
750b10e01c | ||
|
|
60c1719b6d |
Executable
+248
@@ -0,0 +1,248 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Build CVE triage sheets from AutoRecon artifacts."""
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import re
|
||||
from collections import defaultdict
|
||||
from datetime import datetime, timezone
|
||||
from pathlib import Path
|
||||
|
||||
RESULTS_DIR = Path("results")
|
||||
CVE_RE = re.compile(r"CVE-\d{4}-\d{4,7}")
|
||||
OPEN_PORT_RE = re.compile(r"^(\d+/(?:tcp|udp))\s+open\s+(.*)$")
|
||||
SCRIPT_URL_RE = re.compile(r"\|\s+(/[^: ]*):\s+(.*CVE-\d{4}-\d{4,7}.*)$")
|
||||
|
||||
PRECONDITIONS = {
|
||||
"CVE-2011-3192": "Target must run Apache HTTPD with byte-range handling vulnerable to the Apache Range header DoS condition.",
|
||||
"CVE-2009-3733": "Target must expose VMware SDK endpoint (/sdk) and allow traversal into host files.",
|
||||
"CVE-2011-0966": "Target must be Cisco Unified Operations Manager 8.0/8.5 with vulnerable auditLog.do traversal handling.",
|
||||
"CVE-2018-10822": "Target must be affected D-Link router firmware exposing /uir/ traversal path.",
|
||||
"CVE-2018-10824": "Target must be affected D-Link router firmware exposing plaintext credential path under /tmp/csman.",
|
||||
"CVE-2017-9798": "Target must run Apache HTTP Server with mod_http2 and be susceptible to OptionBleed conditions.",
|
||||
"CVE-2005-3299": "Target must run Apache 2.0.x with mod_imap module enabled and vulnerable to cross-site scripting behavior.",
|
||||
"CVE-2003-1418": "Target must expose Apache mod_include with vulnerable SSI execution behavior.",
|
||||
}
|
||||
|
||||
REQUIRED_REPRO_STEP = (
|
||||
"Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, "
|
||||
"or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient."
|
||||
)
|
||||
|
||||
|
||||
def load_text(path: Path) -> str:
|
||||
try:
|
||||
return path.read_text(encoding="utf-8", errors="ignore")
|
||||
except FileNotFoundError:
|
||||
return ""
|
||||
|
||||
|
||||
def parse_service_evidence(nmap_paths: list[Path]) -> dict[str, list[str]]:
|
||||
evidence: dict[str, list[str]] = defaultdict(list)
|
||||
for path in nmap_paths:
|
||||
for line in load_text(path).splitlines():
|
||||
m = OPEN_PORT_RE.match(line.strip())
|
||||
if m:
|
||||
endpoint = m.group(1)
|
||||
value = m.group(2).strip()
|
||||
if value and value not in evidence[endpoint]:
|
||||
evidence[endpoint].append(value)
|
||||
return dict(evidence)
|
||||
|
||||
|
||||
def parse_nmap_hits(nmap_paths: list[Path]) -> dict[str, list[dict[str, str]]]:
|
||||
hits: dict[str, list[dict[str, str]]] = defaultdict(list)
|
||||
for path in nmap_paths:
|
||||
lines = load_text(path).splitlines()
|
||||
current_endpoint = "unknown"
|
||||
for idx, line in enumerate(lines):
|
||||
stripped = line.strip()
|
||||
m_open = OPEN_PORT_RE.match(stripped)
|
||||
if m_open:
|
||||
current_endpoint = m_open.group(1)
|
||||
for cve in CVE_RE.findall(line):
|
||||
endpoint = current_endpoint
|
||||
detail = stripped
|
||||
m_url = SCRIPT_URL_RE.search(line)
|
||||
if m_url:
|
||||
endpoint = m_url.group(1)
|
||||
detail = m_url.group(2)
|
||||
# include short context for review
|
||||
ctx = "\n".join(lines[max(0, idx - 1): min(len(lines), idx + 2)])
|
||||
hits[cve].append(
|
||||
{
|
||||
"source_file": str(path),
|
||||
"endpoint": endpoint,
|
||||
"evidence": detail,
|
||||
"context": ctx,
|
||||
}
|
||||
)
|
||||
return dict(hits)
|
||||
|
||||
|
||||
def parse_pattern_hits(pattern_path: Path) -> dict[str, int]:
|
||||
counts: dict[str, int] = defaultdict(int)
|
||||
for line in load_text(pattern_path).splitlines():
|
||||
for cve in CVE_RE.findall(line):
|
||||
counts[cve] += 1
|
||||
return dict(counts)
|
||||
|
||||
|
||||
def infer_status(cve: str, evidence_blob: str) -> tuple[str, str]:
|
||||
blob = evidence_blob.lower()
|
||||
if "401 unauthorized" in blob:
|
||||
return (
|
||||
"not-applicable",
|
||||
"Only unauthorized responses were observed; vulnerable behavior was not reproduced and signature is likely a false positive.",
|
||||
)
|
||||
if cve in {"CVE-2017-9798", "CVE-2003-1418"}:
|
||||
return (
|
||||
"needs-manual-test",
|
||||
"Signature-based identification only; exploitability depends on module/configuration and requires targeted validation.",
|
||||
)
|
||||
return (
|
||||
"needs-manual-test",
|
||||
"Script/banner evidence exists, but no direct proof of exploit impact was captured in scan output.",
|
||||
)
|
||||
|
||||
|
||||
def host_dirs() -> list[Path]:
|
||||
return sorted([p for p in RESULTS_DIR.iterdir() if p.is_dir() and (p / "scans").exists()])
|
||||
|
||||
|
||||
def main() -> None:
|
||||
generated = datetime.now(timezone.utc).isoformat()
|
||||
global_suppressions = []
|
||||
|
||||
for host_dir in host_dirs():
|
||||
scans_dir = host_dir / "scans"
|
||||
pattern_path = scans_dir / "_patterns.log"
|
||||
nmap_paths = sorted(scans_dir.glob("**/*nmap*.txt"))
|
||||
if not pattern_path.exists() and not nmap_paths:
|
||||
continue
|
||||
|
||||
pattern_counts = parse_pattern_hits(pattern_path)
|
||||
nmap_hits = parse_nmap_hits(nmap_paths)
|
||||
cves = sorted(set(pattern_counts) | set(nmap_hits))
|
||||
if not cves:
|
||||
continue
|
||||
|
||||
service_evidence = parse_service_evidence(nmap_paths)
|
||||
host_entries = []
|
||||
|
||||
for cve in cves:
|
||||
hit_entries = nmap_hits.get(cve, [])
|
||||
endpoints = sorted({h["endpoint"] for h in hit_entries if h["endpoint"]}) or ["unknown"]
|
||||
endpoint = endpoints[0]
|
||||
|
||||
product_versions = []
|
||||
for ep, products in service_evidence.items():
|
||||
if ep in endpoint or endpoint in ep or endpoint == "unknown":
|
||||
product_versions.extend(products)
|
||||
product_versions = sorted(set(product_versions))
|
||||
if not product_versions:
|
||||
product_versions = ["No explicit product/version fingerprint in nmap service line."]
|
||||
|
||||
evidence_blob = "\n".join([h["evidence"] for h in hit_entries])
|
||||
status, rationale = infer_status(cve, evidence_blob)
|
||||
reproducibility = (
|
||||
"not-reproduced" if status != "confirmed" else "reproduced"
|
||||
)
|
||||
|
||||
sources = []
|
||||
if pattern_counts.get(cve, 0):
|
||||
sources.append({"file": str(pattern_path), "match_count": pattern_counts[cve]})
|
||||
for h in hit_entries:
|
||||
sources.append(
|
||||
{
|
||||
"file": h["source_file"],
|
||||
"endpoint": h["endpoint"],
|
||||
"evidence": h["evidence"],
|
||||
}
|
||||
)
|
||||
|
||||
entry = {
|
||||
"host": host_dir.name,
|
||||
"cve": cve,
|
||||
"affected_host": host_dir.name,
|
||||
"endpoint": endpoint,
|
||||
"product_version_evidence": product_versions,
|
||||
"exploit_precondition": PRECONDITIONS.get(
|
||||
cve,
|
||||
"Validate affected product/version and exploit path prerequisites before filing.",
|
||||
),
|
||||
"reproducibility": reproducibility,
|
||||
"disposition": status,
|
||||
"disposition_rationale": rationale,
|
||||
"required_reproduction_step_before_ticket": REQUIRED_REPRO_STEP,
|
||||
"evidence_sources": sources,
|
||||
}
|
||||
host_entries.append(entry)
|
||||
|
||||
if status == "not-applicable":
|
||||
global_suppressions.append(
|
||||
{
|
||||
"host": host_dir.name,
|
||||
"signature": cve,
|
||||
"reason": rationale,
|
||||
"suppression_scope": "host-specific",
|
||||
"source": "cve-triage",
|
||||
"updated_at": generated,
|
||||
}
|
||||
)
|
||||
|
||||
host_entries.sort(key=lambda item: item["cve"])
|
||||
|
||||
md_lines = [
|
||||
f"# CVE triage sheet - {host_dir.name}",
|
||||
"",
|
||||
f"Generated (UTC): {generated}",
|
||||
"",
|
||||
"| CVE | Affected host | Endpoint | Product/version evidence | Exploit precondition | Reproducibility | Disposition |",
|
||||
"|---|---|---|---|---|---|---|",
|
||||
]
|
||||
|
||||
for item in host_entries:
|
||||
evidence_short = "; ".join(item["product_version_evidence"][:2])
|
||||
md_lines.append(
|
||||
f"| {item['cve']} | {item['affected_host']} | `{item['endpoint']}` | {evidence_short} | {item['exploit_precondition']} | {item['reproducibility']} | **{item['disposition']}** |"
|
||||
)
|
||||
md_lines.append(
|
||||
f"| | | | | | | Required reproduction gate: {item['required_reproduction_step_before_ticket']} |"
|
||||
)
|
||||
|
||||
(scans_dir / "_cve_triage.md").write_text("\n".join(md_lines) + "\n", encoding="utf-8")
|
||||
(scans_dir / "_cve_disposition.json").write_text(
|
||||
json.dumps(
|
||||
{
|
||||
"host": host_dir.name,
|
||||
"generated_at": generated,
|
||||
"required_reproduction_step_before_ticket": REQUIRED_REPRO_STEP,
|
||||
"findings": host_entries,
|
||||
},
|
||||
indent=2,
|
||||
)
|
||||
+ "\n",
|
||||
encoding="utf-8",
|
||||
)
|
||||
|
||||
if global_suppressions:
|
||||
(RESULTS_DIR / "_false_positive_suppressions.json").write_text(
|
||||
json.dumps(
|
||||
{
|
||||
"generated_at": generated,
|
||||
"description": "Host-level CVE suppressions derived from triage dispositions.",
|
||||
"suppressions": sorted(
|
||||
global_suppressions,
|
||||
key=lambda item: (item["host"], item["signature"]),
|
||||
),
|
||||
},
|
||||
indent=2,
|
||||
)
|
||||
+ "\n",
|
||||
encoding="utf-8",
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
+163237
-34779
File diff suppressed because one or more lines are too long
@@ -0,0 +1,102 @@
|
||||
# HTTPS Redirect + Header Hardening Report
|
||||
|
||||
Generated from existing AutoRecon artifacts under `results/*/scans` on 2026-04-07.
|
||||
|
||||
## 1) HTTP -> HTTPS redirect on every vhost
|
||||
|
||||
Recommended reverse-proxy baseline (Nginx):
|
||||
|
||||
```nginx
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name _;
|
||||
return 308 https://$host$request_uri;
|
||||
}
|
||||
```
|
||||
|
||||
Use `301` if legacy clients are incompatible with `308`, but do not serve app content on `:80`.
|
||||
|
||||
## 2) HSTS on all HTTPS responses
|
||||
|
||||
```nginx
|
||||
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
||||
# add ; preload only after every subdomain is permanently HTTPS
|
||||
```
|
||||
|
||||
## 3) Baseline security headers
|
||||
|
||||
```nginx
|
||||
add_header X-Content-Type-Options "nosniff" always;
|
||||
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
|
||||
add_header Content-Security-Policy "default-src 'self'; base-uri 'self'; frame-ancestors 'none'; object-src 'none'" always;
|
||||
```
|
||||
|
||||
## 4) Verification matrix (`curl` + `nmap` artifacts)
|
||||
|
||||
| Host | HTTP :80 status | HTTPS :443 status | 80->443 redirect (301/308) | HSTS | X-CTO | Referrer-Policy | CSP |
|
||||
|---|---|---|---|---|---|---|---|
|
||||
| auth.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | yes | yes |
|
||||
| edge.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 404` | PASS | no | yes | no | no |
|
||||
| familytree.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | no | no |
|
||||
| gitea.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | no | no |
|
||||
| gotify.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | no | no |
|
||||
| grafana.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | no | no |
|
||||
| influxdb.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | yes | no |
|
||||
| kuma.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | no | no |
|
||||
| monitor-kuma.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | no | no |
|
||||
| nextcloud.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | yes | yes |
|
||||
| node-red.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | yes | no |
|
||||
| passbolt.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | no | yes |
|
||||
| portainer.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | no | yes |
|
||||
| prometheus.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | yes | no |
|
||||
| searxng.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | yes | no |
|
||||
| shifts.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | yes | yes |
|
||||
| stockfill.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 200` | PASS | yes | yes | no | no |
|
||||
| traefik.lan.ddnsgeek.com | `HTTP/1.1 301 Moved Permanently` | `HTTP/2 302` | PASS | yes | yes | yes | no |
|
||||
|
||||
Verification evidence is sourced from each host's `tcp_80_http_curl.html`, `tcp_443_https_curl.html`, and `tcp_443_https_nmap.txt` scan outputs.
|
||||
|
||||
## 5) Per-app exceptions / tuning notes
|
||||
|
||||
- **edge.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- Missing HSTS on HTTPS response.
|
||||
- **familytree.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **gitea.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **gotify.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **grafana.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **influxdb.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- **kuma.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **monitor-kuma.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **node-red.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- **passbolt.lan.ddnsgeek.com**
|
||||
- Missing Referrer-Policy.
|
||||
- **portainer.lan.ddnsgeek.com**
|
||||
- Missing Referrer-Policy.
|
||||
- **prometheus.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- **searxng.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- **stockfill.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
- Missing Referrer-Policy.
|
||||
- **traefik.lan.ddnsgeek.com**
|
||||
- No CSP currently set; baseline policy may break inline scripts/styles without tuning.
|
||||
|
||||
Suggested CSP rollout approach: deploy CSP first in `Content-Security-Policy-Report-Only`, collect violations per app, then enforce tuned policies.
|
||||
@@ -0,0 +1,144 @@
|
||||
# Internet-Facing Stack Lifecycle & Vulnerability Management
|
||||
|
||||
_Last updated: 2026-04-07 (UTC)_
|
||||
|
||||
## 1) Internet-facing application inventory (app, version, image digest)
|
||||
|
||||
> Source of truth for internet-facing targets: `results/*` host folders and their WhatWeb outputs.
|
||||
> Operational owner must replace all `TBD` digest values with runtime evidence from `docker image inspect`/`docker ps --no-trunc`.
|
||||
|
||||
| Host/FQDN | Product/App | Deployed version evidence | Container image (repo:tag) | Image digest (sha256) | Evidence source |
|
||||
|---|---|---|---|---|---|
|
||||
| auth.lan.ddnsgeek.com | Authelia (auth portal) | Version not fingerprinted from external scan | TBD | TBD | `results/auth.../tcp_443_https_whatweb.txt` |
|
||||
| edge.lan.ddnsgeek.com | Edge reverse-proxy/app entrypoint | Version not fingerprinted from external scan | TBD | TBD | `results/edge.../tcp_443_https_whatweb.txt` |
|
||||
| familytree.lan.ddnsgeek.com | FamilyTree app (gunicorn-backed) | gunicorn detected, app version not fingerprinted | TBD | TBD | `results/familytree.../tcp_443_https_whatweb.txt` |
|
||||
| gitea.lan.ddnsgeek.com | Gitea | Gitea detected; exact version not fingerprinted | TBD | TBD | `results/gitea.../tcp_443_https_whatweb.txt` |
|
||||
| gotify.lan.ddnsgeek.com | Gotify | Version not fingerprinted from external scan | TBD | TBD | `results/gotify.../tcp_443_https_whatweb.txt` |
|
||||
| grafana.lan.ddnsgeek.com | Grafana | Grafana login redirect observed; exact version not fingerprinted | TBD | TBD | `results/grafana.../tcp_443_https_whatweb.txt` |
|
||||
| influxdb.lan.ddnsgeek.com | InfluxDB (behind auth) | Version not fingerprinted from external scan | TBD | TBD | `results/influxdb.../tcp_443_https_whatweb.txt` |
|
||||
| kuma.lan.ddnsgeek.com | Uptime Kuma | Dashboard redirect observed; exact version not fingerprinted | TBD | TBD | `results/kuma.../tcp_443_https_whatweb.txt` |
|
||||
| monitor-kuma.lan.ddnsgeek.com | Uptime Kuma (monitoring endpoint) | Dashboard redirect observed; exact version not fingerprinted | TBD | TBD | `results/monitor-kuma.../tcp_443_https_whatweb.txt` |
|
||||
| nextcloud.lan.ddnsgeek.com | Nextcloud (Apache/PHP stack) | Apache 2.4.66, PHP 8.3.30 | TBD | TBD | `results/nextcloud.../tcp_443_https_whatweb.txt` |
|
||||
| node-red.lan.ddnsgeek.com | Node-RED (behind auth) | Version not fingerprinted from external scan | TBD | TBD | `results/node-red.../tcp_443_https_whatweb.txt` |
|
||||
| passbolt.lan.ddnsgeek.com | Passbolt | NGINX detected; exact Passbolt version not fingerprinted | TBD | TBD | `results/passbolt.../tcp_443_https_whatweb.txt` |
|
||||
| portainer.lan.ddnsgeek.com | Portainer | Portainer detected; exact version not fingerprinted | TBD | TBD | `results/portainer.../tcp_443_https_whatweb.txt` |
|
||||
| prometheus.lan.ddnsgeek.com | Prometheus (behind auth) | Version not fingerprinted from external scan | TBD | TBD | `results/prometheus.../tcp_443_https_whatweb.txt` |
|
||||
| searxng.lan.ddnsgeek.com | SearXNG | `searxng/2026.4.5+474b0a55b` detected | TBD | TBD | `results/searxng.../tcp_443_https_whatweb.txt` |
|
||||
| shifts.lan.ddnsgeek.com | Shifts app (nginx front-end) | nginx 1.29.7 | TBD | TBD | `results/shifts.../tcp_443_https_whatweb.txt` |
|
||||
| stockfill.lan.ddnsgeek.com | Stockfill app (nginx front-end) | nginx 1.27.5 | TBD | TBD | `results/stockfill.../tcp_443_https_whatweb.txt` |
|
||||
| traefik.lan.ddnsgeek.com | Traefik (behind auth) | Version not fingerprinted from external scan | TBD | TBD | `results/traefik.../tcp_443_https_whatweb.txt` |
|
||||
|
||||
### Required evidence commands (run on Docker host)
|
||||
|
||||
```bash
|
||||
# Capture deployed containers with immutable image digest references
|
||||
sudo docker ps --format '{{.Names}}\t{{.Image}}' --no-trunc
|
||||
|
||||
# Resolve image digests for inventory table
|
||||
sudo docker image inspect <image:tag> --format '{{index .RepoDigests 0}}'
|
||||
|
||||
# Optional: export inventory as CSV for compliance tracking
|
||||
sudo docker ps --format '{{.Names}},{{.Image}}' --no-trunc > internet-facing-runtime-images.csv
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 2) Monthly update window definition
|
||||
|
||||
## Standard cadence
|
||||
- **Window:** Second Tuesday of every month, **02:00–06:00 UTC**.
|
||||
- **Fallback window:** Second Wednesday of every month, **02:00–06:00 UTC**.
|
||||
- **Emergency patch window (critical CVE only):** within **48 hours** of advisory triage.
|
||||
|
||||
## Scope per window
|
||||
1. **OS packages** (host + VM base images): apply security and bugfix updates.
|
||||
2. **Container base images**: rebuild/pull fresh immutable digests.
|
||||
3. **Application releases**: patch/minor upgrades for internet-facing apps.
|
||||
|
||||
## Freeze and exception policy
|
||||
- No deferral beyond one cycle without documented risk acceptance.
|
||||
- Critical internet-facing CVEs (remote exploitable) cannot wait for the next regular window.
|
||||
|
||||
---
|
||||
|
||||
## 3) Pre-production smoke checks for critical apps
|
||||
|
||||
All updates must be promoted through pre-prod first. Minimum smoke checks:
|
||||
|
||||
### Nextcloud
|
||||
- Login page loads.
|
||||
- Test user login succeeds.
|
||||
- File upload + download round trip succeeds.
|
||||
- Background jobs/cron status healthy.
|
||||
|
||||
### Passbolt
|
||||
- Login page loads.
|
||||
- Browser extension/API auth succeeds.
|
||||
- Secret create/read/update works for test vault.
|
||||
- Email/notification queue healthy.
|
||||
|
||||
### Gitea
|
||||
- Login succeeds.
|
||||
- Repository clone + push with test repo succeeds.
|
||||
- Webhook test delivery succeeds.
|
||||
- Actions/runner (if enabled) executes sample workflow.
|
||||
|
||||
### Grafana
|
||||
- Login succeeds.
|
||||
- Datasource health checks pass.
|
||||
- Key dashboards render without panel errors.
|
||||
- Alert rule evaluation pipeline healthy.
|
||||
|
||||
### Shared gate for all critical apps
|
||||
- HTTPS endpoint returns expected status.
|
||||
- No new high/critical findings in pre-prod vulnerability scan.
|
||||
- Error budget/SLO smoke threshold respected for 30 minutes post-deploy.
|
||||
|
||||
---
|
||||
|
||||
## 4) CVE advisory tracking mapped to deployed versions
|
||||
|
||||
Create/maintain a single register (`cve-register.csv` or ticket board) with these required fields:
|
||||
|
||||
- Product
|
||||
- Deployed version
|
||||
- Deployed image digest
|
||||
- CVE ID
|
||||
- CVSS score/severity
|
||||
- Advisory source URL
|
||||
- Affected version range
|
||||
- Exploit status (known exploited: yes/no)
|
||||
- Mitigation owner
|
||||
- Target fix version
|
||||
- Due date
|
||||
- Status (Open / In-progress / Pending validation / Resolved)
|
||||
|
||||
### Advisory sources (minimum)
|
||||
- Vendor advisories/release notes for each product (Nextcloud, Passbolt, Gitea, Grafana, etc.)
|
||||
- NVD
|
||||
- CISA KEV catalog (for known exploited CVEs)
|
||||
|
||||
### Mapping rule
|
||||
A CVE can only be marked “Not Affected” when the deployed version + digest is proven outside vulnerable ranges with evidence attached.
|
||||
|
||||
---
|
||||
|
||||
## 5) Closure evidence requirement (hard gate)
|
||||
|
||||
A vulnerability ticket is only closed when **both** conditions are met:
|
||||
|
||||
1. **Version or digest changed in production**
|
||||
- Before/after evidence attached (`docker image inspect`, deployment manifest diff, or SBOM diff).
|
||||
2. **Post-update scan is clean for that CVE**
|
||||
- Re-scan target service and attach artifact proving CVE no longer detected.
|
||||
|
||||
### Mandatory closure artifacts
|
||||
- Screenshot/export of runtime version and image digest after deployment.
|
||||
- Linked change request/deployment ID.
|
||||
- Post-update vulnerability scan report.
|
||||
- Smoke-test checklist execution evidence.
|
||||
|
||||
### Status workflow
|
||||
`Open -> Planned -> In Progress -> Pending Validation -> Resolved`
|
||||
|
||||
`Resolved` is prohibited unless both hard-gate conditions above are satisfied.
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"generated_at": "2026-04-14T07:48:16.890425+00:00",
|
||||
"description": "Host-level CVE suppressions derived from triage dispositions.",
|
||||
"suppressions": [
|
||||
{
|
||||
"host": "mtls-bridge.lan.ddnsgeek.com",
|
||||
"signature": "CVE-2009-3733",
|
||||
"reason": "Only unauthorized responses were observed; vulnerable behavior was not reproduced and signature is likely a false positive.",
|
||||
"suppression_scope": "host-specific",
|
||||
"source": "cve-triage",
|
||||
"updated_at": "2026-04-14T07:48:16.890425+00:00"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
|
||||
|
||||
[*] unknown found on tcp/51413.
|
||||
[*] tcpwrapped found on tcp/51413.
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +1,380 @@
|
||||
Nmap script found a potential vulnerability. (State: VULNERABLE)
|
||||
CVE Identified: CVE-2000-0709
|
||||
|
||||
CVE Identified: CVE-2001-1013
|
||||
|
||||
CVE Identified: CVE-2002-0614
|
||||
|
||||
CVE Identified: CVE-2002-1560
|
||||
|
||||
CVE Identified: CVE-2003-0401
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2001-0614
|
||||
|
||||
CVE Identified: CVE-2002-2320
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-1999-0609
|
||||
|
||||
CVE Identified: CVE-2003-0403
|
||||
|
||||
CVE Identified: CVE-2000-0063
|
||||
|
||||
CVE Identified: CVE-2002-1436
|
||||
|
||||
CVE Identified: CVE-1999-0607
|
||||
|
||||
CVE Identified: CVE-2005-1247
|
||||
|
||||
CVE Identified: CVE-2002-0128
|
||||
|
||||
CVE Identified: CVE-2002-0308
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2002-1499
|
||||
|
||||
CVE Identified: CVE-1999-1550
|
||||
|
||||
CVE Identified: CVE-2005-0595
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2002-0436
|
||||
|
||||
CVE Identified: CVE-1999-0039
|
||||
|
||||
CVE Identified: CVE-1999-0279
|
||||
|
||||
CVE Identified: CVE-2002-0490
|
||||
|
||||
CVE Identified: CVE-2006-5412
|
||||
|
||||
CVE Identified: CVE-2006-5412
|
||||
|
||||
CVE Identified: CVE-2002-0995
|
||||
|
||||
Matched Pattern: unauthorized
|
||||
|
||||
CVE Identified: CVE-2002-0599
|
||||
|
||||
CVE Identified: CVE-2002-0776
|
||||
|
||||
CVE Identified: CVE-2003-1383
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-2001-1151
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-2002-0220
|
||||
|
||||
CVE Identified: CVE-1999-1508
|
||||
|
||||
CVE Identified: CVE-2001-0484
|
||||
|
||||
CVE Identified: CVE-2002-0095
|
||||
|
||||
CVE Identified: CVE-2000-0127
|
||||
|
||||
CVE Identified: CVE-2000-0413
|
||||
|
||||
CVE Identified: CVE-2000-0413
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-1999-0678
|
||||
|
||||
CVE Identified: CVE-1999-0678
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2001-0500
|
||||
|
||||
CVE Identified: CVE-2001-0500
|
||||
|
||||
CVE Identified: CVE-2000-0696
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2002-1353
|
||||
|
||||
CVE Identified: CVE-2004-2104
|
||||
|
||||
CVE Identified: CVE-2004-2104
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2003-0240
|
||||
|
||||
CVE Identified: CVE-2000-0237
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2003-0560
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-1999-1011
|
||||
|
||||
CVE Identified: CVE-2003-1140
|
||||
|
||||
CVE Identified: CVE-1999-0191
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-2006-3604
|
||||
|
||||
CVE Identified: CVE-2000-0429
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2005-3299
|
||||
|
||||
@@ -8,3 +384,171 @@ CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2018-10822
|
||||
|
||||
CVE Identified: CVE-2018-10824
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-1999-1520
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-1999-0738
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-2002-0568
|
||||
|
||||
CVE Identified: CVE-2002-0568
|
||||
|
||||
CVE Identified: CVE-2002-0705
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-2002-1428
|
||||
|
||||
CVE Identified: CVE-2000-0628
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2002-1264
|
||||
|
||||
CVE Identified: CVE-2002-2057
|
||||
|
||||
CVE Identified: CVE-2002-2058
|
||||
|
||||
CVE Identified: CVE-2002-2058
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2006-2948
|
||||
|
||||
CVE Identified: CVE-2004-1873
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-2002-0385
|
||||
|
||||
CVE Identified: CVE-2001-0432
|
||||
|
||||
CVE Identified: CVE-2002-1452
|
||||
|
||||
CVE Identified: CVE-2001-1586
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2003-0169
|
||||
|
||||
CVE Identified: CVE-2002-0502
|
||||
|
||||
CVE Identified: CVE-2002-0301
|
||||
|
||||
CVE Identified: CVE-2001-0868
|
||||
|
||||
CVE Identified: CVE-2001-0868
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2002-0562
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-2001-1198
|
||||
|
||||
CVE Identified: CVE-2001-1198
|
||||
|
||||
CVE Identified: CVE-2009-3733
|
||||
|
||||
|
||||
+28
-91
@@ -5,18 +5,19 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN "/root
|
||||
[/root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt](file:///root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.018s latency).
|
||||
Host is up, received user-set (0.016s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1303s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 715s
|
||||
Not shown: 65531 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=auth.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
|
||||
@@ -64,117 +65,53 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
|
||||
| d40SNPCo/V8=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open unknown syn-ack ttl 56
|
||||
| fingerprint-strings:
|
||||
| SSLv23SessionReq:
|
||||
| gGrOj
|
||||
| d8#-
|
||||
| d/%b
|
||||
| \xb2S
|
||||
| \xecl
|
||||
| W4(U6
|
||||
| ZXs|/
|
||||
| L`EV
|
||||
| TLSSessionReq:
|
||||
| rB(`
|
||||
| b&)`
|
||||
|_ ]{pNX
|
||||
1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at https://nmap.org/cgi-bin/submit.cgi?new-service :
|
||||
SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D21495%P=x86_64-pc-linux-gnu%r(TL
|
||||
SF:SSessionReq,1EC,"<\xd9\xbc\xf4\x8eK\x95\xae/4H\x11\xdcP\x99\x82\xa3I\xe
|
||||
SF:8\xf3N'\?\x93~\xf5/\x82\x821\x85\x08p\x99\xe8{\x08\x89\xe6\xf4\x1c\xd4\
|
||||
SF:xe3k\x18\x89\x02\xbbT\x16Jzh\xf5@\xe4m\xa6\xc4\x13\x06\xbd\xd5lS\xf9\xd
|
||||
SF:5\x85\x86\xdc\x9b\xd7aKX\xb8\xc9O\xfd\xf1\x13\x8c\x1f#r5\xf4\x88\x85M9K
|
||||
SF:\x1a\x9f\x0f\xcf\x0c\xa3\xd0\x9d\xc91\xd3\xf7d\x0erB\(`\x87\xcf;!\xc3\x
|
||||
SF:edZ\xd5\xfa\x83\xc1\xd1\?@s\xf4'\xc8S\|\x9e\xff\xab\xe3\x0c\x83\x8a\x9d
|
||||
SF:\xe1Gb\x8e\xb2a\xb0c4\xf6D%\xc2\x92\x90\x1d\xe0\xd8\x90S\xce\xdb\x04R\x
|
||||
SF:04\x01\xb2\x96\x9a\xf6\x89\x04\x04\xc4\xb9\x9cs8\x96\xf0\x91\xfc\|hf\x0
|
||||
SF:1\x89\xb6a\x0c\xb7\xed1\xb8M\xd0\xb8\xa8\xdb/\x07G\xa3\xc8\xd3\*\x88\xe
|
||||
SF:1\)\x19\xe5q>\x12\n\x9f\xc1\xc2\x8f\|H\x11\^\x08!5\t\xa9{\x08\x13\$\x0c
|
||||
SF:\xe1\x94\xef\xeb\x05\xe1Z\x0b#f\xae\xfdm\xa8\$\xfd\xbf\xf2\x15e\.\x9a\x
|
||||
SF:f3\x1e\xdfd\x82\xd8dn\xadc\0;z\xfb\x96Si\xeb\)jY\xa68\xc5\x16'\]\xb6\x8
|
||||
SF:5\x08\xd2\xb9w\xe6\xe7\xeaZ\x93\x18/_\xf0\xc4ap\x01\xd1\xbdq\xfe\x01>\x
|
||||
SF:cf\xfe\xb8\xabb&\)`\x7fg\xd5\xed\*\xef-\xf7\xca\xb1\x9c\xe8\x97\xfa\x88
|
||||
SF:\xbc\xfb\xb0\xa8\x1f\xc4\x16m\xb7\xad\x84\xe8\x02\x11\r\xb7y\xfe\xac\xb
|
||||
SF:c\x15\x04%\xd96U\t\xb6;\x12\xec\x0e\x82\xe0\x08F\x08z\x87\xbci\xaa\xe7\
|
||||
SF:xea\xc84\x1e\)\x089=\xd75\xae\xd6\x08\xf1\xa6\]\x9em\xfe\xebt\xaav\x9e\
|
||||
SF:xeao\x8b\xceH\xb6c\x1e\xcc\xda\x85\x88\\~\x86O\xaf\n\xa9\x90\nw\xe8\xa3
|
||||
SF:\x9b\x1eZ\xab\x9b\x9a\x1d7\xd0!\xfd\x19\xeb\[r\xe2\xfa\[\xdaH\xb5\xe6'\
|
||||
SF:xe9\x0b\]{pNX\xe2U\xbb\xdd\xe0\xec\x8d\xc1\xe8h\xae\xec\xcc\xf76\x97o\x
|
||||
SF:cd\xf2\]5\x10\xee\x9a\xa1\x0f\x1e\x8dD\x82\xb5\x9f\xd0\x1a\xbc\x0cHr~\x
|
||||
SF:c5\x13T\xe7")%r(SSLv23SessionReq,1FB,"\xfc7\xb1\xde\xdb\xe6\xb9\xf0\x83
|
||||
SF:&\xd2gGrOj\xba\xb8jK\xc3\xa99\xfe\xf3d8#-\xc8\x07\xb2\.\xea\xd0\xc9\xcb
|
||||
SF:&nd\xc4kX\x90\xeaa\xf3-\xc8\xcd\xdc!\xfe\xa2\xe1V\xcf\xb2H\x8d'>`\xe3\x
|
||||
SF:ad\xca\xa7W\x11\x86\xff\|\xc2TJ\xbf\[i\x9c\x08\xe0,\xb9r\xb4\x07\x8d\x1
|
||||
SF:f\xbe\x8fRN\xe7\xfd@\x02y\x10t\xb3\x02\x9f\x08\x9a\x89w\x88:\xebe\x20e\
|
||||
SF:x02\xae\xdd\x83e\x16\xd9\tU\xda\x08s6\x11\x84\xfb\xd1B\xd0\xc1\x07\x99\
|
||||
SF:xba\xe2\xb6\xb0\xa2\x98O\xd6/\xc5-k#\xff\r\xdd\xa6\xdd;\xfbY\x0e\xb4n\x
|
||||
SF:957\xe2w\({\xf9\xf7\xc0\xc2d/%b\xa5\xd1\xfc\xc7\xfa\xbfW\xa0\xc9S\xa93M
|
||||
SF:\xbf\xef\xec\xe2\x04\xcao`\xf8\xe0&\xcc~\x17\\\xb2S\x9b\x92k\x84\xc7}\]
|
||||
SF:g\xf2\xcb\t\xdfA5\xc1\xf9\x8c\xb9\x20\x9c\x1a\xa5n\xfc\\\xecl\x01\xacW4
|
||||
SF:\(U6\x07B`\x9d\xff\x06\xbc\x0c\xb1\xbb\x9f\x12\xf9\xd2\xb3\xcdC\xff\x93
|
||||
SF:\rL!\xb3\xc3g\xa7\x893\xebZXs\|/\xf6,p\xe6B\x08=\0\xb5K\xe50\xef\xfe\xb
|
||||
SF:8o\xb4H\x98\xc2L`EV\x8b\xc0\xb8h\xe6\xdb\x01\xdf\x92\xd1\xaf\xe4\xb1\x9
|
||||
SF:7\x01\xe7\)\xec\x01t\xa0\xe2\xef&\x8a\x16r\xc0\xb8\xc7\x18\x17\x12\r=\n
|
||||
SF:\xdd\x8eU\[M\xeffO\xfaG\xce\x80\xe4\x1aF\xfb\xc0Z\x1aaX\xfa\x07\xfb\x86
|
||||
SF:\x9d\x97\^\x19\xd0\x98l\x01\xb9U\xdbJ\xec\xf8\x995\)\x8d\x1c`c\xeb\xbf\
|
||||
SF:x9aHgC\x13\xcd\x8c\xfd\x19\x9e\]\xed\x9c\xa0\xb4\xb7\xf84\x05\^\x99\*\x
|
||||
SF:cd\xf1\x1f\xffq\x08\x0f\x99\xc1\x16\xa5\x99,\xce@\xbcw\xd0\xb2\x0e\[\xa
|
||||
SF:5\xcb\xdb\xdc\x1eV8\x07\xe9\xf4P\x8bT\xcc\x9b:6\xb1@\xd3=\xddN\|p\x97\x
|
||||
SF:c1\x03f`\xce\x04\xdc\x83ZB\xb6\x1b\xac0D\xfb\xedB\xa16G\x9b\[\xf0\xa9\x
|
||||
SF:ba\x8ej\0f\xcc\x1bX\$\xdaj-\xe2\xdat\x14x\x8d\xdb\xbd\xffu\]S\x12\xe1:\
|
||||
SF:xe9\0\xdfAK\x03TR");
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open tcpwrapped syn-ack ttl 56
|
||||
Device type: general purpose
|
||||
Running (JUST GUESSING): Linux 4.X (87%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4
|
||||
Running (JUST GUESSING): Linux 5.X (86%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:5.4
|
||||
OS fingerprint not ideal because: Didn't receive UDP response. Please try again with -sSU
|
||||
Aggressive OS guesses: Linux 4.19 - 5.15 (87%)
|
||||
Aggressive OS guesses: Linux 5.4 (86%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21679%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=101%GCD=1%ISR=109%TI=Z%TS=A)
|
||||
SEQ(SP=FE%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB66E%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
SEQ(SP=105%GCD=1%ISR=106%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=NNT11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=1FA)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=N)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
|
||||
T2(R=N)
|
||||
T3(R=N)
|
||||
T4(R=N)
|
||||
T5(R=N)
|
||||
T5(R=Y%DF=Y%TG=40%W=1FB%S=O%A=O%F=A%O=NNT11%RD=0%Q=)
|
||||
T6(R=N)
|
||||
T7(R=N)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.932 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.667 days (since Mon Feb 23 11:37:19 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=254 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 20001/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.10 ms 10.216.0.161
|
||||
2 0.26 ms 10.216.35.11
|
||||
3 3.72 ms 10.216.32.2
|
||||
4 0.49 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 4.22 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.69 ms 10.241.1.185
|
||||
7 12.72 ms 10.241.2.71
|
||||
8 13.49 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.11 ms 10.216.0.161
|
||||
2 0.29 ms 10.216.35.12
|
||||
3 10.27 ms 10.216.32.2
|
||||
4 39.85 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 2.44 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.62 ms 10.241.1.187
|
||||
7 12.51 ms 10.241.2.71
|
||||
8 17.58 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:59:54 2026 -- 1 IP address (1 host up) scanned in 1308.17 seconds
|
||||
# Nmap done at Tue Apr 14 03:37:18 2026 -- 1 IP address (1 host up) scanned in 717.97 seconds
|
||||
|
||||
```
|
||||
|
||||
+22
-15
@@ -5,34 +5,41 @@ nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN "/root/results/auth.lan.ddn
|
||||
[/root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt](file:///root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set.
|
||||
Host is up, received user-set (0.16s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1500s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 1312s
|
||||
All 100 scanned ports on auth.lan.ddnsgeek.com (167.179.167.166) are in ignored states.
|
||||
Not shown: 100 open|filtered udp ports (no-response)
|
||||
Too many fingerprints match this host to give specific OS details
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
OS fingerprint not ideal because: Missing an open TCP port so results incomplete
|
||||
Aggressive OS guesses: Billion 7404VGP-M ADSL router (95%), NetworksAOK network monitoring applicance (95%), APC Network Management Card 3 (92%), Linux 2.6.18 (92%), Linux 2.6.23 (92%), Linux 2.6.24 (92%), Linux 2.6.8 (92%), Motorola AP-51xx WAP (92%), VMware ESXi 5.0 (92%), Cyberoam UTM firewall (91%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%G=N%TM=69D2173F%P=x86_64-pc-linux-gnu)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%DS=25%DC=T%G=N%TM=69DDB8C5%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
ECN(R=Y%DF=Y%TG=40%W=FE88%O=M5B4ST11NW7%CC=N%Q=)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=O%F=AS%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Network Distance: 25 hops
|
||||
|
||||
TRACEROUTE (using proto 1/icmp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.24 ms 10.216.35.11
|
||||
3 1.46 ms 10.216.32.2
|
||||
4 0.39 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.23 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.71 ms 10.241.1.187
|
||||
7 13.17 ms 10.241.2.71
|
||||
8 ... 30
|
||||
HOP RTT ADDRESS
|
||||
1 0.27 ms 10.216.0.161
|
||||
2 0.31 ms 10.216.35.12
|
||||
3 1.95 ms 10.216.32.2
|
||||
4 0.36 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 2.46 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.56 ms 10.241.1.185
|
||||
7 12.62 ms 10.241.2.26
|
||||
8 ... 24
|
||||
25 158.56 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:03:11 2026 -- 1 IP address (1 host up) scanned in 1505.36 seconds
|
||||
# Nmap done at Tue Apr 14 03:47:27 2026 -- 1 IP address (1 host up) scanned in 1326.95 seconds
|
||||
|
||||
```
|
||||
|
||||
+26
-26
@@ -5,18 +5,23 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN "/root/res
|
||||
[/root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt](file:///root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 29s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 29s
|
||||
Not shown: 998 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
| ssl-cert: Subject: commonName=auth.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
@@ -63,23 +68,18 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
|
||||
| d40SNPCo/V8=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
Device type: general purpose|router|storage-misc
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
Device type: general purpose|router
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3
|
||||
OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%), Linux 3.10 (87%)
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 6.15 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D2117F%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=2%ISR=10B%TI=Z%TS=A)
|
||||
SEQ(SP=108%GCD=1%ISR=10E%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3C0%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=1%ISR=107%TI=Z%TS=A)
|
||||
SEQ(SP=107%GCD=1%ISR=10E%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
@@ -90,24 +90,24 @@ T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.917 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.659 days (since Mon Feb 23 11:37:20 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=264 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 443/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.08 ms 10.216.0.161
|
||||
2 0.18 ms 10.216.35.12
|
||||
3 1.24 ms 10.216.32.2
|
||||
4 0.40 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 3.37 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.62 ms 10.241.1.185
|
||||
7 12.81 ms 10.241.2.71
|
||||
8 14.27 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.13 ms 10.216.0.161
|
||||
2 0.24 ms 10.216.35.11
|
||||
3 5.02 ms 10.216.32.2
|
||||
4 0.35 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 2.40 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.67 ms 10.241.1.187
|
||||
7 12.52 ms 10.241.2.26
|
||||
8 14.40 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:38:39 2026 -- 1 IP address (1 host up) scanned in 33.75 seconds
|
||||
# Nmap done at Tue Apr 14 03:25:52 2026 -- 1 IP address (1 host up) scanned in 31.66 seconds
|
||||
|
||||
```
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ HTTP/2 200
|
||||
cache-control: public, max-age=0, must-revalidate
|
||||
content-security-policy: default-src 'none'
|
||||
content-type: text/plain; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
date: Tue, 14 Apr 2026 03:26:00 GMT
|
||||
etag: e32f46a57de46724906b37cbc5423dfe182f56ac
|
||||
permissions-policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
referrer-policy: strict-origin-when-cross-origin
|
||||
|
||||
+32
-21
@@ -6,9 +6,9 @@ curl -sSik https://auth.lan.ddnsgeek.com:443/
|
||||
|
||||
```
|
||||
HTTP/2 200
|
||||
content-security-policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-0J2hxwgybOhUvILUj8vn6TmMff992ibr' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
content-security-policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-Hy2h185wxuwadnlopIKIB21xZPlglILc' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
content-type: text/html; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
date: Tue, 14 Apr 2026 03:26:00 GMT
|
||||
permissions-policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
referrer-policy: strict-origin-when-cross-origin
|
||||
strict-transport-security: max-age=15552000; includeSubDomains; preload
|
||||
@@ -16,37 +16,48 @@ x-content-type-options: nosniff
|
||||
x-dns-prefetch-control: off
|
||||
x-frame-options: SAMEORIGIN
|
||||
x-xss-protection: 1; mode=block
|
||||
content-length: 2675
|
||||
content-length: 3760
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<base href="https://auth.lan.ddnsgeek.com/" />
|
||||
<meta property="csp-nonce" content="0J2hxwgybOhUvILUj8vn6TmMff992ibr" />
|
||||
<meta property="csp-nonce" content="Hy2h185wxuwadnlopIKIB21xZPlglILc" />
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<link rel="manifest" href="./manifest.json" />
|
||||
<link rel="icon" href="./favicon.ico" />
|
||||
<title></title>
|
||||
<script type="module" crossorigin src="./static/js/index.D1XP2tyz.js"></script>
|
||||
<script type="module" crossorigin src="./static/js/index.BrTK6y2i.js"></script>
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk.DlVPA22h.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/jsx-runtime.D7aLyu4y.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk-LFPYN7LY.DxuuhCLW.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.DeIApWO8.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.isFocusVisible.hAXcAUZQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.CircularProgress.Dj19OJ7X.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grid.B31PGc10.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grow.zK7PfJVW.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.LocalStorage.CPTlZvs_.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Typography.BchcjRqh.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/axios.DY6Q-zLa.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.SearchParams.Dahk4iq5.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RemoteCall.2c24izsT.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.Client.CTpzKmyn.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.UserInfo.BiOsY1vi.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.LocalStorage.D4X91p4_.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.State.clWZFebM.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/jsx-runtime.HaF00pOT.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk-QFMPRPBF.DPG-QKOQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/utils.Configuration.Ds6pXNZy.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.CircularProgress.BvN3qeCu.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/fontawesome-svg-core.8FlSHMxQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grow.CCK1Phaa.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.NotificationsContext.DrsbCNet.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.RtlProvider.CwGalZoG.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/axios.DFSlbVw2.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.LocalStorage.B8XPN9FL.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grid.C2MuioJD.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Typography.l1OmJPrl.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/views.LoadingPage.C6Kn8YHD.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.Routes.0nF8LvIB.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.LocalStorage.BQxI78o8.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.LanguageContext.D6E5MMoB.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.Client.C4gSbp84.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.UserInfo.B42SdIQp.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.LocalStorageMethodContext.CevqyUb7.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RemoteCall.n3Wv5Bzf.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.Configuration.BP-ZP1gK.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.QueryParam.B_9ram53.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.Redirector.arsv2TkH.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.SearchParams.CVF9qGWV.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RouterNavigate.5D7ThbL3.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.State.CFkWWBpw.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.UserInfo.B0zw4WwF.js">
|
||||
<link rel="stylesheet" crossorigin href="./static/css/index.Dny_JsW-.css">
|
||||
</head>
|
||||
|
||||
|
||||
+325
-323
@@ -290,418 +290,418 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
200 GET 36l 85w 1169c https://auth.lan.ddnsgeek.com/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
200 GET 4l 50w 6215c https://auth.lan.ddnsgeek.com/favicon.ico
|
||||
200 GET 2l 4w 57c https://auth.lan.ddnsgeek.com/robots.txt
|
||||
500 GET 2l 11w 72c https://auth.lan.ddnsgeek.com/static/
|
||||
@@ -710,5 +710,7 @@ Configuration {
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Static
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Api
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/STATIC
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/12993.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/Schmitt.aspx
|
||||
|
||||
```
|
||||
|
||||
+1684
-427
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,7 +6,7 @@ sslscan --show-certificate --no-colour auth.lan.ddnsgeek.com:443 2>&1
|
||||
|
||||
```
|
||||
Version: 2.1.5
|
||||
OpenSSL 3.5.3 16 Sep 2025
|
||||
OpenSSL 3.5.5 27 Jan 2026
|
||||
|
||||
Connected to 167.179.167.166
|
||||
|
||||
|
||||
+1933
-1
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -58,10 +58,10 @@ Detected Plugins:
|
||||
|
||||
HTTP Headers:
|
||||
HTTP/1.1 200 OK
|
||||
Content-Length: 2675
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-tIedqcVldv2CDv3iqRL1NPlzc11KOhAZ' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Length: 3760
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-aOLiNSFQb7YP89YdOd6eoUXxMkPFT6Cn' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Type: text/html; charset=utf-8
|
||||
Date: Sun, 05 Apr 2026 07:39:56 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:47 GMT
|
||||
Permissions-Policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
Referrer-Policy: strict-origin-when-cross-origin
|
||||
Strict-Transport-Security: max-age=15552000; includeSubDomains; preload
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSikf http://auth.lan.ddnsgeek.com:80/robots.txt
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/robots.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSik http://auth.lan.ddnsgeek.com:80/
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+302
-297
@@ -290,434 +290,434 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
200 GET 36l 85w 1169c https://auth.lan.ddnsgeek.com/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
200 GET 4l 50w 6215c https://auth.lan.ddnsgeek.com/favicon.ico
|
||||
200 GET 2l 4w 57c https://auth.lan.ddnsgeek.com/robots.txt
|
||||
500 GET 2l 11w 72c https://auth.lan.ddnsgeek.com/static/
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[ => https://auth.lan.ddnsgeek.com/[
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/] => https://auth.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.txt => https://auth.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.html => https://auth.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].txt => https://auth.lan.ddnsgeek.com/].txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.php => https://auth.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.txt => https://auth.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].html => https://auth.lan.ddnsgeek.com/].html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.asp => https://auth.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.html => https://auth.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.php => https://auth.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].php => https://auth.lan.ddnsgeek.com/].php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.aspx => https://auth.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].asp => https://auth.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.jsp => https://auth.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.asp => https://auth.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.aspx => https://auth.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].aspx => https://auth.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.jsp => https://auth.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].jsp => https://auth.lan.ddnsgeek.com/].jsp
|
||||
200 GET 1l 10w 13406c https://auth.lan.ddnsgeek.com/locales
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/plain] => https://auth.lan.ddnsgeek.com/plain]
|
||||
@@ -737,6 +737,11 @@ Configuration {
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/API
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Static
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Api
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xj.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xingzuo.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xtranet.aspx
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/Annunci.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/STATIC
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/AutoThreeUI.asp
|
||||
|
||||
```
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSikf http://auth.lan.ddnsgeek.com:80/.well-known/security.txt
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+29
-29
@@ -5,23 +5,43 @@ nmap -vv --reason -Pn -T4 -sV -p 80 --script="banner,(http* or ssl*) and not (br
|
||||
[/root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt](file:///root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:43 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:26:00 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:53 UTC for 712s
|
||||
Scanned at 2026-04-14 03:26:10 UTC for 240s
|
||||
|
||||
Bug in http-security-headers: no string output.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-chrono: Request times for /; avg: 5984.25ms; min: 4370.95ms; max: 8095.69ms
|
||||
|_http-chrono: Request times for /; avg: 884.10ms; min: 561.63ms; max: 1463.16ms
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
| http-vhosts:
|
||||
|_128 names had status 308
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-date: Tue, 14 Apr 2026 03:26:32 GMT; -2s from local time.
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:18 GMT; -5s from local time.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
| http-headers:
|
||||
| Location: https://auth.lan.ddnsgeek.com/
|
||||
| Date: Tue, 14 Apr 2026 03:26:49 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
@@ -29,27 +49,8 @@ PORT STATE SERVICE REASON VERSION
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
| http-headers:
|
||||
| Location: https://auth.lan.ddnsgeek.com/
|
||||
| Date: Sun, 05 Apr 2026 07:39:47 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 200
|
||||
| Redirected To: https://auth.lan.ddnsgeek.com/
|
||||
@@ -71,10 +72,9 @@ PORT STATE SERVICE REASON VERSION
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:50:46 2026 -- 1 IP address (1 host up) scanned in 723.48 seconds
|
||||
# Nmap done at Tue Apr 14 03:30:10 2026 -- 1 IP address (1 host up) scanned in 252.27 seconds
|
||||
|
||||
```
|
||||
|
||||
+78001
-19417
File diff suppressed because it is too large
Load Diff
+24
-5
@@ -5,6 +5,25 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host http://auth.lan.ddnsgeek.c
|
||||
[/root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nikto.txt](file:///root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nikto.txt):
|
||||
|
||||
```
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -12,20 +31,20 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host http://auth.lan.ddnsgeek.c
|
||||
+ Target Hostname: auth.lan.ddnsgeek.com
|
||||
+ Target Port: 80
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:18 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:34 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [999979] http://100.100.100.200/latest/meta-data/: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [007342] /: X-Frame-Options header is deprecated and was replaced with the Content-Security-Policy HTTP header with the frame-ancestors directive. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
|
||||
+ [007352] /: The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type. See: https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/missing-content-type-header/
|
||||
+ 7901 requests: 17 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-05 08:01:59 (GMT0) (1361 seconds)
|
||||
+ 7900 requests: 16 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-14 03:36:45 (GMT0) (611 seconds)
|
||||
---------------------------------------------------------------------------
|
||||
+ 1 host(s) tested
|
||||
|
||||
|
||||
+4
-4
@@ -23,7 +23,7 @@ Detected Plugins:
|
||||
HTTP Headers:
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:39:55 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:46 GMT
|
||||
Content-Length: 17
|
||||
Connection: close
|
||||
|
||||
@@ -80,10 +80,10 @@ Detected Plugins:
|
||||
|
||||
HTTP Headers:
|
||||
HTTP/1.1 200 OK
|
||||
Content-Length: 2675
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-gtk3aRupJO2znmjsr1WFIFHRlrXqzLDa' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Length: 3760
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-AkEeWkqnDPAZ8YAnPXsNtFrBiXy4pPTh' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Type: text/html; charset=utf-8
|
||||
Date: Sun, 05 Apr 2026 07:42:53 GMT
|
||||
Date: Tue, 14 Apr 2026 03:27:00 GMT
|
||||
Permissions-Policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
Referrer-Policy: strict-origin-when-cross-origin
|
||||
Strict-Transport-Security: max-age=15552000; includeSubDomains; preload
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,196 @@
|
||||
# CVE triage sheet - auth.lan.ddnsgeek.com
|
||||
|
||||
Generated (UTC): 2026-04-14T07:48:16.890425+00:00
|
||||
|
||||
| CVE | Affected host | Endpoint | Product/version evidence | Exploit precondition | Reproducibility | Disposition |
|
||||
|---|---|---|---|---|---|---|
|
||||
| CVE-1999-0039 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0068 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0191 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0279 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0407 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0449 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0606 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0607 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0609 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0678 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0737 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0738 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0739 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-0930 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-1011 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-1052 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-1508 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-1520 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-1999-1550 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0063 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0127 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0237 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0413 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0429 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0628 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0672 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0696 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2000-0709 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0432 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0484 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0500 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0537 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0614 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0821 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-0868 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-1013 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-1151 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-1198 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2001-1586 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0095 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0128 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0220 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0301 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0308 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0325 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0385 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0436 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0490 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0502 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0562 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0568 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0579 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0599 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0614 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0705 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0776 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0943 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-0995 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1081 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1264 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1353 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1428 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1432 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1436 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1452 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1499 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1560 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1717 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-1769 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-2057 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-2058 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-2320 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2002-2342 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-0169 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-0240 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-0401 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-0403 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-0560 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-1140 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2003-1383 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2004-1873 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2004-2104 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2004-2106 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2005-0595 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2005-1247 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2005-3299 | auth.lan.ddnsgeek.com | `443/tcp` | ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Target must run Apache 2.0.x with mod_imap module enabled and vulnerable to cross-site scripting behavior. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2006-2948 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2006-3604 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2006-5412 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2006-6795 | auth.lan.ddnsgeek.com | `unknown` | http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API); http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API) | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2009-3733 | auth.lan.ddnsgeek.com | `/sdk/%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/etc/vmware/hostd/vmInventory.xml` | No explicit product/version fingerprint in nmap service line. | Target must expose VMware SDK endpoint (/sdk) and allow traversal into host files. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2011-0966 | auth.lan.ddnsgeek.com | `/cwhp/auditLog.do?file=..\..\..\..\..\..\..\Program%20Files\CSCOpx\MDC\Tomcat\webapps\triveni\WEB-INF\classes\schedule.properties` | No explicit product/version fingerprint in nmap service line. | Target must be Cisco Unified Operations Manager 8.0/8.5 with vulnerable auditLog.do traversal handling. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2018-10822 | auth.lan.ddnsgeek.com | `/uir//etc/passwd` | No explicit product/version fingerprint in nmap service line. | Target must be affected D-Link router firmware exposing /uir/ traversal path. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2018-10824 | auth.lan.ddnsgeek.com | `/uir//tmp/csman/0` | No explicit product/version fingerprint in nmap service line. | Target must be affected D-Link router firmware exposing plaintext credential path under /tmp/csman. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
| CVE-2019-1653 | auth.lan.ddnsgeek.com | `/cgi-bin/config.exp` | No explicit product/version fingerprint in nmap service line. | Validate affected product/version and exploit path prerequisites before filing. | not-reproduced | **needs-manual-test** |
|
||||
| | | | | | | Required reproduction gate: Before creating a ticket, reproduce vulnerable behavior directly (e.g., crafted request causing data exposure, traversal read, or exploitable crash) and attach request/response proof. Banner or script signature matches alone are insufficient. |
|
||||
@@ -1,15 +1,16 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.018s latency).
|
||||
Host is up, received user-set (0.016s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1303s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 715s
|
||||
Not shown: 65531 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=auth.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
|
||||
@@ -57,115 +58,51 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
|
||||
| d40SNPCo/V8=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open unknown syn-ack ttl 56
|
||||
| fingerprint-strings:
|
||||
| SSLv23SessionReq:
|
||||
| gGrOj
|
||||
| d8#-
|
||||
| d/%b
|
||||
| \xb2S
|
||||
| \xecl
|
||||
| W4(U6
|
||||
| ZXs|/
|
||||
| L`EV
|
||||
| TLSSessionReq:
|
||||
| rB(`
|
||||
| b&)`
|
||||
|_ ]{pNX
|
||||
1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at https://nmap.org/cgi-bin/submit.cgi?new-service :
|
||||
SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D21495%P=x86_64-pc-linux-gnu%r(TL
|
||||
SF:SSessionReq,1EC,"<\xd9\xbc\xf4\x8eK\x95\xae/4H\x11\xdcP\x99\x82\xa3I\xe
|
||||
SF:8\xf3N'\?\x93~\xf5/\x82\x821\x85\x08p\x99\xe8{\x08\x89\xe6\xf4\x1c\xd4\
|
||||
SF:xe3k\x18\x89\x02\xbbT\x16Jzh\xf5@\xe4m\xa6\xc4\x13\x06\xbd\xd5lS\xf9\xd
|
||||
SF:5\x85\x86\xdc\x9b\xd7aKX\xb8\xc9O\xfd\xf1\x13\x8c\x1f#r5\xf4\x88\x85M9K
|
||||
SF:\x1a\x9f\x0f\xcf\x0c\xa3\xd0\x9d\xc91\xd3\xf7d\x0erB\(`\x87\xcf;!\xc3\x
|
||||
SF:edZ\xd5\xfa\x83\xc1\xd1\?@s\xf4'\xc8S\|\x9e\xff\xab\xe3\x0c\x83\x8a\x9d
|
||||
SF:\xe1Gb\x8e\xb2a\xb0c4\xf6D%\xc2\x92\x90\x1d\xe0\xd8\x90S\xce\xdb\x04R\x
|
||||
SF:04\x01\xb2\x96\x9a\xf6\x89\x04\x04\xc4\xb9\x9cs8\x96\xf0\x91\xfc\|hf\x0
|
||||
SF:1\x89\xb6a\x0c\xb7\xed1\xb8M\xd0\xb8\xa8\xdb/\x07G\xa3\xc8\xd3\*\x88\xe
|
||||
SF:1\)\x19\xe5q>\x12\n\x9f\xc1\xc2\x8f\|H\x11\^\x08!5\t\xa9{\x08\x13\$\x0c
|
||||
SF:\xe1\x94\xef\xeb\x05\xe1Z\x0b#f\xae\xfdm\xa8\$\xfd\xbf\xf2\x15e\.\x9a\x
|
||||
SF:f3\x1e\xdfd\x82\xd8dn\xadc\0;z\xfb\x96Si\xeb\)jY\xa68\xc5\x16'\]\xb6\x8
|
||||
SF:5\x08\xd2\xb9w\xe6\xe7\xeaZ\x93\x18/_\xf0\xc4ap\x01\xd1\xbdq\xfe\x01>\x
|
||||
SF:cf\xfe\xb8\xabb&\)`\x7fg\xd5\xed\*\xef-\xf7\xca\xb1\x9c\xe8\x97\xfa\x88
|
||||
SF:\xbc\xfb\xb0\xa8\x1f\xc4\x16m\xb7\xad\x84\xe8\x02\x11\r\xb7y\xfe\xac\xb
|
||||
SF:c\x15\x04%\xd96U\t\xb6;\x12\xec\x0e\x82\xe0\x08F\x08z\x87\xbci\xaa\xe7\
|
||||
SF:xea\xc84\x1e\)\x089=\xd75\xae\xd6\x08\xf1\xa6\]\x9em\xfe\xebt\xaav\x9e\
|
||||
SF:xeao\x8b\xceH\xb6c\x1e\xcc\xda\x85\x88\\~\x86O\xaf\n\xa9\x90\nw\xe8\xa3
|
||||
SF:\x9b\x1eZ\xab\x9b\x9a\x1d7\xd0!\xfd\x19\xeb\[r\xe2\xfa\[\xdaH\xb5\xe6'\
|
||||
SF:xe9\x0b\]{pNX\xe2U\xbb\xdd\xe0\xec\x8d\xc1\xe8h\xae\xec\xcc\xf76\x97o\x
|
||||
SF:cd\xf2\]5\x10\xee\x9a\xa1\x0f\x1e\x8dD\x82\xb5\x9f\xd0\x1a\xbc\x0cHr~\x
|
||||
SF:c5\x13T\xe7")%r(SSLv23SessionReq,1FB,"\xfc7\xb1\xde\xdb\xe6\xb9\xf0\x83
|
||||
SF:&\xd2gGrOj\xba\xb8jK\xc3\xa99\xfe\xf3d8#-\xc8\x07\xb2\.\xea\xd0\xc9\xcb
|
||||
SF:&nd\xc4kX\x90\xeaa\xf3-\xc8\xcd\xdc!\xfe\xa2\xe1V\xcf\xb2H\x8d'>`\xe3\x
|
||||
SF:ad\xca\xa7W\x11\x86\xff\|\xc2TJ\xbf\[i\x9c\x08\xe0,\xb9r\xb4\x07\x8d\x1
|
||||
SF:f\xbe\x8fRN\xe7\xfd@\x02y\x10t\xb3\x02\x9f\x08\x9a\x89w\x88:\xebe\x20e\
|
||||
SF:x02\xae\xdd\x83e\x16\xd9\tU\xda\x08s6\x11\x84\xfb\xd1B\xd0\xc1\x07\x99\
|
||||
SF:xba\xe2\xb6\xb0\xa2\x98O\xd6/\xc5-k#\xff\r\xdd\xa6\xdd;\xfbY\x0e\xb4n\x
|
||||
SF:957\xe2w\({\xf9\xf7\xc0\xc2d/%b\xa5\xd1\xfc\xc7\xfa\xbfW\xa0\xc9S\xa93M
|
||||
SF:\xbf\xef\xec\xe2\x04\xcao`\xf8\xe0&\xcc~\x17\\\xb2S\x9b\x92k\x84\xc7}\]
|
||||
SF:g\xf2\xcb\t\xdfA5\xc1\xf9\x8c\xb9\x20\x9c\x1a\xa5n\xfc\\\xecl\x01\xacW4
|
||||
SF:\(U6\x07B`\x9d\xff\x06\xbc\x0c\xb1\xbb\x9f\x12\xf9\xd2\xb3\xcdC\xff\x93
|
||||
SF:\rL!\xb3\xc3g\xa7\x893\xebZXs\|/\xf6,p\xe6B\x08=\0\xb5K\xe50\xef\xfe\xb
|
||||
SF:8o\xb4H\x98\xc2L`EV\x8b\xc0\xb8h\xe6\xdb\x01\xdf\x92\xd1\xaf\xe4\xb1\x9
|
||||
SF:7\x01\xe7\)\xec\x01t\xa0\xe2\xef&\x8a\x16r\xc0\xb8\xc7\x18\x17\x12\r=\n
|
||||
SF:\xdd\x8eU\[M\xeffO\xfaG\xce\x80\xe4\x1aF\xfb\xc0Z\x1aaX\xfa\x07\xfb\x86
|
||||
SF:\x9d\x97\^\x19\xd0\x98l\x01\xb9U\xdbJ\xec\xf8\x995\)\x8d\x1c`c\xeb\xbf\
|
||||
SF:x9aHgC\x13\xcd\x8c\xfd\x19\x9e\]\xed\x9c\xa0\xb4\xb7\xf84\x05\^\x99\*\x
|
||||
SF:cd\xf1\x1f\xffq\x08\x0f\x99\xc1\x16\xa5\x99,\xce@\xbcw\xd0\xb2\x0e\[\xa
|
||||
SF:5\xcb\xdb\xdc\x1eV8\x07\xe9\xf4P\x8bT\xcc\x9b:6\xb1@\xd3=\xddN\|p\x97\x
|
||||
SF:c1\x03f`\xce\x04\xdc\x83ZB\xb6\x1b\xac0D\xfb\xedB\xa16G\x9b\[\xf0\xa9\x
|
||||
SF:ba\x8ej\0f\xcc\x1bX\$\xdaj-\xe2\xdat\x14x\x8d\xdb\xbd\xffu\]S\x12\xe1:\
|
||||
SF:xe9\0\xdfAK\x03TR");
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open tcpwrapped syn-ack ttl 56
|
||||
Device type: general purpose
|
||||
Running (JUST GUESSING): Linux 4.X (87%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4
|
||||
Running (JUST GUESSING): Linux 5.X (86%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:5.4
|
||||
OS fingerprint not ideal because: Didn't receive UDP response. Please try again with -sSU
|
||||
Aggressive OS guesses: Linux 4.19 - 5.15 (87%)
|
||||
Aggressive OS guesses: Linux 5.4 (86%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21679%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=101%GCD=1%ISR=109%TI=Z%TS=A)
|
||||
SEQ(SP=FE%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB66E%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
SEQ(SP=105%GCD=1%ISR=106%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=NNT11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=1FA)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=N)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
|
||||
T2(R=N)
|
||||
T3(R=N)
|
||||
T4(R=N)
|
||||
T5(R=N)
|
||||
T5(R=Y%DF=Y%TG=40%W=1FB%S=O%A=O%F=A%O=NNT11%RD=0%Q=)
|
||||
T6(R=N)
|
||||
T7(R=N)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.932 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.667 days (since Mon Feb 23 11:37:19 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=254 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 20001/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.10 ms 10.216.0.161
|
||||
2 0.26 ms 10.216.35.11
|
||||
3 3.72 ms 10.216.32.2
|
||||
4 0.49 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 4.22 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.69 ms 10.241.1.185
|
||||
7 12.72 ms 10.241.2.71
|
||||
8 13.49 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.11 ms 10.216.0.161
|
||||
2 0.29 ms 10.216.35.12
|
||||
3 10.27 ms 10.216.32.2
|
||||
4 39.85 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 2.44 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.62 ms 10.241.1.187
|
||||
7 12.51 ms 10.241.2.71
|
||||
8 17.58 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:59:54 2026 -- 1 IP address (1 host up) scanned in 1308.17 seconds
|
||||
# Nmap done at Tue Apr 14 03:37:18 2026 -- 1 IP address (1 host up) scanned in 717.97 seconds
|
||||
|
||||
@@ -1,4 +1,380 @@
|
||||
Nmap script found a potential vulnerability. (State: VULNERABLE)
|
||||
CVE Identified: CVE-2000-0709
|
||||
|
||||
CVE Identified: CVE-2001-1013
|
||||
|
||||
CVE Identified: CVE-2002-0614
|
||||
|
||||
CVE Identified: CVE-2002-1560
|
||||
|
||||
CVE Identified: CVE-2003-0401
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-2001-0614
|
||||
|
||||
CVE Identified: CVE-2002-2320
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-2002-1432
|
||||
|
||||
CVE Identified: CVE-1999-0609
|
||||
|
||||
CVE Identified: CVE-2003-0403
|
||||
|
||||
CVE Identified: CVE-2000-0063
|
||||
|
||||
CVE Identified: CVE-2002-1436
|
||||
|
||||
CVE Identified: CVE-1999-0607
|
||||
|
||||
CVE Identified: CVE-2005-1247
|
||||
|
||||
CVE Identified: CVE-2002-0128
|
||||
|
||||
CVE Identified: CVE-2002-0308
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2006-6795
|
||||
|
||||
CVE Identified: CVE-2002-1499
|
||||
|
||||
CVE Identified: CVE-1999-1550
|
||||
|
||||
CVE Identified: CVE-2005-0595
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2002-0436
|
||||
|
||||
CVE Identified: CVE-1999-0039
|
||||
|
||||
CVE Identified: CVE-1999-0279
|
||||
|
||||
CVE Identified: CVE-2002-0490
|
||||
|
||||
CVE Identified: CVE-2006-5412
|
||||
|
||||
CVE Identified: CVE-2006-5412
|
||||
|
||||
CVE Identified: CVE-2002-0995
|
||||
|
||||
Matched Pattern: unauthorized
|
||||
|
||||
CVE Identified: CVE-2002-0599
|
||||
|
||||
CVE Identified: CVE-2002-0776
|
||||
|
||||
CVE Identified: CVE-2003-1383
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-2001-1151
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-1999-0606
|
||||
|
||||
CVE Identified: CVE-2002-0220
|
||||
|
||||
CVE Identified: CVE-1999-1508
|
||||
|
||||
CVE Identified: CVE-2001-0484
|
||||
|
||||
CVE Identified: CVE-2002-0095
|
||||
|
||||
CVE Identified: CVE-2000-0127
|
||||
|
||||
CVE Identified: CVE-2000-0413
|
||||
|
||||
CVE Identified: CVE-2000-0413
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-2002-1717
|
||||
|
||||
CVE Identified: CVE-1999-0678
|
||||
|
||||
CVE Identified: CVE-1999-0678
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2000-0672
|
||||
|
||||
CVE Identified: CVE-2001-0500
|
||||
|
||||
CVE Identified: CVE-2001-0500
|
||||
|
||||
CVE Identified: CVE-2000-0696
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2001-0537
|
||||
|
||||
CVE Identified: CVE-2002-1353
|
||||
|
||||
CVE Identified: CVE-2004-2104
|
||||
|
||||
CVE Identified: CVE-2004-2104
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2004-2106
|
||||
|
||||
CVE Identified: CVE-2003-0240
|
||||
|
||||
CVE Identified: CVE-2000-0237
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2003-0560
|
||||
|
||||
CVE Identified: CVE-1999-0930
|
||||
|
||||
CVE Identified: CVE-1999-1011
|
||||
|
||||
CVE Identified: CVE-2003-1140
|
||||
|
||||
CVE Identified: CVE-1999-0191
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-1999-0407
|
||||
|
||||
CVE Identified: CVE-2006-3604
|
||||
|
||||
CVE Identified: CVE-2000-0429
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2005-3299
|
||||
|
||||
@@ -8,3 +384,171 @@ CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2018-10822
|
||||
|
||||
CVE Identified: CVE-2018-10824
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-1999-1520
|
||||
|
||||
CVE Identified: CVE-2002-1769
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-1999-0738
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-2002-1081
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-1999-0068
|
||||
|
||||
CVE Identified: CVE-2002-0568
|
||||
|
||||
CVE Identified: CVE-2002-0568
|
||||
|
||||
CVE Identified: CVE-2002-0705
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-1999-1052
|
||||
|
||||
CVE Identified: CVE-2002-1428
|
||||
|
||||
CVE Identified: CVE-2000-0628
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2002-1264
|
||||
|
||||
CVE Identified: CVE-2002-2057
|
||||
|
||||
CVE Identified: CVE-2002-2058
|
||||
|
||||
CVE Identified: CVE-2002-2058
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-0943
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-2342
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2002-0579
|
||||
|
||||
CVE Identified: CVE-2006-2948
|
||||
|
||||
CVE Identified: CVE-2004-1873
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-1999-0737
|
||||
|
||||
CVE Identified: CVE-2002-0385
|
||||
|
||||
CVE Identified: CVE-2001-0432
|
||||
|
||||
CVE Identified: CVE-2002-1452
|
||||
|
||||
CVE Identified: CVE-2001-1586
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2001-0821
|
||||
|
||||
CVE Identified: CVE-2003-0169
|
||||
|
||||
CVE Identified: CVE-2002-0502
|
||||
|
||||
CVE Identified: CVE-2002-0301
|
||||
|
||||
CVE Identified: CVE-2001-0868
|
||||
|
||||
CVE Identified: CVE-2001-0868
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-1999-0449
|
||||
|
||||
CVE Identified: CVE-2002-0562
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-2002-0325
|
||||
|
||||
CVE Identified: CVE-1999-0739
|
||||
|
||||
CVE Identified: CVE-2001-1198
|
||||
|
||||
CVE Identified: CVE-2001-1198
|
||||
|
||||
CVE Identified: CVE-2009-3733
|
||||
|
||||
|
||||
@@ -1,15 +1,20 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 29s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 29s
|
||||
Not shown: 998 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
| ssl-cert: Subject: commonName=auth.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
@@ -56,23 +61,18 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
|
||||
| d40SNPCo/V8=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-favicon: Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0
|
||||
|_http-title: Site doesn't have a title (text/html; charset=utf-8).
|
||||
|_http-trane-info: Problem with XML parsing of /evox/about
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD OPTIONS
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
Device type: general purpose|router|storage-misc
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
Device type: general purpose|router
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3
|
||||
OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%), Linux 3.10 (87%)
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 6.15 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D2117F%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=2%ISR=10B%TI=Z%TS=A)
|
||||
SEQ(SP=108%GCD=1%ISR=10E%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3C0%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=1%ISR=107%TI=Z%TS=A)
|
||||
SEQ(SP=107%GCD=1%ISR=10E%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
@@ -83,22 +83,22 @@ T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.917 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.659 days (since Mon Feb 23 11:37:20 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=264 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 443/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.08 ms 10.216.0.161
|
||||
2 0.18 ms 10.216.35.12
|
||||
3 1.24 ms 10.216.32.2
|
||||
4 0.40 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 3.37 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.62 ms 10.241.1.185
|
||||
7 12.81 ms 10.241.2.71
|
||||
8 14.27 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.13 ms 10.216.0.161
|
||||
2 0.24 ms 10.216.35.11
|
||||
3 5.02 ms 10.216.32.2
|
||||
4 0.35 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 2.40 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.67 ms 10.241.1.187
|
||||
7 12.52 ms 10.241.2.26
|
||||
8 14.40 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:38:39 2026 -- 1 IP address (1 host up) scanned in 33.75 seconds
|
||||
# Nmap done at Tue Apr 14 03:25:52 2026 -- 1 IP address (1 host up) scanned in 31.66 seconds
|
||||
|
||||
@@ -1,29 +1,36 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set.
|
||||
Host is up, received user-set (0.16s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1500s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 1312s
|
||||
All 100 scanned ports on auth.lan.ddnsgeek.com (167.179.167.166) are in ignored states.
|
||||
Not shown: 100 open|filtered udp ports (no-response)
|
||||
Too many fingerprints match this host to give specific OS details
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
OS fingerprint not ideal because: Missing an open TCP port so results incomplete
|
||||
Aggressive OS guesses: Billion 7404VGP-M ADSL router (95%), NetworksAOK network monitoring applicance (95%), APC Network Management Card 3 (92%), Linux 2.6.18 (92%), Linux 2.6.23 (92%), Linux 2.6.24 (92%), Linux 2.6.8 (92%), Motorola AP-51xx WAP (92%), VMware ESXi 5.0 (92%), Cyberoam UTM firewall (91%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%G=N%TM=69D2173F%P=x86_64-pc-linux-gnu)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%DS=25%DC=T%G=N%TM=69DDB8C5%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
ECN(R=Y%DF=Y%TG=40%W=FE88%O=M5B4ST11NW7%CC=N%Q=)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=O%F=AS%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Network Distance: 25 hops
|
||||
|
||||
TRACEROUTE (using proto 1/icmp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.24 ms 10.216.35.11
|
||||
3 1.46 ms 10.216.32.2
|
||||
4 0.39 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.23 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.71 ms 10.241.1.187
|
||||
7 13.17 ms 10.241.2.71
|
||||
8 ... 30
|
||||
HOP RTT ADDRESS
|
||||
1 0.27 ms 10.216.0.161
|
||||
2 0.31 ms 10.216.35.12
|
||||
3 1.95 ms 10.216.32.2
|
||||
4 0.36 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 2.46 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.56 ms 10.241.1.185
|
||||
7 12.62 ms 10.241.2.26
|
||||
8 ... 24
|
||||
25 158.56 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:03:11 2026 -- 1 IP address (1 host up) scanned in 1505.36 seconds
|
||||
# Nmap done at Tue Apr 14 03:47:27 2026 -- 1 IP address (1 host up) scanned in 1326.95 seconds
|
||||
|
||||
@@ -2,7 +2,7 @@ HTTP/2 200
|
||||
cache-control: public, max-age=0, must-revalidate
|
||||
content-security-policy: default-src 'none'
|
||||
content-type: text/plain; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
date: Tue, 14 Apr 2026 03:26:00 GMT
|
||||
etag: e32f46a57de46724906b37cbc5423dfe182f56ac
|
||||
permissions-policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
referrer-policy: strict-origin-when-cross-origin
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
HTTP/2 200
|
||||
content-security-policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-0J2hxwgybOhUvILUj8vn6TmMff992ibr' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
content-security-policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-Hy2h185wxuwadnlopIKIB21xZPlglILc' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
content-type: text/html; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
date: Tue, 14 Apr 2026 03:26:00 GMT
|
||||
permissions-policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
referrer-policy: strict-origin-when-cross-origin
|
||||
strict-transport-security: max-age=15552000; includeSubDomains; preload
|
||||
@@ -9,37 +9,48 @@ x-content-type-options: nosniff
|
||||
x-dns-prefetch-control: off
|
||||
x-frame-options: SAMEORIGIN
|
||||
x-xss-protection: 1; mode=block
|
||||
content-length: 2675
|
||||
content-length: 3760
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<base href="https://auth.lan.ddnsgeek.com/" />
|
||||
<meta property="csp-nonce" content="0J2hxwgybOhUvILUj8vn6TmMff992ibr" />
|
||||
<meta property="csp-nonce" content="Hy2h185wxuwadnlopIKIB21xZPlglILc" />
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<link rel="manifest" href="./manifest.json" />
|
||||
<link rel="icon" href="./favicon.ico" />
|
||||
<title></title>
|
||||
<script type="module" crossorigin src="./static/js/index.D1XP2tyz.js"></script>
|
||||
<script type="module" crossorigin src="./static/js/index.BrTK6y2i.js"></script>
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk.DlVPA22h.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/jsx-runtime.D7aLyu4y.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk-LFPYN7LY.DxuuhCLW.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.DeIApWO8.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.isFocusVisible.hAXcAUZQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.CircularProgress.Dj19OJ7X.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grid.B31PGc10.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grow.zK7PfJVW.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.LocalStorage.CPTlZvs_.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Typography.BchcjRqh.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/axios.DY6Q-zLa.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.SearchParams.Dahk4iq5.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RemoteCall.2c24izsT.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.Client.CTpzKmyn.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.UserInfo.BiOsY1vi.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.LocalStorage.D4X91p4_.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.State.clWZFebM.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/jsx-runtime.HaF00pOT.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/chunk-QFMPRPBF.DPG-QKOQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/utils.Configuration.Ds6pXNZy.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.CircularProgress.BvN3qeCu.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/fontawesome-svg-core.8FlSHMxQ.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grow.CCK1Phaa.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.NotificationsContext.DrsbCNet.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.RtlProvider.CwGalZoG.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/axios.DFSlbVw2.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.LocalStorage.B8XPN9FL.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Grid.C2MuioJD.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/mui.Typography.l1OmJPrl.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/views.LoadingPage.C6Kn8YHD.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.Routes.0nF8LvIB.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.LocalStorage.BQxI78o8.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.LanguageContext.D6E5MMoB.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.Client.C4gSbp84.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.UserInfo.B42SdIQp.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/contexts.LocalStorageMethodContext.CevqyUb7.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RemoteCall.n3Wv5Bzf.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.Configuration.BP-ZP1gK.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.QueryParam.B_9ram53.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.Redirector.arsv2TkH.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/constants.SearchParams.CVF9qGWV.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.RouterNavigate.5D7ThbL3.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/services.State.CFkWWBpw.js">
|
||||
<link rel="modulepreload" crossorigin href="./static/js/hooks.UserInfo.B0zw4WwF.js">
|
||||
<link rel="stylesheet" crossorigin href="./static/css/index.Dny_JsW-.css">
|
||||
</head>
|
||||
|
||||
|
||||
+325
-323
@@ -283,418 +283,418 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
200 GET 36l 85w 1169c https://auth.lan.ddnsgeek.com/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
200 GET 4l 50w 6215c https://auth.lan.ddnsgeek.com/favicon.ico
|
||||
200 GET 2l 4w 57c https://auth.lan.ddnsgeek.com/robots.txt
|
||||
500 GET 2l 11w 72c https://auth.lan.ddnsgeek.com/static/
|
||||
@@ -703,3 +703,5 @@ Configuration {
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Static
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Api
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/STATIC
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/12993.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/Schmitt.aspx
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -51,10 +51,10 @@ Detected Plugins:
|
||||
|
||||
HTTP Headers:
|
||||
HTTP/1.1 200 OK
|
||||
Content-Length: 2675
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-tIedqcVldv2CDv3iqRL1NPlzc11KOhAZ' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Length: 3760
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-aOLiNSFQb7YP89YdOd6eoUXxMkPFT6Cn' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Type: text/html; charset=utf-8
|
||||
Date: Sun, 05 Apr 2026 07:39:56 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:47 GMT
|
||||
Permissions-Policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
Referrer-Policy: strict-origin-when-cross-origin
|
||||
Strict-Transport-Security: max-age=15552000; includeSubDomains; preload
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Version: 2.1.5
|
||||
OpenSSL 3.5.3 16 Sep 2025
|
||||
OpenSSL 3.5.5 27 Jan 2026
|
||||
|
||||
Connected to 167.179.167.166
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
+78001
-19417
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/robots.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
@@ -283,434 +283,434 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/acme-challenge.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/browserid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/autoconfig/mail.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-developer-merchantid-domain-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/apple-app-site-association.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/assetlinks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ashrae.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/caldav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/carddav.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/coap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/change-password.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/core.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dnt-policy.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/dots.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/est.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/csvm.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ecips.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/enterprise-transport-security.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/genid.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/hoba.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/keybase.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/idp-proxy.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/http-opportunistic.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/host-meta.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jmap.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/jwks.json.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/looking-glass.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mud.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/ni.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nodeinfo.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/nfv-oauth-server-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mta-sts.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/mercure.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/oauth-authorization-server.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/matrix.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openid-federation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openorg.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/openpgpkey.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/posh.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/reload-config.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pki-validation.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/pvd.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/repute-template.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/resourcesync.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/stun-key.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/security.txt.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/thread.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/timezone.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/time.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/webfinger.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/void.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/.well-known/uma2-configuration.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/openapi.yml
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-bundle.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/image/png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-32x32.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui-standalone-preset.js
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/index.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/favicon-16x16.png
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/api/swagger-ui.css
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/text/css
|
||||
200 GET 36l 85w 1169c https://auth.lan.ddnsgeek.com/api/
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.txt
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.html
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.asp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.aspx
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments.jsp
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/api/experiments/configurations.jsp
|
||||
200 GET 4l 50w 6215c https://auth.lan.ddnsgeek.com/favicon.ico
|
||||
200 GET 2l 4w 57c https://auth.lan.ddnsgeek.com/robots.txt
|
||||
500 GET 2l 11w 72c https://auth.lan.ddnsgeek.com/static/
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[ => https://auth.lan.ddnsgeek.com/[
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/] => https://auth.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.txt => https://auth.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.html => https://auth.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].txt => https://auth.lan.ddnsgeek.com/].txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.php => https://auth.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.txt => https://auth.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].html => https://auth.lan.ddnsgeek.com/].html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.asp => https://auth.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.html => https://auth.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.php => https://auth.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].php => https://auth.lan.ddnsgeek.com/].php
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.aspx => https://auth.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].asp => https://auth.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.jsp => https://auth.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.asp => https://auth.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.aspx => https://auth.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].aspx => https://auth.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/[.jsp => https://auth.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/].jsp => https://auth.lan.ddnsgeek.com/].jsp
|
||||
200 GET 1l 10w 13406c https://auth.lan.ddnsgeek.com/locales
|
||||
301 GET 1l 2w 17c http://auth.lan.ddnsgeek.com/plain] => https://auth.lan.ddnsgeek.com/plain]
|
||||
@@ -730,4 +730,9 @@ Configuration {
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/API
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Static
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/Api
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xj.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xingzuo.jsp
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/xtranet.aspx
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/Annunci.php
|
||||
404 GET 2l 12w 64c https://auth.lan.ddnsgeek.com/STATIC
|
||||
200 GET 0l 0w 3760c https://auth.lan.ddnsgeek.com/AutoThreeUI.asp
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/.well-known/security.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:43 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:58 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
@@ -1,3 +1,22 @@
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -5,19 +24,19 @@
|
||||
+ Target Hostname: auth.lan.ddnsgeek.com
|
||||
+ Target Port: 80
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:18 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:34 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [999979] http://100.100.100.200/latest/meta-data/: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [007342] /: X-Frame-Options header is deprecated and was replaced with the Content-Security-Policy HTTP header with the frame-ancestors directive. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
|
||||
+ [007352] /: The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type. See: https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/missing-content-type-header/
|
||||
+ 7901 requests: 17 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-05 08:01:59 (GMT0) (1361 seconds)
|
||||
+ 7900 requests: 16 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-14 03:36:45 (GMT0) (611 seconds)
|
||||
---------------------------------------------------------------------------
|
||||
+ 1 host(s) tested
|
||||
|
||||
@@ -1,20 +1,40 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:43 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:26:00 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com
|
||||
Nmap scan report for auth.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:53 UTC for 712s
|
||||
Scanned at 2026-04-14 03:26:10 UTC for 240s
|
||||
|
||||
Bug in http-security-headers: no string output.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-chrono: Request times for /; avg: 5984.25ms; min: 4370.95ms; max: 8095.69ms
|
||||
|_http-chrono: Request times for /; avg: 884.10ms; min: 561.63ms; max: 1463.16ms
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
| http-vhosts:
|
||||
|_128 names had status 308
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-date: Tue, 14 Apr 2026 03:26:32 GMT; -2s from local time.
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:18 GMT; -5s from local time.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
| http-headers:
|
||||
| Location: https://auth.lan.ddnsgeek.com/
|
||||
| Date: Tue, 14 Apr 2026 03:26:49 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
@@ -22,27 +42,8 @@ PORT STATE SERVICE REASON VERSION
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-title: Did not follow redirect to https://auth.lan.ddnsgeek.com/
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
| http-headers:
|
||||
| Location: https://auth.lan.ddnsgeek.com/
|
||||
| Date: Sun, 05 Apr 2026 07:39:47 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 200
|
||||
| Redirected To: https://auth.lan.ddnsgeek.com/
|
||||
@@ -64,8 +65,7 @@ PORT STATE SERVICE REASON VERSION
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:50:46 2026 -- 1 IP address (1 host up) scanned in 723.48 seconds
|
||||
# Nmap done at Tue Apr 14 03:30:10 2026 -- 1 IP address (1 host up) scanned in 252.27 seconds
|
||||
|
||||
@@ -16,7 +16,7 @@ Detected Plugins:
|
||||
HTTP Headers:
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://auth.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:39:55 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:46 GMT
|
||||
Content-Length: 17
|
||||
Connection: close
|
||||
|
||||
@@ -73,10 +73,10 @@ Detected Plugins:
|
||||
|
||||
HTTP Headers:
|
||||
HTTP/1.1 200 OK
|
||||
Content-Length: 2675
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-gtk3aRupJO2znmjsr1WFIFHRlrXqzLDa' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Length: 3760
|
||||
Content-Security-Policy: default-src 'self'; base-uri 'self'; connect-src 'self'; frame-ancestors 'none'; frame-src 'none'; object-src 'none'; script-src 'self'; style-src 'self' 'nonce-AkEeWkqnDPAZ8YAnPXsNtFrBiXy4pPTh' 'sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU='
|
||||
Content-Type: text/html; charset=utf-8
|
||||
Date: Sun, 05 Apr 2026 07:42:53 GMT
|
||||
Date: Tue, 14 Apr 2026 03:27:00 GMT
|
||||
Permissions-Policy: accelerometer=(), autoplay=(), camera=(), display-capture=(), geolocation=(), gyroscope=(), keyboard-map=(), magnetometer=(), microphone=(), midi=(), payment=(), picture-in-picture=(), screen-wake-lock=(), sync-xhr=(), xr-spatial-tracking=(), interest-cohort=()
|
||||
Referrer-Policy: strict-origin-when-cross-origin
|
||||
Strict-Transport-Security: max-age=15552000; includeSubDomains; preload
|
||||
|
||||
@@ -1,66 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:43 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com" start="1775374723" startstr="Sun Apr 5 07:38:43 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:26:00 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/auth.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml auth.lan.ddnsgeek.com" start="1776137160" startstr="Tue Apr 14 03:26:00 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="1" services="80"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374733"/>
|
||||
<taskend task="NSE" time="1775374733"/>
|
||||
<taskbegin task="NSE" time="1775374733"/>
|
||||
<taskend task="NSE" time="1775374733"/>
|
||||
<taskbegin task="NSE" time="1775374733"/>
|
||||
<taskend task="NSE" time="1775374733"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374733"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374733"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374733"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374733"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374733"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775374733" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374738"/>
|
||||
<taskend task="Service scan" time="1775374746" extrainfo="1 service on 1 host"/>
|
||||
<taskbegin task="NSE" time="1775374746"/>
|
||||
<taskprogress task="NSE" time="1775374777" percent="73.00" remaining="12" etc="1775374788"/>
|
||||
<taskprogress task="NSE" time="1775374809" percent="96.10" remaining="3" etc="1775374812"/>
|
||||
<taskprogress task="NSE" time="1775374839" percent="98.71" remaining="2" etc="1775374840"/>
|
||||
<taskprogress task="NSE" time="1775374869" percent="99.03" remaining="2" etc="1775374870"/>
|
||||
<taskprogress task="NSE" time="1775374900" percent="99.03" remaining="2" etc="1775374902"/>
|
||||
<taskprogress task="NSE" time="1775374931" percent="99.03" remaining="2" etc="1775374933"/>
|
||||
<taskprogress task="NSE" time="1775374961" percent="99.35" remaining="2" etc="1775374962"/>
|
||||
<taskprogress task="NSE" time="1775374991" percent="99.68" remaining="1" etc="1775374992"/>
|
||||
<taskprogress task="NSE" time="1775375021" percent="99.68" remaining="1" etc="1775375022"/>
|
||||
<taskprogress task="NSE" time="1775375051" percent="99.68" remaining="1" etc="1775375052"/>
|
||||
<taskprogress task="NSE" time="1775375081" percent="99.68" remaining="2" etc="1775375082"/>
|
||||
<taskprogress task="NSE" time="1775375111" percent="99.68" remaining="2" etc="1775375112"/>
|
||||
<taskprogress task="NSE" time="1775375141" percent="99.68" remaining="2" etc="1775375142"/>
|
||||
<taskprogress task="NSE" time="1775375171" percent="99.68" remaining="2" etc="1775375172"/>
|
||||
<taskprogress task="NSE" time="1775375201" percent="99.68" remaining="2" etc="1775375202"/>
|
||||
<taskprogress task="NSE" time="1775375261" percent="99.68" remaining="2" etc="1775375263"/>
|
||||
<taskprogress task="NSE" time="1775375310" percent="99.68" remaining="2" etc="1775375312"/>
|
||||
<taskprogress task="NSE" time="1775375410" percent="99.68" remaining="3" etc="1775375412"/>
|
||||
<taskend task="NSE" time="1775375443"/>
|
||||
<taskbegin task="NSE" time="1775375443"/>
|
||||
<taskend task="NSE" time="1775375445"/>
|
||||
<taskbegin task="NSE" time="1775375445"/>
|
||||
<taskend task="NSE" time="1775375445"/>
|
||||
<host starttime="1775374733" endtime="1775375445"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137170"/>
|
||||
<taskend task="NSE" time="1776137170"/>
|
||||
<taskbegin task="NSE" time="1776137170"/>
|
||||
<taskend task="NSE" time="1776137170"/>
|
||||
<taskbegin task="NSE" time="1776137170"/>
|
||||
<taskend task="NSE" time="1776137170"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137170"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137170"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137170"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137170"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137170"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137170" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137177"/>
|
||||
<taskend task="Service scan" time="1776137188" extrainfo="1 service on 1 host"/>
|
||||
<taskbegin task="NSE" time="1776137188"/>
|
||||
<taskprogress task="NSE" time="1776137219" percent="96.12" remaining="2" etc="1776137220"/>
|
||||
<taskprogress task="NSE" time="1776137249" percent="99.68" remaining="1" etc="1776137249"/>
|
||||
<taskprogress task="NSE" time="1776137279" percent="99.68" remaining="1" etc="1776137279"/>
|
||||
<taskprogress task="NSE" time="1776137309" percent="99.68" remaining="1" etc="1776137309"/>
|
||||
<taskprogress task="NSE" time="1776137339" percent="99.68" remaining="1" etc="1776137339"/>
|
||||
<taskprogress task="NSE" time="1776137369" percent="99.68" remaining="1" etc="1776137370"/>
|
||||
<taskprogress task="NSE" time="1776137399" percent="99.68" remaining="1" etc="1776137400"/>
|
||||
<taskend task="NSE" time="1776137409"/>
|
||||
<taskbegin task="NSE" time="1776137409"/>
|
||||
<taskend task="NSE" time="1776137410"/>
|
||||
<taskbegin task="NSE" time="1776137410"/>
|
||||
<taskend task="NSE" time="1776137410"/>
|
||||
<host starttime="1776137170" endtime="1776137410"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="auth.lan.ddnsgeek.com" type="user"/>
|
||||
<hostname name="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net" type="PTR"/>
|
||||
</hostnames>
|
||||
<ports><port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-drupal-enum" output="Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)"/><script id="http-chrono" output="Request times for /; avg: 5984.25ms; min: 4370.95ms; max: 8095.69ms"/><script id="http-vhosts" output="
128 names had status 308"/><script id="http-security-headers" output=""></script><script id="http-wordpress-users" output="[Error] Wordpress installation was not found. We couldn't find wp-login.php"/><script id="http-feed" output="Couldn't find any feeds."/><script id="http-date" output="Sun, 05 Apr 2026 07:39:18 GMT; -5s from local time."><elem key="date">2026-04-05T07:39:18+00:00</elem>
|
||||
<elem key="delta">-5.0</elem>
|
||||
</script><script id="http-malware-host" output="Host appears to be clean"/><script id="http-sitemap-generator" output="
 Directory structure:
 Longest directory structure:
 Depth: 0
 Dir: /
 Total files found (by extension):
 
"/><script id="http-litespeed-sourcecode-download" output="Request with null byte did not work. This web server might not be vulnerable"/><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-wordpress-enum" output="Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)"/><script id="http-csrf" output="Couldn't find any CSRF vulnerabilities."/><script id="http-stored-xss" output="Couldn't find any stored XSS vulnerabilities."/><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<ports><port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-chrono" output="Request times for /; avg: 884.10ms; min: 561.63ms; max: 1463.16ms"/><script id="http-devframework" output="Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages."/><script id="http-wordpress-users" output="[Error] Wordpress installation was not found. We couldn't find wp-login.php"/><script id="http-malware-host" output="Host appears to be clean"/><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-csrf" output="Couldn't find any CSRF vulnerabilities."/><script id="http-security-headers" output=""></script><script id="http-comments-displayer" output="Couldn't find any comments."/><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>POST</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-fetch" output="Please enter the complete path of the directory to save data in."><elem key="ERROR">Please enter the complete path of the directory to save data in.</elem>
|
||||
</script><script id="http-errors" output="Couldn't find any error pages."/><script id="http-mobileversion-checker" output="No mobile version detected."/><script id="http-jsonp-detection" output="Couldn't find any JSONP endpoints."/><script id="http-referer-checker" output="Couldn't find any cross-domain scripts."/><script id="http-headers" output="
 Location: https://auth.lan.ddnsgeek.com/
 Date: Sun, 05 Apr 2026 07:39:47 GMT
 Content-Length: 17
 Connection: close
 
 (Request type: GET)
"/><script id="http-dombased-xss" output="Couldn't find any DOM based XSS."/><script id="http-comments-displayer" output="Couldn't find any comments."/><script id="http-useragent-tester" output="
 Status for browser useragent: 200
 Redirected To: https://auth.lan.ddnsgeek.com/
 Allowed User Agents: 
 Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
 libwww
 lwp-trivial
 libcurl-agent/1.0
 PHP/
 Python-urllib/2.5
 GT::WWW
 Snoopy
 MFC_Tear_Sample
 HTTP::Lite
 PHPCrawl
 URI::Fetch
 Zend_Http_Client
 http client
 PECL::HTTP
 Wget/1.13.4 (linux-gnu)
 WWW-Mechanize/1.34"><elem key="Status for browser useragent">200</elem>
|
||||
</script><script id="http-vhosts" output="
128 names had status 308"/><script id="http-date" output="Tue, 14 Apr 2026 03:26:32 GMT; -2s from local time."><elem key="date">2026-04-14T03:26:32+00:00</elem>
|
||||
<elem key="delta">-2.0</elem>
|
||||
</script><script id="http-dombased-xss" output="Couldn't find any DOM based XSS."/><script id="http-errors" output="Couldn't find any error pages."/><script id="http-feed" output="Couldn't find any feeds."/><script id="http-jsonp-detection" output="Couldn't find any JSONP endpoints."/><script id="http-headers" output="
 Location: https://auth.lan.ddnsgeek.com/
 Date: Tue, 14 Apr 2026 03:26:49 GMT
 Content-Length: 17
 Connection: close
 
 (Request type: GET)
"/><script id="http-mobileversion-checker" output="No mobile version detected."/><script id="http-drupal-enum" output="Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)"/><script id="http-litespeed-sourcecode-download" output="Request with null byte did not work. This web server might not be vulnerable"/><script id="http-wordpress-enum" output="Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)"/><script id="http-fetch" output="Please enter the complete path of the directory to save data in."><elem key="ERROR">Please enter the complete path of the directory to save data in.</elem>
|
||||
</script><script id="http-sitemap-generator" output="
 Directory structure:
 Longest directory structure:
 Depth: 0
 Dir: /
 Total files found (by extension):
 
"/><script id="http-referer-checker" output="Couldn't find any cross-domain scripts."/><script id="http-stored-xss" output="Couldn't find any stored XSS vulnerabilities."/><script id="http-useragent-tester" output="
 Status for browser useragent: 200
 Redirected To: https://auth.lan.ddnsgeek.com/
 Allowed User Agents: 
 Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
 libwww
 lwp-trivial
 libcurl-agent/1.0
 PHP/
 Python-urllib/2.5
 GT::WWW
 Snoopy
 MFC_Tear_Sample
 HTTP::Lite
 PHPCrawl
 URI::Fetch
 Zend_Http_Client
 http client
 PECL::HTTP
 Wget/1.13.4 (linux-gnu)
 WWW-Mechanize/1.34"><elem key="Status for browser useragent">200</elem>
|
||||
<elem key="Redirected To">https://auth.lan.ddnsgeek.com/</elem>
|
||||
<table key="Allowed User Agents">
|
||||
<elem>Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)</elem>
|
||||
@@ -81,16 +70,16 @@
|
||||
<elem>Wget/1.13.4 (linux-gnu)</elem>
|
||||
<elem>WWW-Mechanize/1.34</elem>
|
||||
</table>
|
||||
</script><script id="http-devframework" output="Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages."/></port>
|
||||
</script></port>
|
||||
</ports>
|
||||
<times srtt="14072" rttvar="14072" to="100000"/>
|
||||
<times srtt="14450" rttvar="14450" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775375446"/>
|
||||
<taskend task="NSE" time="1775375446"/>
|
||||
<taskbegin task="NSE" time="1775375446"/>
|
||||
<taskend task="NSE" time="1775375446"/>
|
||||
<taskbegin task="NSE" time="1775375446"/>
|
||||
<taskend task="NSE" time="1775375446"/>
|
||||
<runstats><finished time="1775375446" timestr="Sun Apr 5 07:50:46 2026" summary="Nmap done at Sun Apr 5 07:50:46 2026; 1 IP address (1 host up) scanned in 723.48 seconds" elapsed="723.48" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137410"/>
|
||||
<taskend task="NSE" time="1776137410"/>
|
||||
<taskbegin task="NSE" time="1776137410"/>
|
||||
<taskend task="NSE" time="1776137410"/>
|
||||
<taskbegin task="NSE" time="1776137410"/>
|
||||
<taskend task="NSE" time="1776137410"/>
|
||||
<runstats><finished time="1776137410" timestr="Tue Apr 14 03:30:10 2026" summary="Nmap done at Tue Apr 14 03:30:10 2026; 1 IP address (1 host up) scanned in 252.27 seconds" elapsed="252.27" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,49 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/auth.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml auth.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="65535" services="1-65535"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374689"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374720" percent="21.25" remaining="115" etc="1775374835"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374750" percent="30.94" remaining="137" etc="1775374886"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374780" percent="33.20" remaining="184" etc="1775374963"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374810" percent="35.88" remaining="217" etc="1775375026"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374846" percent="44.14" remaining="199" etc="1775375045"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374876" percent="50.95" remaining="180" etc="1775375056"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374906" percent="57.42" remaining="161" etc="1775375067"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374945" percent="64.73" remaining="140" etc="1775375085"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374999" percent="72.47" remaining="118" etc="1775375117"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375029" percent="80.46" remaining="83" etc="1775375112"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375059" percent="87.01" remaining="56" etc="1775375114"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375092" percent="92.43" remaining="33" etc="1775375125"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775375150" extrainfo="65535 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775375180"/>
|
||||
<taskprogress task="Service scan" time="1775375450" percent="66.67" remaining="136" etc="1775375585"/>
|
||||
<taskend task="Service scan" time="1775375973" extrainfo="3 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775375981"/>
|
||||
<taskend task="Traceroute" time="1775375981"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775375981"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775375983"/>
|
||||
<taskbegin task="NSE" time="1775375983"/>
|
||||
<taskend task="NSE" time="1775375990"/>
|
||||
<taskbegin task="NSE" time="1775375990"/>
|
||||
<taskend task="NSE" time="1775375993"/>
|
||||
<taskbegin task="NSE" time="1775375993"/>
|
||||
<taskend task="NSE" time="1775375993"/>
|
||||
<host starttime="1775374690" endtime="1775375993"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137123"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137154" percent="22.18" remaining="109" etc="1776137263"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137184" percent="30.61" remaining="139" etc="1776137322"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137214" percent="35.35" remaining="167" etc="1776137380"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137244" percent="39.84" remaining="183" etc="1776137427"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137352" percent="37.24" remaining="386" etc="1776137738"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137433" percent="46.64" remaining="355" etc="1776137788"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137478" percent="52.50" remaining="322" etc="1776137799"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137517" percent="57.93" remaining="287" etc="1776137803"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137556" percent="63.35" remaining="251" etc="1776137806"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137592" percent="68.53" remaining="216" etc="1776137807"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137622" percent="73.83" remaining="177" etc="1776137799"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137661" percent="79.08" remaining="143" etc="1776137803"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137700" percent="84.46" remaining="107" etc="1776137806"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137739" percent="89.68" remaining="71" etc="1776137810"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137775" percent="94.68" remaining="37" etc="1776137812"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137813" extrainfo="65535 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137813"/>
|
||||
<taskend task="Service scan" time="1776137826" extrainfo="3 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776137831"/>
|
||||
<taskend task="Traceroute" time="1776137831"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776137831"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776137831"/>
|
||||
<taskbegin task="NSE" time="1776137832"/>
|
||||
<taskend task="NSE" time="1776137837"/>
|
||||
<taskbegin task="NSE" time="1776137837"/>
|
||||
<taskend task="NSE" time="1776137838"/>
|
||||
<taskbegin task="NSE" time="1776137838"/>
|
||||
<taskend task="NSE" time="1776137838"/>
|
||||
<host starttime="1776137123" endtime="1776137838"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="auth.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -52,15 +54,16 @@
|
||||
<ports><extraports state="filtered" count="65531">
|
||||
<extrareasons reason="no-response" count="65531" proto="tcp" ports="1-79,81-442,444-20000,20002-51412,51414-65535"/>
|
||||
</extraports>
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>POST</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script></port>
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="ssl-cert" output="Subject: commonName=auth.lan.ddnsgeek.com
Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-17T12:05:51
Not valid after: 2026-05-18T12:05:50
MD5: 565a be76 729e 2ae6 38f1 7507 cd4b 29ee
SHA-1: 0cea 72f6 b5ce 93dc 5f07 c4f4 53fe 4735 6ca5 c8f9
SHA-256: 2414 ee18 1b20 805e c679 af20 d3ba 2f04 93fb b7f2 5137 5b0a 66b2 064c 211a 72f8
-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Site doesn't have a title (text/html; charset=utf-8)."><elem key="title"></elem>
|
||||
</script><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="ssl-cert" output="Subject: commonName=auth.lan.ddnsgeek.com
Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-17T12:05:51
Not valid after: 2026-05-18T12:05:50
MD5: 565a be76 729e 2ae6 38f1 7507 cd4b 29ee
SHA-1: 0cea 72f6 b5ce 93dc 5f07 c4f4 53fe 4735 6ca5 c8f9
SHA-256: 2414 ee18 1b20 805e c679 af20 d3ba 2f04 93fb b7f2 5137 5b0a 66b2 064c 211a 72f8
-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">auth.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
@@ -127,48 +130,45 @@
|
||||
<elem key="sha1">0cea72f6b5ce93dc5f07c4f453fe47356ca5c8f9</elem>
|
||||
<elem key="sha256">2414ee181b20805ec679af20d3ba2f0493fbb7f251375b0a66b2064c211a72f8</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="http-methods" output="
 Supported Methods: GET HEAD OPTIONS"><table key="Supported Methods">
|
||||
</script><script id="http-favicon" output="Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0"/><script id="http-methods" output="
 Supported Methods: GET HEAD OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-favicon" output="Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0"/><script id="http-trane-info" output="Problem with XML parsing of /evox/about"/><script id="http-title" output="Site doesn't have a title (text/html; charset=utf-8)."><elem key="title"></elem>
|
||||
</script></port>
|
||||
</script><script id="http-trane-info" output="Problem with XML parsing of /evox/about"/></port>
|
||||
<port protocol="tcp" portid="20001"><state state="closed" reason="reset" reason_ttl="57"/><service name="microsan" method="table" conf="3"/></port>
|
||||
<port protocol="tcp" portid="51413"><state state="open" reason="syn-ack" reason_ttl="56"/><service name="unknown" servicefp="SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D21495%P=x86_64-pc-linux-gnu%r(TLSSessionReq,1EC,"<\xd9\xbc\xf4\x8eK\x95\xae/4H\x11\xdcP\x99\x82\xa3I\xe8\xf3N'\?\x93~\xf5/\x82\x821\x85\x08p\x99\xe8{\x08\x89\xe6\xf4\x1c\xd4\xe3k\x18\x89\x02\xbbT\x16Jzh\xf5@\xe4m\xa6\xc4\x13\x06\xbd\xd5lS\xf9\xd5\x85\x86\xdc\x9b\xd7aKX\xb8\xc9O\xfd\xf1\x13\x8c\x1f#r5\xf4\x88\x85M9K\x1a\x9f\x0f\xcf\x0c\xa3\xd0\x9d\xc91\xd3\xf7d\x0erB\(`\x87\xcf;!\xc3\xedZ\xd5\xfa\x83\xc1\xd1\?@s\xf4'\xc8S\|\x9e\xff\xab\xe3\x0c\x83\x8a\x9d\xe1Gb\x8e\xb2a\xb0c4\xf6D%\xc2\x92\x90\x1d\xe0\xd8\x90S\xce\xdb\x04R\x04\x01\xb2\x96\x9a\xf6\x89\x04\x04\xc4\xb9\x9cs8\x96\xf0\x91\xfc\|hf\x01\x89\xb6a\x0c\xb7\xed1\xb8M\xd0\xb8\xa8\xdb/\x07G\xa3\xc8\xd3\*\x88\xe1\)\x19\xe5q>\x12\n\x9f\xc1\xc2\x8f\|H\x11\^\x08!5\t\xa9{\x08\x13\$\x0c\xe1\x94\xef\xeb\x05\xe1Z\x0b#f\xae\xfdm\xa8\$\xfd\xbf\xf2\x15e\.\x9a\xf3\x1e\xdfd\x82\xd8dn\xadc\0;z\xfb\x96Si\xeb\)jY\xa68\xc5\x16'\]\xb6\x85\x08\xd2\xb9w\xe6\xe7\xeaZ\x93\x18/_\xf0\xc4ap\x01\xd1\xbdq\xfe\x01>\xcf\xfe\xb8\xabb&\)`\x7fg\xd5\xed\*\xef-\xf7\xca\xb1\x9c\xe8\x97\xfa\x88\xbc\xfb\xb0\xa8\x1f\xc4\x16m\xb7\xad\x84\xe8\x02\x11\r\xb7y\xfe\xac\xbc\x15\x04%\xd96U\t\xb6;\x12\xec\x0e\x82\xe0\x08F\x08z\x87\xbci\xaa\xe7\xea\xc84\x1e\)\x089=\xd75\xae\xd6\x08\xf1\xa6\]\x9em\xfe\xebt\xaav\x9e\xeao\x8b\xceH\xb6c\x1e\xcc\xda\x85\x88\\~\x86O\xaf\n\xa9\x90\nw\xe8\xa3\x9b\x1eZ\xab\x9b\x9a\x1d7\xd0!\xfd\x19\xeb\[r\xe2\xfa\[\xdaH\xb5\xe6'\xe9\x0b\]{pNX\xe2U\xbb\xdd\xe0\xec\x8d\xc1\xe8h\xae\xec\xcc\xf76\x97o\xcd\xf2\]5\x10\xee\x9a\xa1\x0f\x1e\x8dD\x82\xb5\x9f\xd0\x1a\xbc\x0cHr~\xc5\x13T\xe7")%r(SSLv23SessionReq,1FB,"\xfc7\xb1\xde\xdb\xe6\xb9\xf0\x83&\xd2gGrOj\xba\xb8jK\xc3\xa99\xfe\xf3d8#-\xc8\x07\xb2\.\xea\xd0\xc9\xcb&nd\xc4kX\x90\xeaa\xf3-\xc8\xcd\xdc!\xfe\xa2\xe1V\xcf\xb2H\x8d'>`\xe3\xad\xca\xa7W\x11\x86\xff\|\xc2TJ\xbf\[i\x9c\x08\xe0,\xb9r\xb4\x07\x8d\x1f\xbe\x8fRN\xe7\xfd@\x02y\x10t\xb3\x02\x9f\x08\x9a\x89w\x88:\xebe\x20e\x02\xae\xdd\x83e\x16\xd9\tU\xda\x08s6\x11\x84\xfb\xd1B\xd0\xc1\x07\x99\xba\xe2\xb6\xb0\xa2\x98O\xd6/\xc5-k#\xff\r\xdd\xa6\xdd;\xfbY\x0e\xb4n\x957\xe2w\({\xf9\xf7\xc0\xc2d/%b\xa5\xd1\xfc\xc7\xfa\xbfW\xa0\xc9S\xa93M\xbf\xef\xec\xe2\x04\xcao`\xf8\xe0&\xcc~\x17\\\xb2S\x9b\x92k\x84\xc7}\]g\xf2\xcb\t\xdfA5\xc1\xf9\x8c\xb9\x20\x9c\x1a\xa5n\xfc\\\xecl\x01\xacW4\(U6\x07B`\x9d\xff\x06\xbc\x0c\xb1\xbb\x9f\x12\xf9\xd2\xb3\xcdC\xff\x93\rL!\xb3\xc3g\xa7\x893\xebZXs\|/\xf6,p\xe6B\x08=\0\xb5K\xe50\xef\xfe\xb8o\xb4H\x98\xc2L`EV\x8b\xc0\xb8h\xe6\xdb\x01\xdf\x92\xd1\xaf\xe4\xb1\x97\x01\xe7\)\xec\x01t\xa0\xe2\xef&\x8a\x16r\xc0\xb8\xc7\x18\x17\x12\r=\n\xdd\x8eU\[M\xeffO\xfaG\xce\x80\xe4\x1aF\xfb\xc0Z\x1aaX\xfa\x07\xfb\x86\x9d\x97\^\x19\xd0\x98l\x01\xb9U\xdbJ\xec\xf8\x995\)\x8d\x1c`c\xeb\xbf\x9aHgC\x13\xcd\x8c\xfd\x19\x9e\]\xed\x9c\xa0\xb4\xb7\xf84\x05\^\x99\*\xcd\xf1\x1f\xffq\x08\x0f\x99\xc1\x16\xa5\x99,\xce@\xbcw\xd0\xb2\x0e\[\xa5\xcb\xdb\xdc\x1eV8\x07\xe9\xf4P\x8bT\xcc\x9b:6\xb1@\xd3=\xddN\|p\x97\xc1\x03f`\xce\x04\xdc\x83ZB\xb6\x1b\xac0D\xfb\xedB\xa16G\x9b\[\xf0\xa9\xba\x8ej\0f\xcc\x1bX\$\xdaj-\xe2\xdat\x14x\x8d\xdb\xbd\xffu\]S\x12\xe1:\xe9\0\xdfAK\x03TR");" method="table" conf="3"/><script id="fingerprint-strings" output="
 SSLv23SessionReq: 
 gGrOj
 d8#-
 d/%b
 \xb2S
 \xecl
 W4(U6
 ZXs|/
 L`EV
 TLSSessionReq: 
 rB(`
 b&)`
 ]{pNX"><elem key="SSLv23SessionReq">
 gGrOj
 d8#-
 d/%b
 \xb2S
 \xecl
 W4(U6
 ZXs|/
 L`EV</elem>
|
||||
<elem key="TLSSessionReq">
 rB(`
 b&)`
 ]{pNX</elem>
|
||||
</script></port>
|
||||
<port protocol="tcp" portid="51413"><state state="open" reason="syn-ack" reason_ttl="56"/><service name="tcpwrapped" method="probed" conf="8"/></port>
|
||||
</ports>
|
||||
<os><portused state="open" proto="tcp" portid="80"/>
|
||||
<portused state="closed" proto="tcp" portid="20001"/>
|
||||
<osmatch name="Linux 4.19 - 5.15" accuracy="87" line="70666">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:4</cpe></osclass>
|
||||
<osmatch name="Linux 5.4" accuracy="86" line="72822">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="86"><cpe>cpe:/o:linux:linux_kernel:5.4</cpe></osclass>
|
||||
</osmatch>
|
||||
<osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21679%P=x86_64-pc-linux-gnu)
SEQ(SP=101%GCD=1%ISR=109%TI=Z%TS=A)
SEQ(SP=FE%GCD=1%ISR=10C%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=NNT11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=1FA)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=N)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=N)
T5(R=Y%DF=Y%TG=40%W=1FB%S=O%A=O%F=A%O=NNT11%RD=0%Q=)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
"/>
|
||||
<osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB66E%P=x86_64-pc-linux-gnu)
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
SEQ(SP=105%GCD=1%ISR=106%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=N)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=N)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<uptime seconds="1462921" lastboot="Thu Mar 19 09:37:52 2026"/>
|
||||
<uptime seconds="4291199" lastboot="Mon Feb 23 11:37:19 2026"/>
|
||||
<distance value="8"/>
|
||||
<tcpsequence index="254" difficulty="Good luck!" values="4002D643,FFADA68A,39122E37,739E8AEA,22FC6123,B3EA4635"/>
|
||||
<tcpsequence index="261" difficulty="Good luck!" values="4CAAFF91,4BD2A634,AB03AE1A,CA317A39,BCAF23A3,52283EE"/>
|
||||
<ipidsequence class="All zeros" values="0,0,0,0,0,0"/>
|
||||
<tcptssequence class="1000HZ" values="57322E89,57322EF8,57322F5D,57322FC4,57323029,57323093"/>
|
||||
<tcptssequence class="1000HZ" values="FFC65D90,FFC65DF6,FFC65E60,FFC65EC4,FFC65F28,FFC65F8D"/>
|
||||
<trace port="20001" proto="tcp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.10"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.26"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="3.72"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.49" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="45.127.173.7" rtt="4.22" host="4764.syd.equinix.com"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.69"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="12.72"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="13.49" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.11"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.12" rtt="0.29"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="10.27"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.102" rtt="39.85" host="lo0-0.gw2.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="45.127.173.7" rtt="2.44" host="4764.syd.equinix.com"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.62"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="12.51"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="17.58" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
</trace>
|
||||
<times srtt="18069" rttvar="4768" to="100000"/>
|
||||
<times srtt="16343" rttvar="1643" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775375993"/>
|
||||
<taskend task="NSE" time="1775375993"/>
|
||||
<taskbegin task="NSE" time="1775375993"/>
|
||||
<taskend task="NSE" time="1775375993"/>
|
||||
<taskbegin task="NSE" time="1775375993"/>
|
||||
<taskend task="NSE" time="1775375993"/>
|
||||
<runstats><finished time="1775375994" timestr="Sun Apr 5 07:59:54 2026" summary="Nmap done at Sun Apr 5 07:59:54 2026; 1 IP address (1 host up) scanned in 1308.17 seconds" elapsed="1308.17" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137838"/>
|
||||
<taskend task="NSE" time="1776137838"/>
|
||||
<taskbegin task="NSE" time="1776137838"/>
|
||||
<taskend task="NSE" time="1776137838"/>
|
||||
<taskbegin task="NSE" time="1776137838"/>
|
||||
<taskend task="NSE" time="1776137838"/>
|
||||
<runstats><finished time="1776137838" timestr="Tue Apr 14 03:37:18 2026" summary="Nmap done at Tue Apr 14 03:37:18 2026; 1 IP address (1 host up) scanned in 717.97 seconds" elapsed="717.97" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,36 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/auth.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml auth.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="1000" services="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,443-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3006,3011,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5985-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374689"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775374693" extrainfo="1000 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374694"/>
|
||||
<taskend task="Service scan" time="1775374706" extrainfo="2 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775374710"/>
|
||||
<taskend task="Traceroute" time="1775374710"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775374710"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775374713"/>
|
||||
<taskbegin task="NSE" time="1775374713"/>
|
||||
<taskend task="NSE" time="1775374718"/>
|
||||
<taskbegin task="NSE" time="1775374718"/>
|
||||
<taskend task="NSE" time="1775374719"/>
|
||||
<taskbegin task="NSE" time="1775374719"/>
|
||||
<taskend task="NSE" time="1775374719"/>
|
||||
<host starttime="1775374690" endtime="1775374719"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137123"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137128" extrainfo="1000 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137129"/>
|
||||
<taskend task="Service scan" time="1776137141" extrainfo="2 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776137145"/>
|
||||
<taskend task="Traceroute" time="1776137145"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776137145"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776137146"/>
|
||||
<taskbegin task="NSE" time="1776137146"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<taskbegin task="NSE" time="1776137151"/>
|
||||
<taskend task="NSE" time="1776137152"/>
|
||||
<taskbegin task="NSE" time="1776137152"/>
|
||||
<taskend task="NSE" time="1776137152"/>
|
||||
<host starttime="1776137123" endtime="1776137152"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="auth.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -39,15 +39,21 @@
|
||||
<ports><extraports state="filtered" count="998">
|
||||
<extrareasons reason="no-response" count="998" proto="tcp" ports="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79,81-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,444-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3006,3011,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5985-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
|
||||
</extraports>
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>POST</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-title" output="Did not follow redirect to https://auth.lan.ddnsgeek.com/"><elem key="redirect_url">https://auth.lan.ddnsgeek.com/</elem>
|
||||
</script></port>
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="ssl-cert" output="Subject: commonName=auth.lan.ddnsgeek.com
Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-17T12:05:51
Not valid after: 2026-05-18T12:05:50
MD5: 565a be76 729e 2ae6 38f1 7507 cd4b 29ee
SHA-1: 0cea 72f6 b5ce 93dc 5f07 c4f4 53fe 4735 6ca5 c8f9
SHA-256: 2414 ee18 1b20 805e c679 af20 d3ba 2f04 93fb b7f2 5137 5b0a 66b2 064c 211a 72f8
-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Site doesn't have a title (text/html; charset=utf-8)."><elem key="title"></elem>
|
||||
</script><script id="http-trane-info" output="Problem with XML parsing of /evox/about"/><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="http-methods" output="
 Supported Methods: GET HEAD OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="ssl-cert" output="Subject: commonName=auth.lan.ddnsgeek.com
Subject Alternative Name: DNS:auth.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-17T12:05:51
Not valid after: 2026-05-18T12:05:50
MD5: 565a be76 729e 2ae6 38f1 7507 cd4b 29ee
SHA-1: 0cea 72f6 b5ce 93dc 5f07 c4f4 53fe 4735 6ca5 c8f9
SHA-256: 2414 ee18 1b20 805e c679 af20 d3ba 2f04 93fb b7f2 5137 5b0a 66b2 064c 211a 72f8
-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">auth.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
@@ -114,73 +120,67 @@
|
||||
<elem key="sha1">0cea72f6b5ce93dc5f07c4f453fe47356ca5c8f9</elem>
|
||||
<elem key="sha256">2414ee181b20805ec679af20d3ba2f0493fbb7f251375b0a66b2064c211a72f8</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
MIIGBDCCBOygAwIBAgISBk/16mQkIXvFoWcQhg/6y6GcMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwMjE3MTIwNTUxWhcNMjYwNTE4MTIwNTUwWjAgMR4wHAYDVQQD
ExVhdXRoLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDQ6Bhmvqm4RXYUmaWxX/thVxodVG/FsvgNNN789Dgsn44JEcflvYUx
uzpvjR+TG0344WijBVvMlYz289NPg1XeLtXu4AVX0Kx/jHao3lhKcA8bxwvKTHAb
Ut/FmvEAggJK4apqNgiugpeaPiM6VJrUfyoZ9nsqD53uRksEWlFFas4sv0N3p9Zb
zAp4VwgXB9VXwiAc1sYdUdLgG2BDzWhrL+rhAySEb0whgVPmlh41BIM1PslU018z
hsBhpiow/Jwv4y3XR7RBMkS3sjjyzLPWQIealv/Nuo7wl49iIMnoyGUt0wo7uPSI
AJ7VQ5Sp4BEIi+jjVNoBt7ggSAXgKrCtTlDEzF6km1x8RJabobnekJCqw/e48scT
L+K9F5ZRyCTMogc/CnrpAEq/RCSHcHzEd7byrb61KZOzQsBg2L33U+dvfGTWUKPx
PQQMV06XZ5ODDob5saEPdmIFNcMjd5to3c5ZTyV2nUjJpiuY6RLtp18hkrmDcvAV
8GAyYuPesU+jOmddS8ryv/okKK9PqquqIMNHAtMPnGnh0ChRv6TqzqXuT9id4jac
11UGLnJoXg1ipwCJrKVNpjnlqFjLEYd1xFk0ABHjoZDtmcc55PAR0IRMSLQthJKO
I9saR8akKvbKiogM8r5paLANIxUrAZj5mSCF1CvUdAtwodVyK2c+GwIDAQABo4IC
IzCCAh8wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFHubaXNi7rQMdZRbA+O9z7Oha85GMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVYXV0aC5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMjkuY3JsMIIBDAYKKwYBBAHW
eQIEAgSB/QSB+gD4AH4Apcl4kl1XRheChw3YiWYLXFVki30AQPLsB2hR0YhpGfcA
AAGca7OpDQAIAAAFADKAGfAEAwBHMEUCIQD0V00XYj+VVhDg8oyZ4jS5qW0zFNCW
hIdt+6DMLsVQOwIgC5jrVtBONxUNKe6HrdKlXvNxADd8RH9oLTpE6sJDGBwAdgBk
EcRspBLsp4kcogIuALyrTygH1B41J6vq/tUDyX3N8AAAAZxrs7A2AAAEAwBHMEUC
IESAD5mBzVfi5Kwpd+sUvznFN2T9J+WrGoKxtrL50b5UAiEAuHUI2uMUrzD3+vrc
4W9M4J8d1YnZw7HU8q6aghek3hUwDQYJKoZIhvcNAQELBQADggEBAGgimlul3apt
r+eGzZj9R29G4w3KCIKUtOR12nOHRDH9L6d8l4c15Ug4d1jWXUP8o+0chi8mK3Sh
EsLAgInZmCb0qWRe4rC7rwYwPs8iNg1e5d71tPTs/CIU0V7zjccZFZgS80O06ZqB
Y2rwkt1Hi+Y86FGLwJosp/rj3FI1D/bD/NucAwzzHd7NJDBt8roRXVfAbreRhpZQ
1YRr3ANJkJgNJOjRR2EJ/dtcnG45V9GLk/3RqZCWL+H5gALiDDCY8KVIj/ou7/Gf
NG280k5ZPfGC4wiIwN0JpANUY2NPPnhMsi4E9aQpsVcED2nhjbdVBvd24Yh7rXL/
d40SNPCo/V8=
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="http-favicon" output="Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0"/><script id="http-title" output="Site doesn't have a title (text/html; charset=utf-8)."><elem key="title"></elem>
|
||||
</script><script id="http-trane-info" output="Problem with XML parsing of /evox/about"/><script id="http-methods" output="
 Supported Methods: GET HEAD OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script></port>
|
||||
</script><script id="http-favicon" output="Unknown favicon MD5: 93AEC1FCC7DC8E261CAC2F90C6788BD0"/></port>
|
||||
</ports>
|
||||
<os><portused state="open" proto="tcp" portid="80"/>
|
||||
<osmatch name="Linux 4.15 - 5.19" accuracy="93" line="70534">
|
||||
<osmatch name="Linux 4.15 - 5.19" accuracy="93" line="71007">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:4</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 4.19" accuracy="93" line="70644">
|
||||
<osmatch name="Linux 4.19" accuracy="93" line="71117">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:4.19</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.0 - 5.14" accuracy="93" line="71713">
|
||||
<osmatch name="Linux 5.0 - 5.14" accuracy="93" line="72205">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="OpenWrt 21.02 (Linux 5.4)" accuracy="93" line="72530">
|
||||
<osmatch name="OpenWrt 21.02 (Linux 5.4)" accuracy="93" line="73083">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5.4</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3)" accuracy="93" line="91792">
|
||||
<osmatch name="MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3)" accuracy="93" line="92909">
|
||||
<osclass type="router" vendor="MikroTik" osfamily="RouterOS" osgen="7.X" accuracy="93"><cpe>cpe:/o:mikrotik:routeros:7</cpe></osclass>
|
||||
<osclass type="router" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5.6.3</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 6.0" accuracy="92" line="72657">
|
||||
<osmatch name="Linux 6.0" accuracy="92" line="73210">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:6.0</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.4 - 5.10" accuracy="87" line="72380">
|
||||
<osmatch name="Linux 6.15" accuracy="90" line="73426">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="6.X" accuracy="90"><cpe>cpe:/o:linux:linux_kernel:6.15</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.4 - 5.10" accuracy="87" line="72914">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.32" accuracy="87" line="58659">
|
||||
<osmatch name="Linux 2.6.32" accuracy="87" line="59132">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:2.6.32</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.32 - 3.13" accuracy="87" line="59907">
|
||||
<osmatch name="Linux 2.6.32 - 3.13" accuracy="87" line="60380">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 3.10" accuracy="87" line="66222">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:3.10</cpe></osclass>
|
||||
</osmatch>
|
||||
<osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D2117F%P=x86_64-pc-linux-gnu)
SEQ(SP=105%GCD=2%ISR=10B%TI=Z%TS=A)
SEQ(SP=108%GCD=1%ISR=10E%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
U1(R=N)
IE(R=N)
"/>
|
||||
<osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3C0%P=x86_64-pc-linux-gnu)
SEQ(SP=105%GCD=1%ISR=107%TI=Z%TS=A)
SEQ(SP=107%GCD=1%ISR=10E%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<uptime seconds="1461647" lastboot="Thu Mar 19 09:37:52 2026"/>
|
||||
<uptime seconds="4290512" lastboot="Mon Feb 23 11:37:20 2026"/>
|
||||
<distance value="8"/>
|
||||
<tcpsequence index="264" difficulty="Good luck!" values="E28C770A,E8233B1B,6591532C,A52CF376,88FE55E,84638AC5"/>
|
||||
<tcpsequence index="261" difficulty="Good luck!" values="93F2A3F2,DC399352,CFAEF994,C25A02E3,95D1D68F,FBDD454B"/>
|
||||
<ipidsequence class="All zeros" values="0,0,0,0,0,0"/>
|
||||
<tcptssequence class="1000HZ" values="571ECFB5,571ED019,571ED07D,571ED0E1,571ED145,571ED1A9"/>
|
||||
<tcptssequence class="1000HZ" values="FFBBE809,FFBBE86D,FFBBE8D1,FFBBE936,FFBBE99A,FFBBE9FE"/>
|
||||
<trace port="443" proto="tcp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.08"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.12" rtt="0.18"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="1.24"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.102" rtt="0.40" host="lo0-0.gw2.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="3.37" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.62"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="12.81"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="14.27" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.13"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.24"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="5.02"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.35" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="2.40" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.67"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.26" rtt="12.52"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="14.40" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
</trace>
|
||||
<times srtt="14375" rttvar="243" to="100000"/>
|
||||
<times srtt="14473" rttvar="476" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775374719"/>
|
||||
<taskend task="NSE" time="1775374719"/>
|
||||
<taskbegin task="NSE" time="1775374719"/>
|
||||
<taskend task="NSE" time="1775374719"/>
|
||||
<taskbegin task="NSE" time="1775374719"/>
|
||||
<taskend task="NSE" time="1775374719"/>
|
||||
<runstats><finished time="1775374719" timestr="Sun Apr 5 07:38:39 2026" summary="Nmap done at Sun Apr 5 07:38:39 2026; 1 IP address (1 host up) scanned in 33.75 seconds" elapsed="33.75" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137152"/>
|
||||
<taskend task="NSE" time="1776137152"/>
|
||||
<taskbegin task="NSE" time="1776137152"/>
|
||||
<taskend task="NSE" time="1776137152"/>
|
||||
<taskbegin task="NSE" time="1776137152"/>
|
||||
<taskend task="NSE" time="1776137152"/>
|
||||
<runstats><finished time="1776137152" timestr="Tue Apr 14 03:25:52 2026" summary="Nmap done at Tue Apr 14 03:25:52 2026; 1 IP address (1 host up) scanned in 31.66 seconds" elapsed="31.66" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,66 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/auth.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/auth.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml auth.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="udp" protocol="udp" numservices="100" services="7,9,17,19,49,53,67-69,80,88,111,120,123,135-139,158,161-162,177,427,443,445,497,500,514-515,518,520,593,623,626,631,996-999,1022-1023,1025-1030,1433-1434,1645-1646,1701,1718-1719,1812-1813,1900,2000,2048-2049,2222-2223,3283,3456,3703,4444,4500,5000,5060,5353,5632,9200,10000,17185,20031,30718,31337,32768-32769,32771,32815,33281,49152-49154,49156,49181-49182,49185-49186,49188,49190-49194,49200-49201,65024"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="UDP Scan" time="1775374689"/>
|
||||
<taskend task="UDP Scan" time="1775374701" extrainfo="100 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374701"/>
|
||||
<taskprogress task="Service scan" time="1775374799" percent="1.00" remaining="9702" etc="1775384501"/>
|
||||
<taskprogress task="Service scan" time="1775374897" percent="31.00" remaining="437" etc="1775375333"/>
|
||||
<taskprogress task="Service scan" time="1775374996" percent="61.00" remaining="189" etc="1775375185"/>
|
||||
<taskprogress task="Service scan" time="1775375100" percent="91.00" remaining="40" etc="1775375139"/>
|
||||
<taskend task="Service scan" time="1775375105" extrainfo="100 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775375119"/>
|
||||
<taskend task="Traceroute" time="1775375128"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775375128"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775375129"/>
|
||||
<taskbegin task="NSE" time="1775375131"/>
|
||||
<taskprogress task="NSE" time="1775375167" percent="74.11" remaining="13" etc="1775375180"/>
|
||||
<taskprogress task="NSE" time="1775375443" percent="84.73" remaining="57" etc="1775375499"/>
|
||||
<taskprogress task="NSE" time="1775375473" percent="91.25" remaining="33" etc="1775375506"/>
|
||||
<taskprogress task="NSE" time="1775375503" percent="99.24" remaining="3" etc="1775375506"/>
|
||||
<taskprogress task="NSE" time="1775375533" percent="99.36" remaining="3" etc="1775375536"/>
|
||||
<taskprogress task="NSE" time="1775375563" percent="99.39" remaining="3" etc="1775375566"/>
|
||||
<taskprogress task="NSE" time="1775375593" percent="99.41" remaining="3" etc="1775375596"/>
|
||||
<taskprogress task="NSE" time="1775375623" percent="99.44" remaining="3" etc="1775375626"/>
|
||||
<taskprogress task="NSE" time="1775375653" percent="99.47" remaining="3" etc="1775375656"/>
|
||||
<taskprogress task="NSE" time="1775375683" percent="99.50" remaining="3" etc="1775375686"/>
|
||||
<taskprogress task="NSE" time="1775375713" percent="99.53" remaining="3" etc="1775375716"/>
|
||||
<taskprogress task="NSE" time="1775375743" percent="99.56" remaining="3" etc="1775375746"/>
|
||||
<taskprogress task="NSE" time="1775375773" percent="99.59" remaining="3" etc="1775375776"/>
|
||||
<taskprogress task="NSE" time="1775375803" percent="99.62" remaining="3" etc="1775375806"/>
|
||||
<taskprogress task="NSE" time="1775375833" percent="99.65" remaining="3" etc="1775375835"/>
|
||||
<taskprogress task="NSE" time="1775375863" percent="99.68" remaining="3" etc="1775375865"/>
|
||||
<taskprogress task="NSE" time="1775375893" percent="99.71" remaining="3" etc="1775375895"/>
|
||||
<taskprogress task="NSE" time="1775375923" percent="99.74" remaining="3" etc="1775375925"/>
|
||||
<taskprogress task="NSE" time="1775375953" percent="99.76" remaining="2" etc="1775375955"/>
|
||||
<taskprogress task="NSE" time="1775375983" percent="99.80" remaining="2" etc="1775375985"/>
|
||||
<taskprogress task="NSE" time="1775376013" percent="99.83" remaining="2" etc="1775376015"/>
|
||||
<taskprogress task="NSE" time="1775376043" percent="99.86" remaining="2" etc="1775376044"/>
|
||||
<taskprogress task="NSE" time="1775376073" percent="99.89" remaining="2" etc="1775376074"/>
|
||||
<taskprogress task="NSE" time="1775376103" percent="99.91" remaining="1" etc="1775376104"/>
|
||||
<taskprogress task="NSE" time="1775376133" percent="99.95" remaining="1" etc="1775376134"/>
|
||||
<taskprogress task="NSE" time="1775376163" percent="99.98" remaining="1" etc="1775376163"/>
|
||||
<taskend task="NSE" time="1775376182"/>
|
||||
<taskbegin task="NSE" time="1775376182"/>
|
||||
<taskend task="NSE" time="1775376190"/>
|
||||
<taskbegin task="NSE" time="1775376190"/>
|
||||
<taskend task="NSE" time="1775376190"/>
|
||||
<host starttime="1775374690" endtime="1775376190"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137123"/>
|
||||
<taskbegin task="UDP Scan" time="1776137123"/>
|
||||
<taskend task="UDP Scan" time="1776137134" extrainfo="100 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137134"/>
|
||||
<taskprogress task="Service scan" time="1776137232" percent="1.00" remaining="9702" etc="1776146934"/>
|
||||
<taskprogress task="Service scan" time="1776137330" percent="31.00" remaining="437" etc="1776137766"/>
|
||||
<taskprogress task="Service scan" time="1776137427" percent="61.00" remaining="188" etc="1776137614"/>
|
||||
<taskprogress task="Service scan" time="1776137530" percent="91.00" remaining="40" etc="1776137569"/>
|
||||
<taskend task="Service scan" time="1776137535" extrainfo="100 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776137541"/>
|
||||
<taskend task="Traceroute" time="1776137547"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776137547"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776137547"/>
|
||||
<taskbegin task="NSE" time="1776137547"/>
|
||||
<taskprogress task="NSE" time="1776137578" percent="99.31" remaining="1" etc="1776137578"/>
|
||||
<taskprogress task="NSE" time="1776137608" percent="99.34" remaining="1" etc="1776137608"/>
|
||||
<taskprogress task="NSE" time="1776137638" percent="99.37" remaining="1" etc="1776137639"/>
|
||||
<taskprogress task="NSE" time="1776137668" percent="99.40" remaining="1" etc="1776137669"/>
|
||||
<taskprogress task="NSE" time="1776137698" percent="99.43" remaining="1" etc="1776137699"/>
|
||||
<taskprogress task="NSE" time="1776137728" percent="99.46" remaining="1" etc="1776137729"/>
|
||||
<taskprogress task="NSE" time="1776137758" percent="99.49" remaining="2" etc="1776137759"/>
|
||||
<taskprogress task="NSE" time="1776137788" percent="99.51" remaining="2" etc="1776137789"/>
|
||||
<taskprogress task="NSE" time="1776137818" percent="99.54" remaining="2" etc="1776137819"/>
|
||||
<taskprogress task="NSE" time="1776137848" percent="99.56" remaining="2" etc="1776137849"/>
|
||||
<taskprogress task="NSE" time="1776137878" percent="99.59" remaining="2" etc="1776137879"/>
|
||||
<taskprogress task="NSE" time="1776137908" percent="99.62" remaining="2" etc="1776137909"/>
|
||||
<taskprogress task="NSE" time="1776137938" percent="99.65" remaining="2" etc="1776137939"/>
|
||||
<taskprogress task="NSE" time="1776137968" percent="99.68" remaining="2" etc="1776137969"/>
|
||||
<taskprogress task="NSE" time="1776137998" percent="99.71" remaining="2" etc="1776137999"/>
|
||||
<taskprogress task="NSE" time="1776138028" percent="99.74" remaining="2" etc="1776138029"/>
|
||||
<taskprogress task="NSE" time="1776138058" percent="99.76" remaining="2" etc="1776138059"/>
|
||||
<taskprogress task="NSE" time="1776138088" percent="99.79" remaining="2" etc="1776138089"/>
|
||||
<taskprogress task="NSE" time="1776138118" percent="99.82" remaining="2" etc="1776138119"/>
|
||||
<taskprogress task="NSE" time="1776138148" percent="99.85" remaining="1" etc="1776138149"/>
|
||||
<taskprogress task="NSE" time="1776138178" percent="99.88" remaining="1" etc="1776138179"/>
|
||||
<taskprogress task="NSE" time="1776138208" percent="99.91" remaining="1" etc="1776138209"/>
|
||||
<taskprogress task="NSE" time="1776138238" percent="99.94" remaining="1" etc="1776138238"/>
|
||||
<taskprogress task="NSE" time="1776138268" percent="99.96" remaining="1" etc="1776138268"/>
|
||||
<taskprogress task="NSE" time="1776138298" percent="99.99" remaining="1" etc="1776138298"/>
|
||||
<taskend task="NSE" time="1776138306"/>
|
||||
<taskbegin task="NSE" time="1776138306"/>
|
||||
<taskprogress task="NSE" time="1776138354" percent="89.43" remaining="6" etc="1776138360"/>
|
||||
<taskprogress task="NSE" time="1776138406" percent="92.16" remaining="9" etc="1776138415"/>
|
||||
<taskend task="NSE" time="1776138432"/>
|
||||
<taskbegin task="NSE" time="1776138433"/>
|
||||
<taskend task="NSE" time="1776138435"/>
|
||||
<host starttime="1776137123" endtime="1776138435"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="auth.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -70,24 +71,57 @@
|
||||
<extrareasons reason="no-response" count="100" proto="udp" ports="7,9,17,19,49,53,67-69,80,88,111,120,123,135-139,158,161-162,177,427,443,445,497,500,514-515,518,520,593,623,626,631,996-999,1022-1023,1025-1030,1433-1434,1645-1646,1701,1718-1719,1812-1813,1900,2000,2048-2049,2222-2223,3283,3456,3703,4444,4500,5000,5060,5353,5632,9200,10000,17185,20031,30718,31337,32768-32769,32771,32815,33281,49152-49154,49156,49181-49182,49185-49186,49188,49190-49194,49200-49201,65024"/>
|
||||
</extraports>
|
||||
</ports>
|
||||
<os><osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%G=N%TM=69D2173F%P=x86_64-pc-linux-gnu)
SEQ()
U1(R=N)
IE(R=N)
"/>
|
||||
<os><osmatch name="Billion 7404VGP-M ADSL router" accuracy="95" line="11636">
|
||||
<osclass type="broadband router" vendor="Billion" osfamily="embedded" accuracy="95"><cpe>cpe:/h:billion:7404vgp-m</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="NetworksAOK network monitoring applicance" accuracy="95" line="96082">
|
||||
<osclass type="firewall" vendor="NetworksAOK" osfamily="embedded" accuracy="95"/>
|
||||
</osmatch>
|
||||
<osmatch name="APC Network Management Card 3" accuracy="92" line="3338">
|
||||
<osclass type="power-device" vendor="APC" osfamily="embedded" accuracy="92"/>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.18" accuracy="92" line="52769">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:2.6.18</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.23" accuracy="92" line="55809">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:2.6.23</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.24" accuracy="92" line="55997">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:2.6.24</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.8" accuracy="92" line="62327">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:2.6.8</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Motorola AP-51xx WAP" accuracy="92" line="93641">
|
||||
<osclass type="WAP" vendor="Motorola" osfamily="embedded" accuracy="92"><cpe>cpe:/h:motorola:ap-51xx</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="VMware ESXi 5.0" accuracy="92" line="112546">
|
||||
<osclass type="specialized" vendor="VMware" osfamily="ESXi" osgen="5.X" accuracy="92"><cpe>cpe:/o:vmware:esxi:5.0</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Cyberoam UTM firewall" accuracy="91" line="21720">
|
||||
<osclass type="firewall" vendor="Cyberoam" osfamily="embedded" accuracy="91"/>
|
||||
</osmatch>
|
||||
<osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%DS=25%DC=T%G=N%TM=69DDB8C5%P=x86_64-pc-linux-gnu)
SEQ()
ECN(R=Y%DF=Y%TG=40%W=FE88%O=M5B4ST11NW7%CC=N%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=O%F=AS%RD=0%Q=)
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<distance value="25"/>
|
||||
<trace proto="icmp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.06"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.24"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="1.46"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.39" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="3.23" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.71"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="13.17"/>
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.27"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.12" rtt="0.31"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="1.95"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.36" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="2.46" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.56"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.26" rtt="12.62"/>
|
||||
<hop ttl="25" ipaddr="167.179.167.166" rtt="158.56" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
</trace>
|
||||
<times srtt="158560" rttvar="158560" to="792800"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775376191"/>
|
||||
<taskend task="NSE" time="1775376191"/>
|
||||
<taskbegin task="NSE" time="1775376191"/>
|
||||
<taskend task="NSE" time="1775376191"/>
|
||||
<taskbegin task="NSE" time="1775376191"/>
|
||||
<taskend task="NSE" time="1775376191"/>
|
||||
<runstats><finished time="1775376191" timestr="Sun Apr 5 08:03:11 2026" summary="Nmap done at Sun Apr 5 08:03:11 2026; 1 IP address (1 host up) scanned in 1505.36 seconds" elapsed="1505.36" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776138443"/>
|
||||
<taskend task="NSE" time="1776138444"/>
|
||||
<taskbegin task="NSE" time="1776138444"/>
|
||||
<taskend task="NSE" time="1776138445"/>
|
||||
<taskbegin task="NSE" time="1776138445"/>
|
||||
<taskend task="NSE" time="1776138446"/>
|
||||
<runstats><finished time="1776138447" timestr="Tue Apr 14 03:47:27 2026" summary="Nmap done at Tue Apr 14 03:47:27 2026; 1 IP address (1 host up) scanned in 1326.95 seconds" elapsed="1326.95" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
+110
-111
@@ -5,11 +5,11 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN "/root
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.020s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1959s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 984s
|
||||
Not shown: 65531 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
@@ -17,22 +17,21 @@ PORT STATE SERVICE REASON VERSION
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
| MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
| MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
| EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
| EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
| ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
| ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
| 0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -45,106 +44,105 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
| sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
| pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
| LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
| BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
| VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
| MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
| MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
| BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
| AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
| q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
| RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
| 4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
| K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
| uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
| ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
| pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
| 0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
| 6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
| tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
| ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
| EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
| MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
| BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
| YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
| I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
| eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
| AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
| e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
| VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
| TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
| pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
| zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
| S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
| t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
| IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
| DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open unknown syn-ack ttl 56
|
||||
| fingerprint-strings:
|
||||
| SSLv23SessionReq:
|
||||
| u(\xb7
|
||||
| \xd8Ee
|
||||
| 5QT4
|
||||
| $lpL~
|
||||
| 3T!;
|
||||
| F,<ny
|
||||
| =$iE
|
||||
| r:#|]
|
||||
| gj'Y
|
||||
| lyd;B
|
||||
| ,v#M
|
||||
| 0cz!
|
||||
| *d&~
|
||||
| '}O-W
|
||||
| ^wYU
|
||||
| ^Hq<
|
||||
| D5Ee
|
||||
| /aQ&
|
||||
| *P'T22
|
||||
| 6Kg~
|
||||
| 0\x17
|
||||
| *\x97
|
||||
| TLSSessionReq:
|
||||
| :7d0W
|
||||
| 4!`7
|
||||
| T@W^]%
|
||||
| O&TB
|
||||
| J>bdAp
|
||||
|_ N'qX]
|
||||
| !(IS
|
||||
| D^[D
|
||||
| LM?W
|
||||
| jz39
|
||||
|_ K6F*:+c
|
||||
1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at https://nmap.org/cgi-bin/submit.cgi?new-service :
|
||||
SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D2170C%P=x86_64-pc-linux-gnu%r(TL
|
||||
SF:SSessionReq,207,"\[\x05\xd7\[\r\x97\xb4#\xdd\xc9\xb5\xf7r\x85&\xb4\xc4z
|
||||
SF:\x89\x1b\xe5\x04\xae\xc5\x88\x87\xc6\xc1y}0\xe3Q\?I\xad\x12\t\xb4Ny\xce
|
||||
SF:5\xf7\xd4}\x93W\xa9\x81\x11\x1e\x15'\xbf\xbdB9\xb5e\x98\x0cx\x12\xd9\xc
|
||||
SF:b\xacG\x82\xb8U\x02\*\x94\xbe:7d0W\xdaub\xfc\xd7\xcb\xd4\xe0\xb3\xf2\xb
|
||||
SF:1\xff\xb0\x1e\^\xa8\xb5\x86\x1c9\x95\xa9\x15\x86\x10\xa9\x16Io\)\xa7\x9
|
||||
SF:7\x86\xf6\xec\x994!`7\xf95N\x20\xdck'\x98\xc8\x13\xf5\xe0T\\@W\^\]%\x13
|
||||
SF:\xb3\xe1\xda7\x13\x0f\xe6\x81\xc9\x87\x18}\xcd-\x99\xfd\x0f\xcd\x80\x17
|
||||
SF:\x0fC\xb0{vR\x87\xb2\xe3\x96\xac;ih\xb9\xa4\xbd\0Um4\xd1\?!\xa2\$4\x9a=
|
||||
SF:\[A\xb1\x87\xe4O&TB\xddy\x18\xb1w\x11\xbc\x89\xe4\xfcT\x90\xb2_\x8f<\x1
|
||||
SF:2\xce%O\xab\xfd3\x04\xaf\xd3n\xd6\xa1\x92c\x0e\xc2\xbb\xaf\xea\xc9\xc9n
|
||||
SF:\x1d\xd1\xd0\x84i\n\xb7\x85;\x000\x1a\xd4\xf7\x8ag\xcf\xaaJ>bdAp\xe7\x9
|
||||
SF:9M\xf4f=\xfc{\xb6Z\xdb\xc2x\xfd2Z\xd92\xad\xd6\xfeiC\x8b\xf6\x1aw\x1f9\
|
||||
SF:xa9B\x85\xc8\x82o\xc7A\x8cAe\xb9\x0f\xe8{\x7fA\xb2\x01\x9fr\x85\x98\xe8
|
||||
SF:\x1eCo\x15\x90\xda\x83\xfd\xf0\xfdN`\xfeh\xe9c\xd1>\xbc\xbe\xea_\xa1R\x
|
||||
SF:928\x84h\xaf\xdf\x83\x94\x9d\xfa\xca2~m\xae\x85\x95\x9d\xc3\.2\xdc\0\x0
|
||||
SF:7\*\?\xe9\xf0\xc94\x98/\xe9\xf8m@\xab\xf7\xd8\x85U\x1e\xdb\x8f\xaex@\xd
|
||||
SF:7\xf7\xe9\xe4K\x88\xa9\$\xc1-\xbf\xfb\xd9C\xdc\x8c\x9d8\xe0G\x83\*\xb8\
|
||||
SF:x02C\xd5l\x97\xaa\xb9\x8d\xb7\x7f\xdc\xd0\xe0\x92\x87\xaa\xe8\x99\x8e\x
|
||||
SF:bb\x20\xc8\x13\r\xcd\x01\x95\x92\x13\xe8\xfaQG\xcc\x20\xddb\xf9\xcb\x1d
|
||||
SF:\x1b\xc5\x05\xc5\x918\x13\xbc\xfe,\x0c\|\x1dz\x80\x0e\xcez\x92T\x18\xff
|
||||
SF:!a8\xde\x9b\x94\x10\^\xb0S\x06\xe36R\?\x88\xf4\x8a\x82<\)\x01\xbc\x87&\
|
||||
SF:xf3H\x9b\x1f\xdd\|\xb6\0x\x99\x19b\0N'qX\]\xe87Nu\xb2\xaa")%r(SSLv23Ses
|
||||
SF:sionReq,22A,"Y\xee\x08\x14\xde\xdd\xa9w\xbb/\x9e\(\x04/\xa4D\xdf\xf7\"\
|
||||
SF:xc0\x15;\$\*\x92o\xad\x01\x8d\xe5\xc8\x7f\x20\xaf\x80\x151\x0eZ\xaa\x96
|
||||
SF:2\xact\xfe\x98\xcc\xebu\(\\\xb7\x07\\\xd8Ee\xf7\xb1sfm\xa1\x0eY\xd1\*\x
|
||||
SF:20\x0c\xc0\xadRt\xdb5QT4\r\x02\x17\xc3\x10oo\xae\xd2\x03\x06\x84\xe9\xe
|
||||
SF:9b\xfa\x18G\x88hJ\x1d\xc8\xf3\x9e\x01\xd9\x1eT\xa3\xd0e\xba\xe5\x97k/\x
|
||||
SF:9dV\xac\xd8\xb4\xb1\xa6W2P\xf7\xf6\x12e\x84\x94\xee\x08\x94\x1e\x85\x01
|
||||
SF:;\xb3\x10\xf4\xf1{\xcb\x1bR\xa9\x8a!\xa1\xdf}\xd4\xf1k\x1e\x17\x1f\x969
|
||||
SF:I}\xfaNK=\xfbk\x0c\x9al\xfe\x03j\xdf\xbb\x9b`\xd8\xf9\x99\xbf\$lpL~\xf7
|
||||
SF:G}\x9e3T!;\xe9\xfdNl\x88';\x1b\x02\x9dNu1\xd2BD\)\x85\x054oH\xd4\xbb\x1
|
||||
SF:bF,<ny\x1f\x8ai\xec\xaa\xc1\xe2\xa7\xc5\]O\xceO\*\xe7m\x10e\xa4\x10\xc1
|
||||
SF:\xd6:\xafy3\xf5Z\x95\"\r\xe88\xdd\xeb\xe5\x95\x1e\xca\x91\xf7j\xca\*\xb
|
||||
SF:4\x06\xfb\xc6\x9c\x8b\xc5l\x841\x8e\xd6\x05u\x1a\xc3\xee\xedcxq\x98\xc0
|
||||
SF:\xd9\x04\|\x03\+R1\xcb\xd2\xa2`W,\x9c\)r\xd9'\xcdl\xa9\x15\x8b\x02\xea\
|
||||
SF:xf5_\xf7,\xe0=\x9c%\xf8\xf1d\xeb\xe8bYi\x83\xc1\x84\xde@\x9bJ~\x16\xe6F
|
||||
SF:\x19D\x1f\xc8\xe2\x8d\x08\xca\.\x8b\x81\x9f\x7f\x90\xfd\x98\xad=\$iE\xe
|
||||
SF:5\xd0\x91\xc9\xa4\]\x10\xa5\xc1\0\x98\x7f\x9e\xab\t\xb2i,L\x82\xd6\xe9\
|
||||
SF:xf9\xf9\*3o\xad\xc5\xf5\xfc\xf2\xf8V\xdd&\xa6\x7f\xd1\x036\x8c\xe4\0\x1
|
||||
SF:6\xc98\x20#m\x7fX\x802\xfe\xc6\xa8\xc5/\x88t\x19\x1e\x20\x15\xa3\xe6\x0
|
||||
SF:f\x03\xba\xf9oh\x16\*-\xa2\xd9\x8bd#\xc5\xc9\xe6\x10\xa1\x89\x91\xf2B\x
|
||||
SF:c8\xe7\xdf\+mF\xae\xf7\x86\x91\xb4\xf9\x1a\xab/\xbe\x17\x18r:#\|\]\xccT
|
||||
SF:,/\xd6\xa6x\?\xd15d\x8f\x96\xca\xa4N\xf8E\xab\\\t\x9e\xda\x0f\xf3\xc8q\
|
||||
SF:xf6\x94\xfbL\x8c\xf1\xe1\x02\xb3\xe8\$\xd9\xacgP\xab\xdd\xb8\x15w\xba\x
|
||||
SF:fe\xd1\xf6\tiH\xe9p,\x18\xe7\x118\xd7\xee\xbd\x08{{\xfa\xd7B\xf2\xdb\xb
|
||||
SF:7\x13\x95}");
|
||||
Device type: general purpose
|
||||
Running (JUST GUESSING): Linux 2.6.X|3.X|4.X (90%), Microsoft Windows 2016 (88%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:microsoft:windows_server_2016 cpe:/o:linux:linux_kernel:3.10 cpe:/o:linux:linux_kernel:4
|
||||
OS fingerprint not ideal because: maxTimingRatio (1.814000e+00) is greater than 1.4
|
||||
Aggressive OS guesses: Linux 2.6.32 (90%), Microsoft Windows Server 2016 (88%), Linux 2.6.39 (86%), Linux 3.10 (86%), Linux 3.10 - 3.16 (86%), Linux 4.19 - 5.15 (85%)
|
||||
SF-Port51413-TCP:V=7.99%I=9%D=4/14%Time=69DDB59B%P=x86_64-pc-linux-gnu%r(T
|
||||
SF:LSSessionReq,166,"\xe8Ne\x9e\x1d\xbc\x8c\xc5\xc5\xb2\xa6\x10\x9e\xa9y:\
|
||||
SF:xd7\xee~\xbf!\(IS\x9a\x01\xfe\xc1~\xa2}#\x1d\xaa!\x84\x80\xcfwW\x03#a\x
|
||||
SF:b6\x9e`\xfa\x83\x06\xcd\x96M0\xb9p\x20\x7f\x99I\xd7\xef#\xdbho\xa6\xba\
|
||||
SF:xa3\xb7\*c\x8bo\xc51\xf1X\x0bm\xea\x88r\xd1\x8b=\n\x07d\xf3\x83\x16:\x8
|
||||
SF:4k\x17}%\xee8\xd1I\xf9\x16\x88#\x83>\x15\x060_\x04'\xbb\xcb\x88\xb6\x0e
|
||||
SF:\0X7\x9e\xa5\x0c\xb8D\x1c!\xd1\xc4\x0bv\x17\x88B\xff%\xcc\xdauL\xe4\x82
|
||||
SF:\xc6\xc0\x1dJ\xe6\xbeX\xedI\xb5\xad2\$\xc6D\^\[D\xb1\"nz\xca\x9fQ\x88\x
|
||||
SF:f2\x89\x94\r\x88\xa0\xa2\x97\x80\x8c\x02i\xee\xe6\xe5\xf4\x92\xaf3\xb2\
|
||||
SF:xb8\xf8LM\?W\xc8%\xb3\xe3\xf5\^\xc2\x0ev\xfds\x8f\x80h\xb9,\xf0\x92u\xb
|
||||
SF:b\\e\xdc>\x1fy\xb9\xb3jz39\xa6\x83h\xbcM\x84\xc2\x97\x1c\x90\xa8\xa6M\x
|
||||
SF:ed\x1d\)\xa0\xff\xaf\xee\$\xe2\xbc\xfeL\x9f\xdf\xaa\xc1\xda\xb3\xbb\x15
|
||||
SF:y\xc2\x8c\x0eW\xb9-\xfafd\xa8\xfas\x85\xecs\x80\r\xb2\x94\xb0\x9aK6F\*\
|
||||
SF:\:\+c\xee\x89\x0f\xa9\x94\xd3\x8b\x84dE\x05\x99,\x1dT\xab\xd3\xd1\x13\x
|
||||
SF:f5\x1e\xfe\x9c1l\xb9\xf91\x18\xbbB}\xe9Z\)\xf6q\xf5S\xca\|\xa2\x03\x05\
|
||||
SF:xe3\xcf\xd3\xfc\"\rB\.L\xf3xy\xdeS\xeb\x81\xcb\x9b=\xd7W\x9f2@")%r(SSLv
|
||||
SF:23SessionReq,255,"0\x0ep\xb8~\x15`\xa1\xb0\xc3\xdf\xbe\xe2,\x0e\xcf\xe8
|
||||
SF:gj'Y\xf0\xc0\xb9\xe7\xcf\xff\x1b\xc0\xaflyd;B\x1d\x1b\x11\.\xc1Wi\xe9\$
|
||||
SF:\x13\xe2e&\xb7\x16J\xcbe\x05\x17\xbf{\xaa<\x18\xff\x13y\xe8\x88p:\xfd\x
|
||||
SF:19\x03'\xfc\x8c\x81oZ\x1fI\xd9\xdf~\xd1&yu\0}\xf3\x99\x8ff\^\x8d\xe0\]\
|
||||
SF:xbd\(\x17\xd3\xdf\x17k\xa31=@\x1b\?\xe8\xb3\x01%PZ\xf8\xe8\x9ev\x85\xf4
|
||||
SF:\xa4_\)\x80\t\xc8s\x0f\xec\xa3S\x18\x1f\xf8\xd79\xf4\xbd\x96\xa8\x8a,v#
|
||||
SF:M\xaahH\xb6%\xeb\xfc\x16\xe20cz!\xe6\|\xb0\.Z\xe2\xac\xc7<N\xdd\*d&~\x0
|
||||
SF:e\x86T\x97\xb5\x05\xbc\xf8\x17FK\x99\xfbKQ\x03MIU\x1c\xccMx;\xfb\xf8\x8
|
||||
SF:eV\|\xde\|\x9cN\xa4\xc5`\xf3`b>\x8c\x955\x8e\x9e\xb7\xeek\xd0\xf0\x8e'}
|
||||
SF:O-W\xc7Tn\xddj\xb8Fy\x1ckE\x89\x13\x06\x1b\xc3\xbc\x13\x1c\xf3~\x08\x9a
|
||||
SF:W5\xb1\x7f\^wYU\xcf\xe8n\xdb}\x9f2Y\xd3\xf3\xe0\x99&u\x16\x8bbO\x0c\x9c
|
||||
SF:\xfd\xe4\x8f\xba\x1e\^Hq<\xf3\xf0@\xffj\x1eH\x04C\xfc\xca\x9ah\x9b\xde\
|
||||
SF:xceC\x0f\xf8f\xe0\x1c\xca\xe6t\x93\x8f\xef\xd4D5Ee\xf3\xb9\xf1E\xf2\xbf
|
||||
SF:\x8f`\|\xc6\xb8\xa9\]\xe5\xa5~#\x01\xed\x0cd\x84\x114\xd0\xe4\xa5\xcf\x
|
||||
SF:c1\x9c@\xd7Z\xaeL\xfaH\x10\x1e\x8b\xec\xd8\xd7mZ\x18\(\x8c\xcb`\xa71o\x
|
||||
SF:ec\xfeS\xa5\xc9\x9c/aQ&\xb4i\x04\*P'T22\x82\xf1\xbc\xbe\xa0,\x03\xcd\x1
|
||||
SF:8s\xa1a\xa1\xb5\xf5b\xf2\x98z\xc3T\xbf\xfe\x95&\r\x0e/\xbf\*\x82\xb0\xc
|
||||
SF:eG6\xe1\xe9u\xf1\xe4\xb0\xa1\x8e\xe3dN\xb9\x02\xe02\x17\x9d\xee\x0c\xc9
|
||||
SF:\xef\)\xe5\xfdk\xe0\)\.\t\xd5\x8b\+\x0c\xe1\x06\xcbf\[\xeb\x10\xce\x9b\
|
||||
SF:x01R\x94\x93q\xeev\xc7\*\xa5IG\x0c\"o\xe3\xc94\xe86\xf7\x89\x8e3\xfb'\x
|
||||
SF:906\x1b\xd9z\xcc6Kg~\x93\xe1\xdf\$\x12\xd2\xc2G\xc8\?y\xe9\x87\xc0\xff9
|
||||
SF:\x91\xefy\xd5\xc7\xf2\xe3\]\xdf\)S2\xc30\\\x17\x81\x03\xa4\+\x1d\xbc-L\
|
||||
SF:xec\*\\\x97\x8c\xc5\xe4\xb5\xd3S\xc9\xd6\xf2ljf\xf4~\xf7\xbc\x08\x92>zy
|
||||
SF:\xac%\xdc\"ZZ\xc4dA\x0e\x967%\xeaZO\|\x93\xfa\xad\xaf\xe0\x8fz\xa5");
|
||||
Device type: general purpose|firewall
|
||||
Running (JUST GUESSING): Microsoft Windows 10|11|2016 (89%), Fortinet embedded (86%)
|
||||
OS CPE: cpe:/o:microsoft:windows_10 cpe:/o:microsoft:windows_11 cpe:/o:microsoft:windows_server_2016 cpe:/h:fortinet:fortigate_100d
|
||||
OS fingerprint not ideal because: maxTimingRatio (1.438000e+00) is greater than 1.4
|
||||
Aggressive OS guesses: Microsoft Windows 10 - 11 (89%), Microsoft Windows Server 2016 (89%), Fortinet FortiGate 100D firewall (86%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21909%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
SEQ(TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB77A%P=x86_64-pc-linux-gnu)
|
||||
SEQ(TS=A)
|
||||
SEQ(SP=100%GCD=1%ISR=10F%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=N)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
T1(R=N)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
|
||||
T2(R=N)
|
||||
T3(R=N)
|
||||
@@ -155,23 +153,24 @@ T7(R=N)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.940 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.670 days (since Mon Feb 23 11:37:20 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=256 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 20001/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.69 ms 10.216.35.11
|
||||
3 0.85 ms 10.216.32.1
|
||||
4 0.40 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.12 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.66 ms 10.241.1.187
|
||||
7 12.79 ms 10.241.2.71
|
||||
8 37.34 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.12 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.11
|
||||
3 0.87 ms 10.216.32.1
|
||||
4 0.55 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 2.62 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.62 ms 10.241.1.185
|
||||
7 12.48 ms 10.241.2.26
|
||||
8 14.50 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:10:50 2026 -- 1 IP address (1 host up) scanned in 1964.53 seconds
|
||||
# Nmap done at Tue Apr 14 03:41:46 2026 -- 1 IP address (1 host up) scanned in 985.49 seconds
|
||||
|
||||
```
|
||||
|
||||
+14
-16
@@ -5,36 +5,34 @@ nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN "/root/results/edge.lan.ddn
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.55s latency).
|
||||
Host is up, received user-set.
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1676s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 1136s
|
||||
All 100 scanned ports on edge.lan.ddnsgeek.com (167.179.167.166) are in ignored states.
|
||||
Not shown: 100 open|filtered udp ports (no-response)
|
||||
Too many fingerprints match this host to give specific OS details
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%DS=16%DC=T%G=N%TM=69D217EE%P=x86_64-pc-linux-gnu)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%G=N%TM=69DDB812%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Network Distance: 16 hops
|
||||
|
||||
TRACEROUTE (using proto 1/icmp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.08 ms 10.216.0.161
|
||||
2 0.19 ms 10.216.35.11
|
||||
3 0.80 ms 10.216.32.2
|
||||
4 0.24 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.34 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.80 ms 10.241.1.187
|
||||
7 13.01 ms 10.241.2.71
|
||||
8 ... 15
|
||||
16 551.48 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.12
|
||||
3 1.05 ms 10.216.32.2
|
||||
4 0.34 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.67 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.64 ms 10.241.1.185
|
||||
7 12.61 ms 10.241.2.26
|
||||
8 ... 30
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:06:07 2026 -- 1 IP address (1 host up) scanned in 1681.49 seconds
|
||||
# Nmap done at Tue Apr 14 03:44:18 2026 -- 1 IP address (1 host up) scanned in 1137.26 seconds
|
||||
|
||||
```
|
||||
|
||||
+50
-50
@@ -5,33 +5,35 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN "/root/res
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 30s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 29s
|
||||
Not shown: 998 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
| MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
| MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
| EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
| EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
| ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
| ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
| 0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -44,38 +46,36 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
| sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
| pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
| LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
| BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
| VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
| MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
| MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
| BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
| AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
| q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
| RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
| 4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
| K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
| uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
| ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
| pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
| 0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
| 6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
| tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
| ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
| EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
| MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
| BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
| YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
| I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
| eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
| AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
| e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
| VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
| TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
| pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
| zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
| S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
| t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
| IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
| DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
Device type: general purpose|router|storage-misc
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (92%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:linux:linux_kernel:6.0 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), Linux 4.19 (92%), Linux 6.0 (92%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (92%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%), Linux 3.10 - 4.11 (87%)
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 6.15 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21180%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=1%ISR=108%TI=Z%TS=A)
|
||||
SEQ(SP=FE%GCD=1%ISR=10F%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3BF%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=102%GCD=1%ISR=10A%TI=Z%TS=A)
|
||||
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
@@ -86,24 +86,24 @@ T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.917 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.659 days (since Mon Feb 23 11:37:19 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=260 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 80/tcp)
|
||||
TRACEROUTE (using port 443/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.10 ms 10.216.0.161
|
||||
2 0.20 ms 10.216.35.11
|
||||
3 0.97 ms 10.216.32.2
|
||||
4 0.41 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 3.66 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.64 ms 10.241.1.185
|
||||
7 12.46 ms 10.241.2.26
|
||||
8 14.18 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.13 ms 10.216.0.161
|
||||
2 0.29 ms 10.216.35.12
|
||||
3 12.28 ms 10.216.32.2
|
||||
4 0.85 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 1.79 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.66 ms 10.241.1.187
|
||||
7 12.96 ms 10.241.2.71
|
||||
8 14.82 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:38:40 2026 -- 1 IP address (1 host up) scanned in 34.30 seconds
|
||||
# Nmap done at Tue Apr 14 03:25:51 2026 -- 1 IP address (1 host up) scanned in 30.49 seconds
|
||||
|
||||
```
|
||||
|
||||
+1
-2
@@ -9,9 +9,8 @@ HTTP/2 404
|
||||
content-type: text/plain; charset=utf-8
|
||||
x-content-type-options: nosniff
|
||||
content-length: 19
|
||||
date: Sun, 05 Apr 2026 07:38:46 GMT
|
||||
date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
|
||||
404 page not found
|
||||
|
||||
|
||||
```
|
||||
|
||||
+7
@@ -290,5 +290,12 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Photos54.txt
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plastic.jsp
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/PlugIn.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plone.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/PleaseWait.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plateau.aspx
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plymouth.txt
|
||||
|
||||
```
|
||||
|
||||
+103
-103
@@ -5,119 +5,30 @@ nmap -vv --reason -Pn -T4 -sV -p 443 --script="banner,(http* or ssl*) and not (b
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:48 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:55 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.015s latency).
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:39:00 UTC for 715s
|
||||
Scanned at 2026-04-14 03:26:06 UTC for 303s
|
||||
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| 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
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
| http-headers:
|
||||
| Content-Type: text/plain; charset=utf-8
|
||||
| X-Content-Type-Options: nosniff
|
||||
| Date: Sun, 05 Apr 2026 07:41:14 GMT
|
||||
| Content-Length: 19
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
| http-vhosts:
|
||||
| auth.lan.ddnsgeek.com : 200
|
||||
|_127 names had status 404
|
||||
|_http-chrono: Request times for /; avg: 12689.98ms; min: 1737.94ms; max: 27884.19ms
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
|_http-chrono: Request times for /; avg: 643.62ms; min: 493.39ms; max: 859.71ms
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
| http-vhosts:
|
||||
| 127 names had status 404
|
||||
|_auth.lan.ddnsgeek.com : 200
|
||||
| http-security-headers:
|
||||
| Strict_Transport_Security:
|
||||
| HSTS not configured in HTTPS Server
|
||||
| X_Content_Type_Options:
|
||||
| Header: X-Content-Type-Options: nosniff
|
||||
|_ Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type.
|
||||
| http-errors:
|
||||
| Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
|
||||
| Found the following error pages:
|
||||
|
|
||||
| Error Code: 404
|
||||
|_ http://edge.lan.ddnsgeek.com:443/
|
||||
|_http-date: Tue, 14 Apr 2026 03:26:55 GMT; -3s from local time.
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:46 GMT; -6s from local time.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
| ssl-enum-ciphers:
|
||||
| TLSv1.2:
|
||||
| ciphers:
|
||||
@@ -138,8 +49,16 @@ PORT STATE SERVICE REASON VERSION
|
||||
| TLS_AKE_WITH_CHACHA20_POLY1305_SHA256 (X25519MLKEM768) - A
|
||||
| cipher preference: server
|
||||
|_ least strength: A
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
| http-headers:
|
||||
| Content-Type: text/plain; charset=utf-8
|
||||
| X-Content-Type-Options: nosniff
|
||||
| Date: Tue, 14 Apr 2026 03:27:03 GMT
|
||||
| Content-Length: 19
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
@@ -147,10 +66,91 @@ PORT STATE SERVICE REASON VERSION
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| 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
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
| http-errors:
|
||||
| Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
|
||||
| Found the following error pages:
|
||||
|
|
||||
| Error Code: 404
|
||||
|_ http://edge.lan.ddnsgeek.com:443/
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:50:56 2026 -- 1 IP address (1 host up) scanned in 729.18 seconds
|
||||
# Nmap done at Tue Apr 14 03:31:09 2026 -- 1 IP address (1 host up) scanned in 315.49 seconds
|
||||
|
||||
```
|
||||
|
||||
+50
-50
@@ -6,7 +6,7 @@ sslscan --show-certificate --no-colour edge.lan.ddnsgeek.com:443 2>&1
|
||||
|
||||
```
|
||||
Version: 2.1.5
|
||||
OpenSSL 3.5.3 16 Sep 2025
|
||||
OpenSSL 3.5.5 27 Jan 2026
|
||||
|
||||
Connected to 167.179.167.166
|
||||
|
||||
@@ -56,9 +56,9 @@ TLSv1.2 128 bits x25519
|
||||
SSL Certificate:
|
||||
Certificate blob:
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -71,31 +71,31 @@ Vo1x/iLH+V/khueBk7nFkYHfJ7kScPHgkrWl9UO0UpY1M+Hvn7FCWwvOvGFGmSpS
|
||||
NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
eUZAARP+FxOlUy5Obl0BmvI=
|
||||
ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
rWBgpRaT
|
||||
-----END CERTIFICATE-----
|
||||
Version: 2
|
||||
Serial Number: 06:e2:09:81:d0:6f:e4:7f:8d:b4:c2:c3:10:de:02:be:b7:c1
|
||||
Serial Number: 06:67:05:c1:5b:a9:bf:ea:80:39:6a:0f:ca:f2:1d:4f:12:a3
|
||||
Signature Algorithm: sha256WithRSAEncryption
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R13
|
||||
Not valid before: Feb 9 19:02:27 2026 GMT
|
||||
Not valid after: May 10 19:02:26 2026 GMT
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R12
|
||||
Not valid before: Apr 10 22:57:08 2026 GMT
|
||||
Not valid after: Jul 9 22:57:07 2026 GMT
|
||||
Subject: /CN=edge.lan.ddnsgeek.com
|
||||
Public Key Algorithm: NULL
|
||||
RSA Public Key: (4096 bit)
|
||||
@@ -141,48 +141,48 @@ eUZAARP+FxOlUy5Obl0BmvI=
|
||||
X509v3 Key Usage: critical
|
||||
Digital Signature, Key Encipherment
|
||||
X509v3 Extended Key Usage:
|
||||
TLS Web Server Authentication, TLS Web Client Authentication
|
||||
TLS Web Server Authentication
|
||||
X509v3 Basic Constraints: critical
|
||||
CA:FALSE
|
||||
X509v3 Subject Key Identifier:
|
||||
C0:71:23:F3:59:E2:46:4A:11:17:E6:A5:EB:99:AB:AB:0F:AB:AD:54
|
||||
X509v3 Authority Key Identifier:
|
||||
E7:AB:9F:0F:2C:33:A0:53:D3:5E:4F:78:C8:B2:84:0E:3B:D6:92:33
|
||||
00:B5:29:F2:2D:8E:6F:31:E8:9B:4C:AD:78:3E:FA:DC:E9:0C:D1:D2
|
||||
Authority Information Access:
|
||||
CA Issuers - URI:http://r13.i.lencr.org/
|
||||
CA Issuers - URI:http://r12.i.lencr.org/
|
||||
X509v3 Subject Alternative Name:
|
||||
DNS:edge.lan.ddnsgeek.com
|
||||
X509v3 Certificate Policies:
|
||||
Policy: 2.23.140.1.2.1
|
||||
X509v3 CRL Distribution Points:
|
||||
Full Name:
|
||||
URI:http://r13.c.lencr.org/66.crl
|
||||
URI:http://r12.c.lencr.org/36.crl
|
||||
|
||||
CT Precertificate SCTs:
|
||||
Signed Certificate Timestamp:
|
||||
Version : v1 (0x0)
|
||||
Log ID : 64:11:C4:6C:A4:12:EC:A7:89:1C:A2:02:2E:00:BC:AB:
|
||||
4F:28:07:D4:1E:35:27:AB:EA:FE:D5:03:C9:7D:CD:F0
|
||||
Timestamp : Feb 9 20:00:57.423 2026 GMT
|
||||
Extensions: none
|
||||
Log ID : 46:AF:86:3D:3B:3E:E5:9F:A5:77:DE:A8:24:5D:36:B0:
|
||||
D9:ED:22:A2:23:F4:61:77:41:22:94:52:EE:95:50:5F
|
||||
Timestamp : Apr 10 23:55:38.330 2026 GMT
|
||||
Extensions: 00:00:05:00:03:8A:35:3D
|
||||
Signature : ecdsa-with-SHA256
|
||||
30:44:02:20:52:8E:58:DC:53:91:8D:CD:20:EA:F4:4E:
|
||||
D5:57:53:24:70:7D:7C:7F:19:44:DA:99:06:CC:74:90:
|
||||
80:AB:F2:D1:02:20:14:9E:36:EA:9E:24:DF:FC:03:45:
|
||||
1F:3C:63:DC:90:2C:7F:D1:0C:7E:9A:D2:F0:EB:96:D0:
|
||||
C9:E5:A1:41:E6:96
|
||||
30:44:02:20:63:DC:83:A3:5E:CC:C8:1A:1E:FE:34:BA:
|
||||
26:94:F3:E2:1C:1E:0C:A6:80:15:75:7B:EE:43:3F:0A:
|
||||
45:62:74:59:02:20:3B:D9:FE:16:8F:7C:7B:9C:D9:E9:
|
||||
C3:F1:3C:17:77:72:B2:02:9A:50:C9:93:DF:61:7F:24:
|
||||
11:1C:C1:DD:18:79
|
||||
Signed Certificate Timestamp:
|
||||
Version : v1 (0x0)
|
||||
Log ID : E3:23:8D:F2:8D:A2:88:E0:AA:E0:AC:F0:FA:90:C9:85:
|
||||
F0:B6:BF:F5:D2:A5:27:B0:01:FC:1C:44:58:C4:B6:E8
|
||||
Timestamp : Feb 9 20:00:57.524 2026 GMT
|
||||
Extensions: 00:00:05:00:32:0E:2B:5A
|
||||
Log ID : D8:09:55:3B:94:4F:7A:FF:C8:16:19:6F:94:4F:85:AB:
|
||||
B0:F8:FC:5E:87:55:26:0F:15:D1:2E:72:BB:45:4B:14
|
||||
Timestamp : Apr 10 23:55:38.344 2026 GMT
|
||||
Extensions: none
|
||||
Signature : ecdsa-with-SHA256
|
||||
30:45:02:21:00:C7:32:A4:A8:E7:11:84:C4:40:74:35:
|
||||
F6:09:D6:6A:7C:27:E7:FB:9B:72:2A:3F:BF:0A:E5:87:
|
||||
7F:BC:60:DD:BD:02:20:4F:10:15:B9:42:2D:F9:5A:5A:
|
||||
DA:8D:8B:51:3F:7E:19:5F:F6:AB:23:24:B0:4E:61:BE:
|
||||
61:F7:6A:05:AA:C8:DD
|
||||
30:44:02:20:4C:10:18:FE:37:3D:52:A9:B7:28:0E:5A:
|
||||
4E:0A:0C:40:F9:78:6E:7E:4F:90:9B:3D:EA:FD:5B:6E:
|
||||
2B:B4:76:C6:02:20:61:DC:15:D2:5E:E5:BF:7D:6B:42:
|
||||
5A:9B:7A:13:A5:04:6D:81:57:8C:5A:BF:9F:59:68:7A:
|
||||
66:41:5C:85:ED:A0
|
||||
Verify m:
|
||||
unable to get local issuer certificate
|
||||
|
||||
@@ -192,10 +192,10 @@ RSA Key Strength: 4096
|
||||
|
||||
Subject: edge.lan.ddnsgeek.com
|
||||
Altnames: DNS:edge.lan.ddnsgeek.com
|
||||
Issuer: R13
|
||||
Issuer: R12
|
||||
|
||||
Not valid before: Feb 9 19:02:27 2026 GMT
|
||||
Not valid after: May 10 19:02:26 2026 GMT
|
||||
Not valid before: Apr 10 22:57:08 2026 GMT
|
||||
Not valid after: Jul 9 22:57:07 2026 GMT
|
||||
|
||||
|
||||
```
|
||||
|
||||
+23
-4
@@ -5,6 +5,25 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host https://edge.lan.ddnsgeek.
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nikto.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nikto.txt):
|
||||
|
||||
```
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -16,15 +35,15 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host https://edge.lan.ddnsgeek.
|
||||
CN: edge.lan.ddnsgeek.com
|
||||
SAN: edge.lan.ddnsgeek.com
|
||||
Ciphers: TLS_AES_128_GCM_SHA256
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R13
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R12
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:26 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:28 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
|
||||
```
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ HTTP Headers:
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Type: text/plain; charset=utf-8
|
||||
X-Content-Type-Options: nosniff
|
||||
Date: Sun, 05 Apr 2026 07:39:58 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:43 GMT
|
||||
Content-Length: 19
|
||||
Connection: close
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSikf http://edge.lan.ddnsgeek.com:80/robots.txt
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/robots.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSik http://edge.lan.ddnsgeek.com:80/
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+4
-3
@@ -290,18 +290,18 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/] => https://edge.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[ => https://edge.lan.ddnsgeek.com/[
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/] => https://edge.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.txt => https://edge.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].txt => https://edge.lan.ddnsgeek.com/].txt
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.html => https://edge.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].html => https://edge.lan.ddnsgeek.com/].html
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.php => https://edge.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].php => https://edge.lan.ddnsgeek.com/].php
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].asp => https://edge.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.asp => https://edge.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].aspx => https://edge.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.aspx => https://edge.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].asp => https://edge.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].aspx => https://edge.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.jsp => https://edge.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].jsp => https://edge.lan.ddnsgeek.com/].jsp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/plain] => https://edge.lan.ddnsgeek.com/plain]
|
||||
@@ -318,5 +318,6 @@ Configuration {
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].asp => https://edge.lan.ddnsgeek.com/quote].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].aspx => https://edge.lan.ddnsgeek.com/quote].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].jsp => https://edge.lan.ddnsgeek.com/quote].jsp
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/CustomErrorFiles.aspx
|
||||
|
||||
```
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ curl -sSikf http://edge.lan.ddnsgeek.com:80/.well-known/security.txt
|
||||
```
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/.well-known/security.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+6
-65
@@ -5,76 +5,17 @@ nmap -vv --reason -Pn -T4 -sV -p 80 --script="banner,(http* or ssl*) and not (br
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:46 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:53 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.015s latency).
|
||||
Host is up, received user-set.
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:58 UTC for 969s
|
||||
Scanned at 2026-04-14 03:25:59 UTC for 1s
|
||||
|
||||
Bug in http-security-headers: no string output.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
| Depth: 0
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
| http-headers:
|
||||
| Location: https://edge.lan.ddnsgeek.com/
|
||||
| Date: Sun, 05 Apr 2026 07:39:42 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-chrono: Request times for /; avg: 1690.07ms; min: 1248.08ms; max: 2348.25ms
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
| http-vhosts:
|
||||
|_128 names had status 308
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Redirected To: https://edge.lan.ddnsgeek.com/
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:16 GMT; -2s from local time.
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp filtered http no-response
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:55:08 2026 -- 1 IP address (1 host up) scanned in 983.26 seconds
|
||||
# Nmap done at Tue Apr 14 03:26:07 2026 -- 1 IP address (1 host up) scanned in 14.37 seconds
|
||||
|
||||
```
|
||||
|
||||
+97667
-14118
File diff suppressed because it is too large
Load Diff
+24
-5
@@ -5,6 +5,25 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host http://edge.lan.ddnsgeek.c
|
||||
[/root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nikto.txt](file:///root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nikto.txt):
|
||||
|
||||
```
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -12,20 +31,20 @@ nikto -ask=no -Tuning=x4567890ac -nointeractive -host http://edge.lan.ddnsgeek.c
|
||||
+ Target Hostname: edge.lan.ddnsgeek.com
|
||||
+ Target Port: 80
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:23 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:28 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [999979] /.tools/webmail: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [999979] http://100.100.100.200/latest/meta-data/: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [007342] /: X-Frame-Options header is deprecated and was replaced with the Content-Security-Policy HTTP header with the frame-ancestors directive. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
|
||||
+ [007352] /: The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type. See: https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/missing-content-type-header/
|
||||
+ 7885 requests: 1 error and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-05 07:54:51 (GMT0) (928 seconds)
|
||||
+ 7900 requests: 16 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-14 03:36:46 (GMT0) (618 seconds)
|
||||
---------------------------------------------------------------------------
|
||||
+ 1 host(s) tested
|
||||
|
||||
|
||||
+2
-2
@@ -23,7 +23,7 @@ Detected Plugins:
|
||||
HTTP Headers:
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:39:55 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:42 GMT
|
||||
Content-Length: 17
|
||||
Connection: close
|
||||
|
||||
@@ -49,7 +49,7 @@ HTTP Headers:
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Type: text/plain; charset=utf-8
|
||||
X-Content-Type-Options: nosniff
|
||||
Date: Sun, 05 Apr 2026 07:43:00 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:57 GMT
|
||||
Content-Length: 19
|
||||
Connection: close
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.020s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1959s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 984s
|
||||
Not shown: 65531 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
@@ -10,22 +10,21 @@ PORT STATE SERVICE REASON VERSION
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
| MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
| MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
| EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
| EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
| ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
| ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
| 0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -38,106 +37,105 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
| sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
| pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
| LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
| BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
| VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
| MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
| MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
| BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
| AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
| q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
| RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
| 4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
| K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
| uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
| ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
| pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
| 0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
| 6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
| tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
| ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
| EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
| MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
| BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
| YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
| I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
| eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
| AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
| e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
| VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
| TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
| pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
| zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
| S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
| t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
| IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
| DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open unknown syn-ack ttl 56
|
||||
| fingerprint-strings:
|
||||
| SSLv23SessionReq:
|
||||
| u(\xb7
|
||||
| \xd8Ee
|
||||
| 5QT4
|
||||
| $lpL~
|
||||
| 3T!;
|
||||
| F,<ny
|
||||
| =$iE
|
||||
| r:#|]
|
||||
| gj'Y
|
||||
| lyd;B
|
||||
| ,v#M
|
||||
| 0cz!
|
||||
| *d&~
|
||||
| '}O-W
|
||||
| ^wYU
|
||||
| ^Hq<
|
||||
| D5Ee
|
||||
| /aQ&
|
||||
| *P'T22
|
||||
| 6Kg~
|
||||
| 0\x17
|
||||
| *\x97
|
||||
| TLSSessionReq:
|
||||
| :7d0W
|
||||
| 4!`7
|
||||
| T@W^]%
|
||||
| O&TB
|
||||
| J>bdAp
|
||||
|_ N'qX]
|
||||
| !(IS
|
||||
| D^[D
|
||||
| LM?W
|
||||
| jz39
|
||||
|_ K6F*:+c
|
||||
1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at https://nmap.org/cgi-bin/submit.cgi?new-service :
|
||||
SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D2170C%P=x86_64-pc-linux-gnu%r(TL
|
||||
SF:SSessionReq,207,"\[\x05\xd7\[\r\x97\xb4#\xdd\xc9\xb5\xf7r\x85&\xb4\xc4z
|
||||
SF:\x89\x1b\xe5\x04\xae\xc5\x88\x87\xc6\xc1y}0\xe3Q\?I\xad\x12\t\xb4Ny\xce
|
||||
SF:5\xf7\xd4}\x93W\xa9\x81\x11\x1e\x15'\xbf\xbdB9\xb5e\x98\x0cx\x12\xd9\xc
|
||||
SF:b\xacG\x82\xb8U\x02\*\x94\xbe:7d0W\xdaub\xfc\xd7\xcb\xd4\xe0\xb3\xf2\xb
|
||||
SF:1\xff\xb0\x1e\^\xa8\xb5\x86\x1c9\x95\xa9\x15\x86\x10\xa9\x16Io\)\xa7\x9
|
||||
SF:7\x86\xf6\xec\x994!`7\xf95N\x20\xdck'\x98\xc8\x13\xf5\xe0T\\@W\^\]%\x13
|
||||
SF:\xb3\xe1\xda7\x13\x0f\xe6\x81\xc9\x87\x18}\xcd-\x99\xfd\x0f\xcd\x80\x17
|
||||
SF:\x0fC\xb0{vR\x87\xb2\xe3\x96\xac;ih\xb9\xa4\xbd\0Um4\xd1\?!\xa2\$4\x9a=
|
||||
SF:\[A\xb1\x87\xe4O&TB\xddy\x18\xb1w\x11\xbc\x89\xe4\xfcT\x90\xb2_\x8f<\x1
|
||||
SF:2\xce%O\xab\xfd3\x04\xaf\xd3n\xd6\xa1\x92c\x0e\xc2\xbb\xaf\xea\xc9\xc9n
|
||||
SF:\x1d\xd1\xd0\x84i\n\xb7\x85;\x000\x1a\xd4\xf7\x8ag\xcf\xaaJ>bdAp\xe7\x9
|
||||
SF:9M\xf4f=\xfc{\xb6Z\xdb\xc2x\xfd2Z\xd92\xad\xd6\xfeiC\x8b\xf6\x1aw\x1f9\
|
||||
SF:xa9B\x85\xc8\x82o\xc7A\x8cAe\xb9\x0f\xe8{\x7fA\xb2\x01\x9fr\x85\x98\xe8
|
||||
SF:\x1eCo\x15\x90\xda\x83\xfd\xf0\xfdN`\xfeh\xe9c\xd1>\xbc\xbe\xea_\xa1R\x
|
||||
SF:928\x84h\xaf\xdf\x83\x94\x9d\xfa\xca2~m\xae\x85\x95\x9d\xc3\.2\xdc\0\x0
|
||||
SF:7\*\?\xe9\xf0\xc94\x98/\xe9\xf8m@\xab\xf7\xd8\x85U\x1e\xdb\x8f\xaex@\xd
|
||||
SF:7\xf7\xe9\xe4K\x88\xa9\$\xc1-\xbf\xfb\xd9C\xdc\x8c\x9d8\xe0G\x83\*\xb8\
|
||||
SF:x02C\xd5l\x97\xaa\xb9\x8d\xb7\x7f\xdc\xd0\xe0\x92\x87\xaa\xe8\x99\x8e\x
|
||||
SF:bb\x20\xc8\x13\r\xcd\x01\x95\x92\x13\xe8\xfaQG\xcc\x20\xddb\xf9\xcb\x1d
|
||||
SF:\x1b\xc5\x05\xc5\x918\x13\xbc\xfe,\x0c\|\x1dz\x80\x0e\xcez\x92T\x18\xff
|
||||
SF:!a8\xde\x9b\x94\x10\^\xb0S\x06\xe36R\?\x88\xf4\x8a\x82<\)\x01\xbc\x87&\
|
||||
SF:xf3H\x9b\x1f\xdd\|\xb6\0x\x99\x19b\0N'qX\]\xe87Nu\xb2\xaa")%r(SSLv23Ses
|
||||
SF:sionReq,22A,"Y\xee\x08\x14\xde\xdd\xa9w\xbb/\x9e\(\x04/\xa4D\xdf\xf7\"\
|
||||
SF:xc0\x15;\$\*\x92o\xad\x01\x8d\xe5\xc8\x7f\x20\xaf\x80\x151\x0eZ\xaa\x96
|
||||
SF:2\xact\xfe\x98\xcc\xebu\(\\\xb7\x07\\\xd8Ee\xf7\xb1sfm\xa1\x0eY\xd1\*\x
|
||||
SF:20\x0c\xc0\xadRt\xdb5QT4\r\x02\x17\xc3\x10oo\xae\xd2\x03\x06\x84\xe9\xe
|
||||
SF:9b\xfa\x18G\x88hJ\x1d\xc8\xf3\x9e\x01\xd9\x1eT\xa3\xd0e\xba\xe5\x97k/\x
|
||||
SF:9dV\xac\xd8\xb4\xb1\xa6W2P\xf7\xf6\x12e\x84\x94\xee\x08\x94\x1e\x85\x01
|
||||
SF:;\xb3\x10\xf4\xf1{\xcb\x1bR\xa9\x8a!\xa1\xdf}\xd4\xf1k\x1e\x17\x1f\x969
|
||||
SF:I}\xfaNK=\xfbk\x0c\x9al\xfe\x03j\xdf\xbb\x9b`\xd8\xf9\x99\xbf\$lpL~\xf7
|
||||
SF:G}\x9e3T!;\xe9\xfdNl\x88';\x1b\x02\x9dNu1\xd2BD\)\x85\x054oH\xd4\xbb\x1
|
||||
SF:bF,<ny\x1f\x8ai\xec\xaa\xc1\xe2\xa7\xc5\]O\xceO\*\xe7m\x10e\xa4\x10\xc1
|
||||
SF:\xd6:\xafy3\xf5Z\x95\"\r\xe88\xdd\xeb\xe5\x95\x1e\xca\x91\xf7j\xca\*\xb
|
||||
SF:4\x06\xfb\xc6\x9c\x8b\xc5l\x841\x8e\xd6\x05u\x1a\xc3\xee\xedcxq\x98\xc0
|
||||
SF:\xd9\x04\|\x03\+R1\xcb\xd2\xa2`W,\x9c\)r\xd9'\xcdl\xa9\x15\x8b\x02\xea\
|
||||
SF:xf5_\xf7,\xe0=\x9c%\xf8\xf1d\xeb\xe8bYi\x83\xc1\x84\xde@\x9bJ~\x16\xe6F
|
||||
SF:\x19D\x1f\xc8\xe2\x8d\x08\xca\.\x8b\x81\x9f\x7f\x90\xfd\x98\xad=\$iE\xe
|
||||
SF:5\xd0\x91\xc9\xa4\]\x10\xa5\xc1\0\x98\x7f\x9e\xab\t\xb2i,L\x82\xd6\xe9\
|
||||
SF:xf9\xf9\*3o\xad\xc5\xf5\xfc\xf2\xf8V\xdd&\xa6\x7f\xd1\x036\x8c\xe4\0\x1
|
||||
SF:6\xc98\x20#m\x7fX\x802\xfe\xc6\xa8\xc5/\x88t\x19\x1e\x20\x15\xa3\xe6\x0
|
||||
SF:f\x03\xba\xf9oh\x16\*-\xa2\xd9\x8bd#\xc5\xc9\xe6\x10\xa1\x89\x91\xf2B\x
|
||||
SF:c8\xe7\xdf\+mF\xae\xf7\x86\x91\xb4\xf9\x1a\xab/\xbe\x17\x18r:#\|\]\xccT
|
||||
SF:,/\xd6\xa6x\?\xd15d\x8f\x96\xca\xa4N\xf8E\xab\\\t\x9e\xda\x0f\xf3\xc8q\
|
||||
SF:xf6\x94\xfbL\x8c\xf1\xe1\x02\xb3\xe8\$\xd9\xacgP\xab\xdd\xb8\x15w\xba\x
|
||||
SF:fe\xd1\xf6\tiH\xe9p,\x18\xe7\x118\xd7\xee\xbd\x08{{\xfa\xd7B\xf2\xdb\xb
|
||||
SF:7\x13\x95}");
|
||||
Device type: general purpose
|
||||
Running (JUST GUESSING): Linux 2.6.X|3.X|4.X (90%), Microsoft Windows 2016 (88%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:microsoft:windows_server_2016 cpe:/o:linux:linux_kernel:3.10 cpe:/o:linux:linux_kernel:4
|
||||
OS fingerprint not ideal because: maxTimingRatio (1.814000e+00) is greater than 1.4
|
||||
Aggressive OS guesses: Linux 2.6.32 (90%), Microsoft Windows Server 2016 (88%), Linux 2.6.39 (86%), Linux 3.10 (86%), Linux 3.10 - 3.16 (86%), Linux 4.19 - 5.15 (85%)
|
||||
SF-Port51413-TCP:V=7.99%I=9%D=4/14%Time=69DDB59B%P=x86_64-pc-linux-gnu%r(T
|
||||
SF:LSSessionReq,166,"\xe8Ne\x9e\x1d\xbc\x8c\xc5\xc5\xb2\xa6\x10\x9e\xa9y:\
|
||||
SF:xd7\xee~\xbf!\(IS\x9a\x01\xfe\xc1~\xa2}#\x1d\xaa!\x84\x80\xcfwW\x03#a\x
|
||||
SF:b6\x9e`\xfa\x83\x06\xcd\x96M0\xb9p\x20\x7f\x99I\xd7\xef#\xdbho\xa6\xba\
|
||||
SF:xa3\xb7\*c\x8bo\xc51\xf1X\x0bm\xea\x88r\xd1\x8b=\n\x07d\xf3\x83\x16:\x8
|
||||
SF:4k\x17}%\xee8\xd1I\xf9\x16\x88#\x83>\x15\x060_\x04'\xbb\xcb\x88\xb6\x0e
|
||||
SF:\0X7\x9e\xa5\x0c\xb8D\x1c!\xd1\xc4\x0bv\x17\x88B\xff%\xcc\xdauL\xe4\x82
|
||||
SF:\xc6\xc0\x1dJ\xe6\xbeX\xedI\xb5\xad2\$\xc6D\^\[D\xb1\"nz\xca\x9fQ\x88\x
|
||||
SF:f2\x89\x94\r\x88\xa0\xa2\x97\x80\x8c\x02i\xee\xe6\xe5\xf4\x92\xaf3\xb2\
|
||||
SF:xb8\xf8LM\?W\xc8%\xb3\xe3\xf5\^\xc2\x0ev\xfds\x8f\x80h\xb9,\xf0\x92u\xb
|
||||
SF:b\\e\xdc>\x1fy\xb9\xb3jz39\xa6\x83h\xbcM\x84\xc2\x97\x1c\x90\xa8\xa6M\x
|
||||
SF:ed\x1d\)\xa0\xff\xaf\xee\$\xe2\xbc\xfeL\x9f\xdf\xaa\xc1\xda\xb3\xbb\x15
|
||||
SF:y\xc2\x8c\x0eW\xb9-\xfafd\xa8\xfas\x85\xecs\x80\r\xb2\x94\xb0\x9aK6F\*\
|
||||
SF:\:\+c\xee\x89\x0f\xa9\x94\xd3\x8b\x84dE\x05\x99,\x1dT\xab\xd3\xd1\x13\x
|
||||
SF:f5\x1e\xfe\x9c1l\xb9\xf91\x18\xbbB}\xe9Z\)\xf6q\xf5S\xca\|\xa2\x03\x05\
|
||||
SF:xe3\xcf\xd3\xfc\"\rB\.L\xf3xy\xdeS\xeb\x81\xcb\x9b=\xd7W\x9f2@")%r(SSLv
|
||||
SF:23SessionReq,255,"0\x0ep\xb8~\x15`\xa1\xb0\xc3\xdf\xbe\xe2,\x0e\xcf\xe8
|
||||
SF:gj'Y\xf0\xc0\xb9\xe7\xcf\xff\x1b\xc0\xaflyd;B\x1d\x1b\x11\.\xc1Wi\xe9\$
|
||||
SF:\x13\xe2e&\xb7\x16J\xcbe\x05\x17\xbf{\xaa<\x18\xff\x13y\xe8\x88p:\xfd\x
|
||||
SF:19\x03'\xfc\x8c\x81oZ\x1fI\xd9\xdf~\xd1&yu\0}\xf3\x99\x8ff\^\x8d\xe0\]\
|
||||
SF:xbd\(\x17\xd3\xdf\x17k\xa31=@\x1b\?\xe8\xb3\x01%PZ\xf8\xe8\x9ev\x85\xf4
|
||||
SF:\xa4_\)\x80\t\xc8s\x0f\xec\xa3S\x18\x1f\xf8\xd79\xf4\xbd\x96\xa8\x8a,v#
|
||||
SF:M\xaahH\xb6%\xeb\xfc\x16\xe20cz!\xe6\|\xb0\.Z\xe2\xac\xc7<N\xdd\*d&~\x0
|
||||
SF:e\x86T\x97\xb5\x05\xbc\xf8\x17FK\x99\xfbKQ\x03MIU\x1c\xccMx;\xfb\xf8\x8
|
||||
SF:eV\|\xde\|\x9cN\xa4\xc5`\xf3`b>\x8c\x955\x8e\x9e\xb7\xeek\xd0\xf0\x8e'}
|
||||
SF:O-W\xc7Tn\xddj\xb8Fy\x1ckE\x89\x13\x06\x1b\xc3\xbc\x13\x1c\xf3~\x08\x9a
|
||||
SF:W5\xb1\x7f\^wYU\xcf\xe8n\xdb}\x9f2Y\xd3\xf3\xe0\x99&u\x16\x8bbO\x0c\x9c
|
||||
SF:\xfd\xe4\x8f\xba\x1e\^Hq<\xf3\xf0@\xffj\x1eH\x04C\xfc\xca\x9ah\x9b\xde\
|
||||
SF:xceC\x0f\xf8f\xe0\x1c\xca\xe6t\x93\x8f\xef\xd4D5Ee\xf3\xb9\xf1E\xf2\xbf
|
||||
SF:\x8f`\|\xc6\xb8\xa9\]\xe5\xa5~#\x01\xed\x0cd\x84\x114\xd0\xe4\xa5\xcf\x
|
||||
SF:c1\x9c@\xd7Z\xaeL\xfaH\x10\x1e\x8b\xec\xd8\xd7mZ\x18\(\x8c\xcb`\xa71o\x
|
||||
SF:ec\xfeS\xa5\xc9\x9c/aQ&\xb4i\x04\*P'T22\x82\xf1\xbc\xbe\xa0,\x03\xcd\x1
|
||||
SF:8s\xa1a\xa1\xb5\xf5b\xf2\x98z\xc3T\xbf\xfe\x95&\r\x0e/\xbf\*\x82\xb0\xc
|
||||
SF:eG6\xe1\xe9u\xf1\xe4\xb0\xa1\x8e\xe3dN\xb9\x02\xe02\x17\x9d\xee\x0c\xc9
|
||||
SF:\xef\)\xe5\xfdk\xe0\)\.\t\xd5\x8b\+\x0c\xe1\x06\xcbf\[\xeb\x10\xce\x9b\
|
||||
SF:x01R\x94\x93q\xeev\xc7\*\xa5IG\x0c\"o\xe3\xc94\xe86\xf7\x89\x8e3\xfb'\x
|
||||
SF:906\x1b\xd9z\xcc6Kg~\x93\xe1\xdf\$\x12\xd2\xc2G\xc8\?y\xe9\x87\xc0\xff9
|
||||
SF:\x91\xefy\xd5\xc7\xf2\xe3\]\xdf\)S2\xc30\\\x17\x81\x03\xa4\+\x1d\xbc-L\
|
||||
SF:xec\*\\\x97\x8c\xc5\xe4\xb5\xd3S\xc9\xd6\xf2ljf\xf4~\xf7\xbc\x08\x92>zy
|
||||
SF:\xac%\xdc\"ZZ\xc4dA\x0e\x967%\xeaZO\|\x93\xfa\xad\xaf\xe0\x8fz\xa5");
|
||||
Device type: general purpose|firewall
|
||||
Running (JUST GUESSING): Microsoft Windows 10|11|2016 (89%), Fortinet embedded (86%)
|
||||
OS CPE: cpe:/o:microsoft:windows_10 cpe:/o:microsoft:windows_11 cpe:/o:microsoft:windows_server_2016 cpe:/h:fortinet:fortigate_100d
|
||||
OS fingerprint not ideal because: maxTimingRatio (1.438000e+00) is greater than 1.4
|
||||
Aggressive OS guesses: Microsoft Windows 10 - 11 (89%), Microsoft Windows Server 2016 (89%), Fortinet FortiGate 100D firewall (86%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21909%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
SEQ(TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB77A%P=x86_64-pc-linux-gnu)
|
||||
SEQ(TS=A)
|
||||
SEQ(SP=100%GCD=1%ISR=10F%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=N)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
T1(R=N)
|
||||
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
|
||||
T2(R=N)
|
||||
T3(R=N)
|
||||
@@ -148,21 +146,22 @@ T7(R=N)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.940 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.670 days (since Mon Feb 23 11:37:20 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=256 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 20001/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.69 ms 10.216.35.11
|
||||
3 0.85 ms 10.216.32.1
|
||||
4 0.40 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.12 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.66 ms 10.241.1.187
|
||||
7 12.79 ms 10.241.2.71
|
||||
8 37.34 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.12 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.11
|
||||
3 0.87 ms 10.216.32.1
|
||||
4 0.55 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 2.62 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.62 ms 10.241.1.185
|
||||
7 12.48 ms 10.241.2.26
|
||||
8 14.50 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:10:50 2026 -- 1 IP address (1 host up) scanned in 1964.53 seconds
|
||||
# Nmap done at Tue Apr 14 03:41:46 2026 -- 1 IP address (1 host up) scanned in 985.49 seconds
|
||||
|
||||
@@ -1,30 +1,32 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 30s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 29s
|
||||
Not shown: 998 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
| MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
| MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
| EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
| EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
| ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
| ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
| 0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -37,38 +39,36 @@ PORT STATE SERVICE REASON VERSION
|
||||
| NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
| sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
| pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
| LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
| BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
| VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
| MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
| MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
| BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
| AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
| q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
| RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
| 4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
| K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
| uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
| ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
| pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
| 0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
| 6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
| tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
| ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
| EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
| MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
| BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
| YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
| I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
| eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
| AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
| e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
| VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
| TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
| pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
| zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
| S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
| t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
| IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
| DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
Device type: general purpose|router|storage-misc
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (92%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:linux:linux_kernel:6.0 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), Linux 4.19 (92%), Linux 6.0 (92%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (92%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%), Linux 3.10 - 4.11 (87%)
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 6.15 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21180%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=105%GCD=1%ISR=108%TI=Z%TS=A)
|
||||
SEQ(SP=FE%GCD=1%ISR=10F%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3BF%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=102%GCD=1%ISR=10A%TI=Z%TS=A)
|
||||
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
@@ -79,22 +79,22 @@ T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.917 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.659 days (since Mon Feb 23 11:37:19 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=261 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=260 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 80/tcp)
|
||||
TRACEROUTE (using port 443/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.10 ms 10.216.0.161
|
||||
2 0.20 ms 10.216.35.11
|
||||
3 0.97 ms 10.216.32.2
|
||||
4 0.41 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 3.66 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.64 ms 10.241.1.185
|
||||
7 12.46 ms 10.241.2.26
|
||||
8 14.18 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.13 ms 10.216.0.161
|
||||
2 0.29 ms 10.216.35.12
|
||||
3 12.28 ms 10.216.32.2
|
||||
4 0.85 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 1.79 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.66 ms 10.241.1.187
|
||||
7 12.96 ms 10.241.2.71
|
||||
8 14.82 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:38:40 2026 -- 1 IP address (1 host up) scanned in 34.30 seconds
|
||||
# Nmap done at Tue Apr 14 03:25:51 2026 -- 1 IP address (1 host up) scanned in 30.49 seconds
|
||||
|
||||
@@ -1,31 +1,29 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.55s latency).
|
||||
Host is up, received user-set.
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1676s
|
||||
Scanned at 2026-04-14 03:25:22 UTC for 1136s
|
||||
All 100 scanned ports on edge.lan.ddnsgeek.com (167.179.167.166) are in ignored states.
|
||||
Not shown: 100 open|filtered udp ports (no-response)
|
||||
Too many fingerprints match this host to give specific OS details
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%DS=16%DC=T%G=N%TM=69D217EE%P=x86_64-pc-linux-gnu)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%G=N%TM=69DDB812%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Network Distance: 16 hops
|
||||
|
||||
TRACEROUTE (using proto 1/icmp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.08 ms 10.216.0.161
|
||||
2 0.19 ms 10.216.35.11
|
||||
3 0.80 ms 10.216.32.2
|
||||
4 0.24 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.34 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.80 ms 10.241.1.187
|
||||
7 13.01 ms 10.241.2.71
|
||||
8 ... 15
|
||||
16 551.48 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.12
|
||||
3 1.05 ms 10.216.32.2
|
||||
4 0.34 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.67 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.64 ms 10.241.1.185
|
||||
7 12.61 ms 10.241.2.26
|
||||
8 ... 30
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:06:07 2026 -- 1 IP address (1 host up) scanned in 1681.49 seconds
|
||||
# Nmap done at Tue Apr 14 03:44:18 2026 -- 1 IP address (1 host up) scanned in 1137.26 seconds
|
||||
|
||||
@@ -2,7 +2,6 @@ HTTP/2 404
|
||||
content-type: text/plain; charset=utf-8
|
||||
x-content-type-options: nosniff
|
||||
content-length: 19
|
||||
date: Sun, 05 Apr 2026 07:38:46 GMT
|
||||
date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
|
||||
404 page not found
|
||||
|
||||
|
||||
@@ -283,3 +283,10 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Photos54.txt
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plastic.jsp
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/PlugIn.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plone.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/PleaseWait.html
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plateau.aspx
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/Plymouth.txt
|
||||
|
||||
@@ -1,3 +1,22 @@
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -9,13 +28,13 @@
|
||||
CN: edge.lan.ddnsgeek.com
|
||||
SAN: edge.lan.ddnsgeek.com
|
||||
Ciphers: TLS_AES_128_GCM_SHA256
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R13
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R12
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:26 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:28 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
|
||||
@@ -1,116 +1,27 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:48 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:55 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.015s latency).
|
||||
Host is up, received user-set (0.014s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:39:00 UTC for 715s
|
||||
Scanned at 2026-04-14 03:26:06 UTC for 303s
|
||||
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-02-09T19:02:27
|
||||
| Not valid after: 2026-05-10T19:02:26
|
||||
| MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
|
||||
| SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
|
||||
| SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| 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
|
||||
| eUZAARP+FxOlUy5Obl0BmvI=
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
| http-headers:
|
||||
| Content-Type: text/plain; charset=utf-8
|
||||
| X-Content-Type-Options: nosniff
|
||||
| Date: Sun, 05 Apr 2026 07:41:14 GMT
|
||||
| Content-Length: 19
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
| http-vhosts:
|
||||
| auth.lan.ddnsgeek.com : 200
|
||||
|_127 names had status 404
|
||||
|_http-chrono: Request times for /; avg: 12689.98ms; min: 1737.94ms; max: 27884.19ms
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
|_http-chrono: Request times for /; avg: 643.62ms; min: 493.39ms; max: 859.71ms
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
| http-vhosts:
|
||||
| 127 names had status 404
|
||||
|_auth.lan.ddnsgeek.com : 200
|
||||
| http-security-headers:
|
||||
| Strict_Transport_Security:
|
||||
| HSTS not configured in HTTPS Server
|
||||
| X_Content_Type_Options:
|
||||
| Header: X-Content-Type-Options: nosniff
|
||||
|_ Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type.
|
||||
| http-errors:
|
||||
| Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
|
||||
| Found the following error pages:
|
||||
|
|
||||
| Error Code: 404
|
||||
|_ http://edge.lan.ddnsgeek.com:443/
|
||||
|_http-date: Tue, 14 Apr 2026 03:26:55 GMT; -3s from local time.
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
|_http-title: Site doesn't have a title (text/plain; charset=utf-8).
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:46 GMT; -6s from local time.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
| ssl-enum-ciphers:
|
||||
| TLSv1.2:
|
||||
| ciphers:
|
||||
@@ -131,8 +42,16 @@ PORT STATE SERVICE REASON VERSION
|
||||
| TLS_AKE_WITH_CHACHA20_POLY1305_SHA256 (X25519MLKEM768) - A
|
||||
| cipher preference: server
|
||||
|_ least strength: A
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
| http-headers:
|
||||
| Content-Type: text/plain; charset=utf-8
|
||||
| X-Content-Type-Options: nosniff
|
||||
| Date: Tue, 14 Apr 2026 03:27:03 GMT
|
||||
| Content-Length: 19
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
@@ -140,8 +59,89 @@ PORT STATE SERVICE REASON VERSION
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=edge.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
|
||||
| Public Key type: rsa
|
||||
| Public Key bits: 4096
|
||||
| Signature Algorithm: sha256WithRSAEncryption
|
||||
| Not valid before: 2026-04-10T22:57:08
|
||||
| Not valid after: 2026-07-09T22:57:07
|
||||
| MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
|
||||
| SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
|
||||
| SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
|
||||
| -----BEGIN CERTIFICATE-----
|
||||
| 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
|
||||
| rWBgpRaT
|
||||
|_-----END CERTIFICATE-----
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
| http-errors:
|
||||
| Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
|
||||
| Found the following error pages:
|
||||
|
|
||||
| Error Code: 404
|
||||
|_ http://edge.lan.ddnsgeek.com:443/
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:50:56 2026 -- 1 IP address (1 host up) scanned in 729.18 seconds
|
||||
# Nmap done at Tue Apr 14 03:31:09 2026 -- 1 IP address (1 host up) scanned in 315.49 seconds
|
||||
|
||||
@@ -20,7 +20,7 @@ HTTP Headers:
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Type: text/plain; charset=utf-8
|
||||
X-Content-Type-Options: nosniff
|
||||
Date: Sun, 05 Apr 2026 07:39:58 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:43 GMT
|
||||
Content-Length: 19
|
||||
Connection: close
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Version: 2.1.5
|
||||
OpenSSL 3.5.3 16 Sep 2025
|
||||
OpenSSL 3.5.5 27 Jan 2026
|
||||
|
||||
Connected to 167.179.167.166
|
||||
|
||||
@@ -49,9 +49,9 @@ TLSv1.2 128 bits x25519
|
||||
SSL Certificate:
|
||||
Certificate blob:
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
|
||||
MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
|
||||
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
||||
EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
|
||||
EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
|
||||
ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
|
||||
ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
|
||||
0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
|
||||
@@ -64,31 +64,31 @@ Vo1x/iLH+V/khueBk7nFkYHfJ7kScPHgkrWl9UO0UpY1M+Hvn7FCWwvOvGFGmSpS
|
||||
NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
|
||||
sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
|
||||
pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
|
||||
LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
||||
BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
|
||||
VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
|
||||
MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
|
||||
MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
|
||||
BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
|
||||
AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
|
||||
q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
|
||||
RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
|
||||
4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
|
||||
K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
|
||||
uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
|
||||
ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
|
||||
pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
|
||||
0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
|
||||
6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
|
||||
tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
|
||||
eUZAARP+FxOlUy5Obl0BmvI=
|
||||
ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
|
||||
EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
|
||||
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
|
||||
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
|
||||
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
|
||||
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
|
||||
eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
|
||||
AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
|
||||
e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
|
||||
VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
|
||||
TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
|
||||
pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
|
||||
zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
|
||||
S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
|
||||
t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
|
||||
IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
|
||||
DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
|
||||
rWBgpRaT
|
||||
-----END CERTIFICATE-----
|
||||
Version: 2
|
||||
Serial Number: 06:e2:09:81:d0:6f:e4:7f:8d:b4:c2:c3:10:de:02:be:b7:c1
|
||||
Serial Number: 06:67:05:c1:5b:a9:bf:ea:80:39:6a:0f:ca:f2:1d:4f:12:a3
|
||||
Signature Algorithm: sha256WithRSAEncryption
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R13
|
||||
Not valid before: Feb 9 19:02:27 2026 GMT
|
||||
Not valid after: May 10 19:02:26 2026 GMT
|
||||
Issuer: /C=US/O=Let's Encrypt/CN=R12
|
||||
Not valid before: Apr 10 22:57:08 2026 GMT
|
||||
Not valid after: Jul 9 22:57:07 2026 GMT
|
||||
Subject: /CN=edge.lan.ddnsgeek.com
|
||||
Public Key Algorithm: NULL
|
||||
RSA Public Key: (4096 bit)
|
||||
@@ -134,48 +134,48 @@ eUZAARP+FxOlUy5Obl0BmvI=
|
||||
X509v3 Key Usage: critical
|
||||
Digital Signature, Key Encipherment
|
||||
X509v3 Extended Key Usage:
|
||||
TLS Web Server Authentication, TLS Web Client Authentication
|
||||
TLS Web Server Authentication
|
||||
X509v3 Basic Constraints: critical
|
||||
CA:FALSE
|
||||
X509v3 Subject Key Identifier:
|
||||
C0:71:23:F3:59:E2:46:4A:11:17:E6:A5:EB:99:AB:AB:0F:AB:AD:54
|
||||
X509v3 Authority Key Identifier:
|
||||
E7:AB:9F:0F:2C:33:A0:53:D3:5E:4F:78:C8:B2:84:0E:3B:D6:92:33
|
||||
00:B5:29:F2:2D:8E:6F:31:E8:9B:4C:AD:78:3E:FA:DC:E9:0C:D1:D2
|
||||
Authority Information Access:
|
||||
CA Issuers - URI:http://r13.i.lencr.org/
|
||||
CA Issuers - URI:http://r12.i.lencr.org/
|
||||
X509v3 Subject Alternative Name:
|
||||
DNS:edge.lan.ddnsgeek.com
|
||||
X509v3 Certificate Policies:
|
||||
Policy: 2.23.140.1.2.1
|
||||
X509v3 CRL Distribution Points:
|
||||
Full Name:
|
||||
URI:http://r13.c.lencr.org/66.crl
|
||||
URI:http://r12.c.lencr.org/36.crl
|
||||
|
||||
CT Precertificate SCTs:
|
||||
Signed Certificate Timestamp:
|
||||
Version : v1 (0x0)
|
||||
Log ID : 64:11:C4:6C:A4:12:EC:A7:89:1C:A2:02:2E:00:BC:AB:
|
||||
4F:28:07:D4:1E:35:27:AB:EA:FE:D5:03:C9:7D:CD:F0
|
||||
Timestamp : Feb 9 20:00:57.423 2026 GMT
|
||||
Extensions: none
|
||||
Log ID : 46:AF:86:3D:3B:3E:E5:9F:A5:77:DE:A8:24:5D:36:B0:
|
||||
D9:ED:22:A2:23:F4:61:77:41:22:94:52:EE:95:50:5F
|
||||
Timestamp : Apr 10 23:55:38.330 2026 GMT
|
||||
Extensions: 00:00:05:00:03:8A:35:3D
|
||||
Signature : ecdsa-with-SHA256
|
||||
30:44:02:20:52:8E:58:DC:53:91:8D:CD:20:EA:F4:4E:
|
||||
D5:57:53:24:70:7D:7C:7F:19:44:DA:99:06:CC:74:90:
|
||||
80:AB:F2:D1:02:20:14:9E:36:EA:9E:24:DF:FC:03:45:
|
||||
1F:3C:63:DC:90:2C:7F:D1:0C:7E:9A:D2:F0:EB:96:D0:
|
||||
C9:E5:A1:41:E6:96
|
||||
30:44:02:20:63:DC:83:A3:5E:CC:C8:1A:1E:FE:34:BA:
|
||||
26:94:F3:E2:1C:1E:0C:A6:80:15:75:7B:EE:43:3F:0A:
|
||||
45:62:74:59:02:20:3B:D9:FE:16:8F:7C:7B:9C:D9:E9:
|
||||
C3:F1:3C:17:77:72:B2:02:9A:50:C9:93:DF:61:7F:24:
|
||||
11:1C:C1:DD:18:79
|
||||
Signed Certificate Timestamp:
|
||||
Version : v1 (0x0)
|
||||
Log ID : E3:23:8D:F2:8D:A2:88:E0:AA:E0:AC:F0:FA:90:C9:85:
|
||||
F0:B6:BF:F5:D2:A5:27:B0:01:FC:1C:44:58:C4:B6:E8
|
||||
Timestamp : Feb 9 20:00:57.524 2026 GMT
|
||||
Extensions: 00:00:05:00:32:0E:2B:5A
|
||||
Log ID : D8:09:55:3B:94:4F:7A:FF:C8:16:19:6F:94:4F:85:AB:
|
||||
B0:F8:FC:5E:87:55:26:0F:15:D1:2E:72:BB:45:4B:14
|
||||
Timestamp : Apr 10 23:55:38.344 2026 GMT
|
||||
Extensions: none
|
||||
Signature : ecdsa-with-SHA256
|
||||
30:45:02:21:00:C7:32:A4:A8:E7:11:84:C4:40:74:35:
|
||||
F6:09:D6:6A:7C:27:E7:FB:9B:72:2A:3F:BF:0A:E5:87:
|
||||
7F:BC:60:DD:BD:02:20:4F:10:15:B9:42:2D:F9:5A:5A:
|
||||
DA:8D:8B:51:3F:7E:19:5F:F6:AB:23:24:B0:4E:61:BE:
|
||||
61:F7:6A:05:AA:C8:DD
|
||||
30:44:02:20:4C:10:18:FE:37:3D:52:A9:B7:28:0E:5A:
|
||||
4E:0A:0C:40:F9:78:6E:7E:4F:90:9B:3D:EA:FD:5B:6E:
|
||||
2B:B4:76:C6:02:20:61:DC:15:D2:5E:E5:BF:7D:6B:42:
|
||||
5A:9B:7A:13:A5:04:6D:81:57:8C:5A:BF:9F:59:68:7A:
|
||||
66:41:5C:85:ED:A0
|
||||
Verify m:
|
||||
unable to get local issuer certificate
|
||||
|
||||
@@ -185,8 +185,8 @@ RSA Key Strength: 4096
|
||||
|
||||
Subject: edge.lan.ddnsgeek.com
|
||||
Altnames: DNS:edge.lan.ddnsgeek.com
|
||||
Issuer: R13
|
||||
Issuer: R12
|
||||
|
||||
Not valid before: Feb 9 19:02:27 2026 GMT
|
||||
Not valid after: May 10 19:02:26 2026 GMT
|
||||
Not valid before: Apr 10 22:57:08 2026 GMT
|
||||
Not valid after: Jul 9 22:57:07 2026 GMT
|
||||
|
||||
|
||||
@@ -1,54 +1,181 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:48 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com" start="1775374728" startstr="Sun Apr 5 07:38:48 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:55 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 443 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp443/tcp_443_https_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp443/xml/tcp_443_https_nmap.xml edge.lan.ddnsgeek.com" start="1776137155" startstr="Tue Apr 14 03:25:55 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="1" services="443"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374739"/>
|
||||
<taskend task="NSE" time="1775374739"/>
|
||||
<taskbegin task="NSE" time="1775374739"/>
|
||||
<taskend task="NSE" time="1775374739"/>
|
||||
<taskbegin task="NSE" time="1775374739"/>
|
||||
<taskend task="NSE" time="1775374739"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374740"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374740"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374740"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374740"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374740"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775374740" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374745"/>
|
||||
<taskend task="Service scan" time="1775374759" extrainfo="1 service on 1 host"/>
|
||||
<taskbegin task="NSE" time="1775374759"/>
|
||||
<taskprogress task="NSE" time="1775374790" percent="68.01" remaining="15" etc="1775374805"/>
|
||||
<taskprogress task="NSE" time="1775374821" percent="82.24" remaining="14" etc="1775374834"/>
|
||||
<taskprogress task="NSE" time="1775374851" percent="82.95" remaining="19" etc="1775374870"/>
|
||||
<taskprogress task="NSE" time="1775374881" percent="84.04" remaining="24" etc="1775374904"/>
|
||||
<taskprogress task="NSE" time="1775374913" percent="88.60" remaining="20" etc="1775374933"/>
|
||||
<taskprogress task="NSE" time="1775374946" percent="88.60" remaining="25" etc="1775374970"/>
|
||||
<taskprogress task="NSE" time="1775374978" percent="97.08" remaining="7" etc="1775374985"/>
|
||||
<taskprogress task="NSE" time="1775375014" percent="98.71" remaining="4" etc="1775375017"/>
|
||||
<taskprogress task="NSE" time="1775375044" percent="98.71" remaining="4" etc="1775375048"/>
|
||||
<taskprogress task="NSE" time="1775375079" percent="98.71" remaining="5" etc="1775375083"/>
|
||||
<taskprogress task="NSE" time="1775375110" percent="99.35" remaining="3" etc="1775375112"/>
|
||||
<taskprogress task="NSE" time="1775375140" percent="99.35" remaining="3" etc="1775375142"/>
|
||||
<taskprogress task="NSE" time="1775375170" percent="99.68" remaining="2" etc="1775375171"/>
|
||||
<taskprogress task="NSE" time="1775375269" percent="99.68" remaining="2" etc="1775375271"/>
|
||||
<taskprogress task="NSE" time="1775375311" percent="99.68" remaining="2" etc="1775375313"/>
|
||||
<taskprogress task="NSE" time="1775375356" percent="99.68" remaining="2" etc="1775375358"/>
|
||||
<taskend task="NSE" time="1775375428"/>
|
||||
<taskbegin task="NSE" time="1775375441"/>
|
||||
<taskend task="NSE" time="1775375455"/>
|
||||
<taskbegin task="NSE" time="1775375455"/>
|
||||
<taskend task="NSE" time="1775375455"/>
|
||||
<host starttime="1775374740" endtime="1775375455"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137165"/>
|
||||
<taskend task="NSE" time="1776137165"/>
|
||||
<taskbegin task="NSE" time="1776137165"/>
|
||||
<taskend task="NSE" time="1776137165"/>
|
||||
<taskbegin task="NSE" time="1776137165"/>
|
||||
<taskend task="NSE" time="1776137166"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137166"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137166"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137166"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137166"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137166"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137166" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137172"/>
|
||||
<taskend task="Service scan" time="1776137188" extrainfo="1 service on 1 host"/>
|
||||
<taskbegin task="NSE" time="1776137188"/>
|
||||
<taskprogress task="NSE" time="1776137219" percent="85.99" remaining="6" etc="1776137224"/>
|
||||
<taskprogress task="NSE" time="1776137249" percent="99.35" remaining="1" etc="1776137249"/>
|
||||
<taskprogress task="NSE" time="1776137279" percent="99.68" remaining="1" etc="1776137279"/>
|
||||
<taskprogress task="NSE" time="1776137309" percent="99.68" remaining="1" etc="1776137309"/>
|
||||
<taskprogress task="NSE" time="1776137339" percent="99.68" remaining="1" etc="1776137339"/>
|
||||
<taskprogress task="NSE" time="1776137369" percent="99.68" remaining="1" etc="1776137370"/>
|
||||
<taskprogress task="NSE" time="1776137399" percent="99.68" remaining="1" etc="1776137400"/>
|
||||
<taskprogress task="NSE" time="1776137429" percent="99.68" remaining="1" etc="1776137430"/>
|
||||
<taskprogress task="NSE" time="1776137459" percent="99.68" remaining="1" etc="1776137460"/>
|
||||
<taskend task="NSE" time="1776137467"/>
|
||||
<taskbegin task="NSE" time="1776137467"/>
|
||||
<taskend task="NSE" time="1776137469"/>
|
||||
<taskbegin task="NSE" time="1776137469"/>
|
||||
<taskend task="NSE" time="1776137469"/>
|
||||
<host starttime="1776137166" endtime="1776137469"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="edge.lan.ddnsgeek.com" type="user"/>
|
||||
<hostname name="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net" type="PTR"/>
|
||||
</hostnames>
|
||||
<ports><port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-dombased-xss" output="Couldn't find any DOM based XSS."/><script id="http-useragent-tester" output="
 Status for browser useragent: 404
 Allowed User Agents: 
 Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
 libwww
 lwp-trivial
 libcurl-agent/1.0
 PHP/
 Python-urllib/2.5
 GT::WWW
 Snoopy
 MFC_Tear_Sample
 HTTP::Lite
 PHPCrawl
 URI::Fetch
 Zend_Http_Client
 http client
 PECL::HTTP
 Wget/1.13.4 (linux-gnu)
 WWW-Mechanize/1.34"><elem key="Status for browser useragent">404</elem>
|
||||
<ports><port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-feed" output="Couldn't find any feeds."/><script id="http-chrono" output="Request times for /; avg: 643.62ms; min: 493.39ms; max: 859.71ms"/><script id="http-dombased-xss" output="Couldn't find any DOM based XSS."/><script id="http-vhosts" output="
127 names had status 404
auth.lan.ddnsgeek.com : 200"/><script id="http-security-headers" output="
 Strict_Transport_Security: 
 HSTS not configured in HTTPS Server
 X_Content_Type_Options: 
 Header: X-Content-Type-Options: nosniff
 Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type. "><table key="Strict_Transport_Security">
|
||||
<elem>HSTS not configured in HTTPS Server</elem>
|
||||
</table>
|
||||
<table key="X_Content_Type_Options">
|
||||
<elem>Header: X-Content-Type-Options: nosniff</elem>
|
||||
<elem>Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type. </elem>
|
||||
</table>
|
||||
</script><script id="http-date" output="Tue, 14 Apr 2026 03:26:55 GMT; -3s from local time."><elem key="date">2026-04-14T03:26:55+00:00</elem>
|
||||
<elem key="delta">-3.0</elem>
|
||||
</script><script id="http-litespeed-sourcecode-download" output="Request with null byte did not work. This web server might not be vulnerable"/><script id="http-referer-checker" output="Couldn't find any cross-domain scripts."/><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script><script id="ssl-enum-ciphers" output="
 TLSv1.2: 
 ciphers: 
 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (secp256r1) - A
 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 (secp256r1) - A
 compressors: 
 NULL
 cipher preference: client
 warnings: 
 Key exchange (secp256r1) of lower strength than certificate key
 TLSv1.3: 
 ciphers: 
 TLS_AKE_WITH_AES_128_GCM_SHA256 (X25519MLKEM768) - A
 TLS_AKE_WITH_AES_256_GCM_SHA384 (X25519MLKEM768) - A
 TLS_AKE_WITH_CHACHA20_POLY1305_SHA256 (X25519MLKEM768) - A
 cipher preference: server
 least strength: A"><table key="TLSv1.2">
|
||||
<table key="ciphers">
|
||||
<table>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
</table>
|
||||
<table key="compressors">
|
||||
<elem>NULL</elem>
|
||||
</table>
|
||||
<elem key="cipher preference">client</elem>
|
||||
<table key="warnings">
|
||||
<elem>Key exchange (secp256r1) of lower strength than certificate key</elem>
|
||||
</table>
|
||||
</table>
|
||||
<table key="TLSv1.3">
|
||||
<table key="ciphers">
|
||||
<table>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="name">TLS_AKE_WITH_AES_128_GCM_SHA256</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="name">TLS_AKE_WITH_AES_256_GCM_SHA384</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="name">TLS_AKE_WITH_CHACHA20_POLY1305_SHA256</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="cipher preference">server</elem>
|
||||
</table>
|
||||
<elem key="least strength">A</elem>
|
||||
</script><script id="http-headers" output="
 Content-Type: text/plain; charset=utf-8
 X-Content-Type-Options: nosniff
 Date: Tue, 14 Apr 2026 03:27:03 GMT
 Content-Length: 19
 Connection: close
 
 (Request type: GET)
"/><script id="http-wordpress-users" output="[Error] Wordpress installation was not found. We couldn't find wp-login.php"/><script id="http-fetch" output="Please enter the complete path of the directory to save data in."><elem key="ERROR">Please enter the complete path of the directory to save data in.</elem>
|
||||
</script><script id="http-sitemap-generator" output="
 Directory structure:
 Longest directory structure:
 Depth: 0
 Dir: /
 Total files found (by extension):
 
"/><script id="http-stored-xss" output="Couldn't find any stored XSS vulnerabilities."/><script id="http-malware-host" output="Host appears to be clean"/><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-04-10T22:57:08
Not valid after: 2026-07-09T22:57:07
MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
-----BEGIN CERTIFICATE-----
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
rWBgpRaT
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
<elem key="commonName">R12</elem>
|
||||
<elem key="countryName">US</elem>
|
||||
<elem key="organizationName">Let's Encrypt</elem>
|
||||
</table>
|
||||
<table key="pubkey">
|
||||
<elem key="type">rsa</elem>
|
||||
<elem key="bits">4096</elem>
|
||||
<elem key="modulus">D142F0B6B814C81722393D91E1A6B830BCC2965062399556FE372ABF9C8AA3F5C423FF8F09DBD7FFD23CE0391D2A790FCECC2978CF32CD7BEEE83C7BF2E2DA02804CD2E647182B9C24CE06BE7FDAF87C2B66B67348C40463155FBE9AFD68B5B7883791FF9E2A2CC8D227408B7EC5D0ECE281A777FAD94107E91C3913D16A269DE8BFA31C8E73BC2038BA38AD95AA02C6DB3FA83433600DFE655BCC558711A6B1838D515AD6CB3B8353625DF8604DC7FB3119A57AF076D22B17989A529011B0B5FFE716C455C313DBF8749924BB08DAC9233695659F0F664C7E7F3736C02EF8C2A62010C2BD84ABB0D439CFDF7B58DF2F9F2C6F03B14978B243EF17724D8A0AC60C993BEE674122E57E2BCF0A14543B16A7929BA839B5EB47ED53E3614156CBAAE8241E46D3EFB7DC24669C13D71054DF5DC19C4C34BFA23608509ED9370F92A888D89CC4DEA1295C568D71FE22C7F95FE486E78193B9C59181DF27B91270F1E092B5A5F543B452963533E1EF9FB1425B0BCEBC6146992A52346500C03FABD0BFEF3DC26C18F17FC4A183F30FABE59BE0EE66C8B85DFD31F2455130B5A3D0447DE3F273858A2B1875B20FC6DD773E247D5541B306A9BE375294ADACF4D4E33060E55E5F043389BDEA9A02E2C54039EC83A01E997913911C35A5A82373F0B956B898C20A8DEF67ACC0C092F6F19E3C5D5154CC2D37EB13889FDFD8DFFBBD54EA5D</elem>
|
||||
<elem key="exponent">65537</elem>
|
||||
</table>
|
||||
<table key="extensions">
|
||||
<table>
|
||||
<elem key="name">X509v3 Key Usage</elem>
|
||||
<elem key="value">Digital Signature, Key Encipherment</elem>
|
||||
<elem key="critical">true</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Extended Key Usage</elem>
|
||||
<elem key="value">TLS Web Server Authentication</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Basic Constraints</elem>
|
||||
<elem key="value">CA:FALSE</elem>
|
||||
<elem key="critical">true</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Key Identifier</elem>
|
||||
<elem key="value">C0:71:23:F3:59:E2:46:4A:11:17:E6:A5:EB:99:AB:AB:0F:AB:AD:54</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Authority Key Identifier</elem>
|
||||
<elem key="value">00:B5:29:F2:2D:8E:6F:31:E8:9B:4C:AD:78:3E:FA:DC:E9:0C:D1:D2</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">Authority Information Access</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r12.i.lencr.org/</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Alternative Name</elem>
|
||||
<elem key="value">DNS:edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Certificate Policies</elem>
|
||||
<elem key="value">Policy: 2.23.140.1.2.1</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 CRL Distribution Points</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r12.c.lencr.org/36.crl
</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">CT Precertificate SCTs</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 46:AF:86:3D:3B:3E:E5:9F:A5:77:DE:A8:24:5D:36:B0:
 D9:ED:22:A2:23:F4:61:77:41:22:94:52:EE:95:50:5F
 Timestamp : Apr 10 23:55:38.330 2026 GMT
 Extensions: 00:00:05:00:03:8A:35:3D
 Signature : ecdsa-with-SHA256
 30:44:02:20:63:DC:83:A3:5E:CC:C8:1A:1E:FE:34:BA:
 26:94:F3:E2:1C:1E:0C:A6:80:15:75:7B:EE:43:3F:0A:
 45:62:74:59:02:20:3B:D9:FE:16:8F:7C:7B:9C:D9:E9:
 C3:F1:3C:17:77:72:B2:02:9A:50:C9:93:DF:61:7F:24:
 11:1C:C1:DD:18:79
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : D8:09:55:3B:94:4F:7A:FF:C8:16:19:6F:94:4F:85:AB:
 B0:F8:FC:5E:87:55:26:0F:15:D1:2E:72:BB:45:4B:14
 Timestamp : Apr 10 23:55:38.344 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:4C:10:18:FE:37:3D:52:A9:B7:28:0E:5A:
 4E:0A:0C:40:F9:78:6E:7E:4F:90:9B:3D:EA:FD:5B:6E:
 2B:B4:76:C6:02:20:61:DC:15:D2:5E:E5:BF:7D:6B:42:
 5A:9B:7A:13:A5:04:6D:81:57:8C:5A:BF:9F:59:68:7A:
 66:41:5C:85:ED:A0</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="sig_algo">sha256WithRSAEncryption</elem>
|
||||
<table key="validity">
|
||||
<elem key="notBefore">2026-04-10T22:57:08</elem>
|
||||
<elem key="notAfter">2026-07-09T22:57:07</elem>
|
||||
</table>
|
||||
<elem key="md5">22756a09ffa70fa3e9b4d4d9935bcc9c</elem>
|
||||
<elem key="sha1">4254b60ed6a3e1d5c688579090774d486771324a</elem>
|
||||
<elem key="sha256">ba1337c3b1bada027a626127b74b5a55a998f16253216d67437b83e475c99523</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
MIIGAjCCBOqgAwIBAgISBmcFwVupv+qAOWoPyvIdTxKjMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTIwHhcNMjYwNDEwMjI1NzA4WhcNMjYwNzA5MjI1NzA3WjAgMR4wHAYDVQQD
ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
FV++mv1otbeIN5H/niosyNInQIt+xdDs4oGnd/rZQQfpHDkT0Womnei/oxyOc7wg
OLo4rZWqAsbbP6g0M2AN/mVbzFWHEaaxg41RWtbLO4NTYl34YE3H+zEZpXrwdtIr
F5iaUpARsLX/5xbEVcMT2/h0mSS7CNrJIzaVZZ8PZkx+fzc2wC74wqYgEMK9hKuw
1DnP33tY3y+fLG8DsUl4skPvF3JNigrGDJk77mdBIuV+K88KFFQ7FqeSm6g5tetH
7VPjYUFWy6roJB5G0++33CRmnBPXEFTfXcGcTDS/ojYIUJ7ZNw+SqIjYnMTeoSlc
Vo1x/iLH+V/khueBk7nFkYHfJ7kScPHgkrWl9UO0UpY1M+Hvn7FCWwvOvGFGmSpS
NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
ITCCAh0wDgYDVR0PAQH/BAQDAgWgMBMGA1UdJQQMMAoGCCsGAQUFBwMBMAwGA1Ud
EwEB/wQCMAAwHQYDVR0OBBYEFMBxI/NZ4kZKERfmpeuZq6sPq61UMB8GA1UdIwQY
MBaAFAC1KfItjm8x6JtMrXg++tzpDNHSMDMGCCsGAQUFBwEBBCcwJTAjBggrBgEF
BQcwAoYXaHR0cDovL3IxMi5pLmxlbmNyLm9yZy8wIAYDVR0RBBkwF4IVZWRnZS5s
YW4uZGRuc2dlZWsuY29tMBMGA1UdIAQMMAowCAYGZ4EMAQIBMC4GA1UdHwQnMCUw
I6AhoB+GHWh0dHA6Ly9yMTIuYy5sZW5jci5vcmcvMzYuY3JsMIIBCgYKKwYBBAHW
eQIEAgSB+wSB+AD2AH0ARq+GPTs+5Z+ld96oJF02sNntIqIj9GF3QSKUUu6VUF8A
AAGdedKZ2gAIAAAFAAOKNT0EAwBGMEQCIGPcg6NezMgaHv40uiaU8+IcHgymgBV1
e+5DPwpFYnRZAiA72f4Wj3x7nNnpw/E8F3dysgKaUMmT32F/JBEcwd0YeQB1ANgJ
VTuUT3r/yBYZb5RPhauw+Pxeh1UmDxXRLnK7RUsUAAABnXnSmegAAAQDAEYwRAIg
TBAY/jc9Uqm3KA5aTgoMQPl4bn5PkJs96v1bbiu0dsYCIGHcFdJe5b99a0Jam3oT
pQRtgVeMWr+fWWh6ZkFche2gMA0GCSqGSIb3DQEBCwUAA4IBAQCK5Zej1vaajKqy
zc3QTBJqzPG+n1gNi6K1dcSJcPNbb62mV1UY3XPgNIc/IwzV3I9DzPyNOVRCNYGc
S9879Y2jhyoTMS8iFg2VfH0tjnYsTbIiI1z9Zr2R5n8DKxcZbyzvCR618cKJG04M
t+RdfmfZNX2j8nvrDmwZdH97SoyvkDXWwBVG99OJarNpqpBE7Rm+BxEwzv1MWhY3
IjkK4Ezy8xNqoJjj69wC+S8VVJ+ZqAlL7rZjUR3iQgNthvNyzLd0tknJO0tWsgzd
DzZ5090yUDH7km5SJJq0N2WuHMCpUnlL+25SUaSXLnI9blwD1Vnmdub6cjrDIeyO
rWBgpRaT
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="http-useragent-tester" output="
 Status for browser useragent: 404
 Allowed User Agents: 
 Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
 libwww
 lwp-trivial
 libcurl-agent/1.0
 PHP/
 Python-urllib/2.5
 GT::WWW
 Snoopy
 MFC_Tear_Sample
 HTTP::Lite
 PHPCrawl
 URI::Fetch
 Zend_Http_Client
 http client
 PECL::HTTP
 Wget/1.13.4 (linux-gnu)
 WWW-Mechanize/1.34"><elem key="Status for browser useragent">404</elem>
|
||||
<table key="Allowed User Agents">
|
||||
<elem>Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)</elem>
|
||||
<elem>libwww</elem>
|
||||
@@ -68,150 +195,16 @@
|
||||
<elem>Wget/1.13.4 (linux-gnu)</elem>
|
||||
<elem>WWW-Mechanize/1.34</elem>
|
||||
</table>
|
||||
</script><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-09T19:02:27
Not valid after: 2026-05-10T19:02:26
MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
-----BEGIN CERTIFICATE-----
MIIGDTCCBPWgAwIBAgISBuIJgdBv5H+NtMLDEN4CvrfBMA0GCSqGSIb3DQEBCwUA
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
EwNSMTMwHhcNMjYwMjA5MTkwMjI3WhcNMjYwNTEwMTkwMjI2WjAgMR4wHAYDVQQD
ExVlZGdlLmxhbi5kZG5zZ2Vlay5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw
ggIKAoICAQDRQvC2uBTIFyI5PZHhprgwvMKWUGI5lVb+Nyq/nIqj9cQj/48J29f/
0jzgOR0qeQ/OzCl4zzLNe+7oPHvy4toCgEzS5kcYK5wkzga+f9r4fCtmtnNIxARj
FV++mv1otbeIN5H/niosyNInQIt+xdDs4oGnd/rZQQfpHDkT0Womnei/oxyOc7wg
OLo4rZWqAsbbP6g0M2AN/mVbzFWHEaaxg41RWtbLO4NTYl34YE3H+zEZpXrwdtIr
F5iaUpARsLX/5xbEVcMT2/h0mSS7CNrJIzaVZZ8PZkx+fzc2wC74wqYgEMK9hKuw
1DnP33tY3y+fLG8DsUl4skPvF3JNigrGDJk77mdBIuV+K88KFFQ7FqeSm6g5tetH
7VPjYUFWy6roJB5G0++33CRmnBPXEFTfXcGcTDS/ojYIUJ7ZNw+SqIjYnMTeoSlc
Vo1x/iLH+V/khueBk7nFkYHfJ7kScPHgkrWl9UO0UpY1M+Hvn7FCWwvOvGFGmSpS
NGUAwD+r0L/vPcJsGPF/xKGD8w+r5Zvg7mbIuF39MfJFUTC1o9BEfePyc4WKKxh1
sg/G3Xc+JH1VQbMGqb43UpStrPTU4zBg5V5fBDOJveqaAuLFQDnsg6AemXkTkRw1
pagjc/C5VriYwgqN72eswMCS9vGePF1RVMwtN+sTiJ/f2N/7vVTqXQIDAQABo4IC
LDCCAigwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
BQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBTAcSPzWeJGShEX5qXrmaurD6ut
VDAfBgNVHSMEGDAWgBTnq58PLDOgU9NeT3jIsoQOO9aSMzAzBggrBgEFBQcBAQQn
MCUwIwYIKwYBBQUHMAKGF2h0dHA6Ly9yMTMuaS5sZW5jci5vcmcvMCAGA1UdEQQZ
MBeCFWVkZ2UubGFuLmRkbnNnZWVrLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAu
BgNVHR8EJzAlMCOgIaAfhh1odHRwOi8vcjEzLmMubGVuY3Iub3JnLzY2LmNybDCC
AQsGCisGAQQB1nkCBAIEgfwEgfkA9wB1AGQRxGykEuyniRyiAi4AvKtPKAfUHjUn
q+r+1QPJfc3wAAABnEP+Lk8AAAQDAEYwRAIgUo5Y3FORjc0g6vRO1VdTJHB9fH8Z
RNqZBsx0kICr8tECIBSeNuqeJN/8A0UfPGPckCx/0Qx+mtLw65bQyeWhQeaWAH4A
4yON8o2iiOCq4Kzw+pDJhfC2v/XSpSewAfwcRFjEtugAAAGcQ/4utAAIAAAFADIO
K1oEAwBHMEUCIQDHMqSo5xGExEB0NfYJ1mp8J+f7m3IqP78K5Yd/vGDdvQIgTxAV
uUIt+Vpa2o2LUT9+GV/2qyMksE5hvmH3agWqyN0wDQYJKoZIhvcNAQELBQADggEB
ACwtWqBDwyQXXKjwL5ZP50TxAPon2VXpqKeH7RKHrpmxfLBJPby5CnlDshNTCNPR
pdfiARV34X+d40EAIL8EeA3hKyQJ+U/nUQtO0Qv2zj8ep5q0cnE38a6r+ihnGDzH
0RU3Ksu5XIHhMeenw64JXApk6axLICUGO/xwGimNg3JRCbHDrZ9p7n4/Xo+YgMgH
6WBGCuotn1o5Dh4/Q/27xs7mFi3E3qkmWvs7Yj2QRhCXeHb+OatiLjYQ9gf23K7s
tVVtKCB267dbgqwuuMqHZUTgoQND85jj2Uj7b7ZYRrKYeQ1iI6gi9oRldkTaA6gp
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
<elem key="commonName">R13</elem>
|
||||
<elem key="countryName">US</elem>
|
||||
<elem key="organizationName">Let's Encrypt</elem>
|
||||
</table>
|
||||
<table key="pubkey">
|
||||
<elem key="type">rsa</elem>
|
||||
<elem key="bits">4096</elem>
|
||||
<elem key="modulus">D142F0B6B814C81722393D91E1A6B830BCC2965062399556FE372ABF9C8AA3F5C423FF8F09DBD7FFD23CE0391D2A790FCECC2978CF32CD7BEEE83C7BF2E2DA02804CD2E647182B9C24CE06BE7FDAF87C2B66B67348C40463155FBE9AFD68B5B7883791FF9E2A2CC8D227408B7EC5D0ECE281A777FAD94107E91C3913D16A269DE8BFA31C8E73BC2038BA38AD95AA02C6DB3FA83433600DFE655BCC558711A6B1838D515AD6CB3B8353625DF8604DC7FB3119A57AF076D22B17989A529011B0B5FFE716C455C313DBF8749924BB08DAC9233695659F0F664C7E7F3736C02EF8C2A62010C2BD84ABB0D439CFDF7B58DF2F9F2C6F03B14978B243EF17724D8A0AC60C993BEE674122E57E2BCF0A14543B16A7929BA839B5EB47ED53E3614156CBAAE8241E46D3EFB7DC24669C13D71054DF5DC19C4C34BFA23608509ED9370F92A888D89CC4DEA1295C568D71FE22C7F95FE486E78193B9C59181DF27B91270F1E092B5A5F543B452963533E1EF9FB1425B0BCEBC6146992A52346500C03FABD0BFEF3DC26C18F17FC4A183F30FABE59BE0EE66C8B85DFD31F2455130B5A3D0447DE3F273858A2B1875B20FC6DD773E247D5541B306A9BE375294ADACF4D4E33060E55E5F043389BDEA9A02E2C54039EC83A01E997913911C35A5A82373F0B956B898C20A8DEF67ACC0C092F6F19E3C5D5154CC2D37EB13889FDFD8DFFBBD54EA5D</elem>
|
||||
<elem key="exponent">65537</elem>
|
||||
</table>
|
||||
<table key="extensions">
|
||||
<table>
|
||||
<elem key="name">X509v3 Key Usage</elem>
|
||||
<elem key="value">Digital Signature, Key Encipherment</elem>
|
||||
<elem key="critical">true</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Extended Key Usage</elem>
|
||||
<elem key="value">TLS Web Server Authentication, TLS Web Client Authentication</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Basic Constraints</elem>
|
||||
<elem key="value">CA:FALSE</elem>
|
||||
<elem key="critical">true</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Key Identifier</elem>
|
||||
<elem key="value">C0:71:23:F3:59:E2:46:4A:11:17:E6:A5:EB:99:AB:AB:0F:AB:AD:54</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Authority Key Identifier</elem>
|
||||
<elem key="value">E7:AB:9F:0F:2C:33:A0:53:D3:5E:4F:78:C8:B2:84:0E:3B:D6:92:33</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">Authority Information Access</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r13.i.lencr.org/</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Alternative Name</elem>
|
||||
<elem key="value">DNS:edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Certificate Policies</elem>
|
||||
<elem key="value">Policy: 2.23.140.1.2.1</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 CRL Distribution Points</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r13.c.lencr.org/66.crl
</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">CT Precertificate SCTs</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 64:11:C4:6C:A4:12:EC:A7:89:1C:A2:02:2E:00:BC:AB:
 4F:28:07:D4:1E:35:27:AB:EA:FE:D5:03:C9:7D:CD:F0
 Timestamp : Feb 9 20:00:57.423 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:52:8E:58:DC:53:91:8D:CD:20:EA:F4:4E:
 D5:57:53:24:70:7D:7C:7F:19:44:DA:99:06:CC:74:90:
 80:AB:F2:D1:02:20:14:9E:36:EA:9E:24:DF:FC:03:45:
 1F:3C:63:DC:90:2C:7F:D1:0C:7E:9A:D2:F0:EB:96:D0:
 C9:E5:A1:41:E6:96
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : E3:23:8D:F2:8D:A2:88:E0:AA:E0:AC:F0:FA:90:C9:85:
 F0:B6:BF:F5:D2:A5:27:B0:01:FC:1C:44:58:C4:B6:E8
 Timestamp : Feb 9 20:00:57.524 2026 GMT
 Extensions: 00:00:05:00:32:0E:2B:5A
 Signature : ecdsa-with-SHA256
 30:45:02:21:00:C7:32:A4:A8:E7:11:84:C4:40:74:35:
 F6:09:D6:6A:7C:27:E7:FB:9B:72:2A:3F:BF:0A:E5:87:
 7F:BC:60:DD:BD:02:20:4F:10:15:B9:42:2D:F9:5A:5A:
 DA:8D:8B:51:3F:7E:19:5F:F6:AB:23:24:B0:4E:61:BE:
 61:F7:6A:05:AA:C8:DD</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="sig_algo">sha256WithRSAEncryption</elem>
|
||||
<table key="validity">
|
||||
<elem key="notBefore">2026-02-09T19:02:27</elem>
|
||||
<elem key="notAfter">2026-05-10T19:02:26</elem>
|
||||
</table>
|
||||
<elem key="md5">984ac11f575c6340ccf8b895593deace</elem>
|
||||
<elem key="sha1">822c672a19772e13a86924c03ef49c2a6535b765</elem>
|
||||
<elem key="sha256">f43deda6d3ca5887afb9939852fbad09a67cc5a4a0c2927fdf266200c3b6d216</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
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
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="http-litespeed-sourcecode-download" output="Request with null byte did not work. This web server might not be vulnerable"/><script id="http-headers" output="
 Content-Type: text/plain; charset=utf-8
 X-Content-Type-Options: nosniff
 Date: Sun, 05 Apr 2026 07:41:14 GMT
 Content-Length: 19
 Connection: close
 
 (Request type: GET)
"/><script id="http-stored-xss" output="Couldn't find any stored XSS vulnerabilities."/><script id="http-malware-host" output="Host appears to be clean"/><script id="http-vhosts" output="
auth.lan.ddnsgeek.com : 200
127 names had status 404"/><script id="http-chrono" output="Request times for /; avg: 12689.98ms; min: 1737.94ms; max: 27884.19ms"/><script id="http-devframework" output="Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages."/><script id="http-wordpress-users" output="[Error] Wordpress installation was not found. We couldn't find wp-login.php"/><script id="http-fetch" output="Please enter the complete path of the directory to save data in."><elem key="ERROR">Please enter the complete path of the directory to save data in.</elem>
|
||||
</script><script id="http-wordpress-enum" output="Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)"/><script id="http-drupal-enum" output="Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)"/><script id="http-feed" output="Couldn't find any feeds."/><script id="http-security-headers" output="
 Strict_Transport_Security: 
 HSTS not configured in HTTPS Server
 X_Content_Type_Options: 
 Header: X-Content-Type-Options: nosniff
 Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type. "><table key="Strict_Transport_Security">
|
||||
<elem>HSTS not configured in HTTPS Server</elem>
|
||||
</table>
|
||||
<table key="X_Content_Type_Options">
|
||||
<elem>Header: X-Content-Type-Options: nosniff</elem>
|
||||
<elem>Description: Will prevent the browser from MIME-sniffing a response away from the declared content-type. </elem>
|
||||
</table>
|
||||
</script><script id="http-errors" output="
Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
 Found the following error pages: 
 
 Error Code: 404
 	http://edge.lan.ddnsgeek.com:443/
"/><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script><script id="http-csrf" output="Couldn't find any CSRF vulnerabilities."/><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="http-date" output="Sun, 05 Apr 2026 07:39:46 GMT; -6s from local time."><elem key="date">2026-04-05T07:39:46+00:00</elem>
|
||||
<elem key="delta">-6.0</elem>
|
||||
</script><script id="http-comments-displayer" output="Couldn't find any comments."/><script id="ssl-enum-ciphers" output="
 TLSv1.2: 
 ciphers: 
 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (secp256r1) - A
 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (secp256r1) - A
 TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 (secp256r1) - A
 compressors: 
 NULL
 cipher preference: client
 warnings: 
 Key exchange (secp256r1) of lower strength than certificate key
 TLSv1.3: 
 ciphers: 
 TLS_AKE_WITH_AES_128_GCM_SHA256 (X25519MLKEM768) - A
 TLS_AKE_WITH_AES_256_GCM_SHA384 (X25519MLKEM768) - A
 TLS_AKE_WITH_CHACHA20_POLY1305_SHA256 (X25519MLKEM768) - A
 cipher preference: server
 least strength: A"><table key="TLSv1.2">
|
||||
<table key="ciphers">
|
||||
<table>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA</elem>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256</elem>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA</elem>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384</elem>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256</elem>
|
||||
<elem key="kex_info">secp256r1</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
</table>
|
||||
<table key="compressors">
|
||||
<elem>NULL</elem>
|
||||
</table>
|
||||
<elem key="cipher preference">client</elem>
|
||||
<table key="warnings">
|
||||
<elem>Key exchange (secp256r1) of lower strength than certificate key</elem>
|
||||
</table>
|
||||
</table>
|
||||
<table key="TLSv1.3">
|
||||
<table key="ciphers">
|
||||
<table>
|
||||
<elem key="name">TLS_AKE_WITH_AES_128_GCM_SHA256</elem>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_AKE_WITH_AES_256_GCM_SHA384</elem>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">TLS_AKE_WITH_CHACHA20_POLY1305_SHA256</elem>
|
||||
<elem key="kex_info">X25519MLKEM768</elem>
|
||||
<elem key="strength">A</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="cipher preference">server</elem>
|
||||
</table>
|
||||
<elem key="least strength">A</elem>
|
||||
</script><script id="http-jsonp-detection" output="Couldn't find any JSONP endpoints."/><script id="http-referer-checker" output="Couldn't find any cross-domain scripts."/><script id="http-sitemap-generator" output="
 Directory structure:
 Longest directory structure:
 Depth: 0
 Dir: /
 Total files found (by extension):
 
"/><script id="http-mobileversion-checker" output="No mobile version detected."/></port>
|
||||
</script><script id="http-comments-displayer" output="Couldn't find any comments."/><script id="http-drupal-enum" output="Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)"/><script id="http-errors" output="
Spidering limited to: maxpagecount=40; withinhost=edge.lan.ddnsgeek.com
 Found the following error pages: 
 
 Error Code: 404
 	http://edge.lan.ddnsgeek.com:443/
"/><script id="http-wordpress-enum" output="Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)"/><script id="http-jsonp-detection" output="Couldn't find any JSONP endpoints."/><script id="http-csrf" output="Couldn't find any CSRF vulnerabilities."/><script id="http-devframework" output="Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages."/><script id="http-mobileversion-checker" output="No mobile version detected."/></port>
|
||||
</ports>
|
||||
<times srtt="14569" rttvar="14569" to="100000"/>
|
||||
<times srtt="14395" rttvar="14395" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775375456"/>
|
||||
<taskend task="NSE" time="1775375456"/>
|
||||
<taskbegin task="NSE" time="1775375456"/>
|
||||
<taskend task="NSE" time="1775375456"/>
|
||||
<taskbegin task="NSE" time="1775375456"/>
|
||||
<taskend task="NSE" time="1775375456"/>
|
||||
<runstats><finished time="1775375456" timestr="Sun Apr 5 07:50:56 2026" summary="Nmap done at Sun Apr 5 07:50:56 2026; 1 IP address (1 host up) scanned in 729.18 seconds" elapsed="729.18" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137469"/>
|
||||
<taskend task="NSE" time="1776137469"/>
|
||||
<taskbegin task="NSE" time="1776137469"/>
|
||||
<taskend task="NSE" time="1776137469"/>
|
||||
<taskbegin task="NSE" time="1776137469"/>
|
||||
<taskend task="NSE" time="1776137469"/>
|
||||
<runstats><finished time="1776137469" timestr="Tue Apr 14 03:31:09 2026" summary="Nmap done at Tue Apr 14 03:31:09 2026; 1 IP address (1 host up) scanned in 315.49 seconds" elapsed="315.49" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/robots.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
|
||||
+97667
-14118
File diff suppressed because it is too large
Load Diff
@@ -283,18 +283,18 @@ Configuration {
|
||||
unique: false,
|
||||
response_size_limit: 4194304,
|
||||
}
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/] => https://edge.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[ => https://edge.lan.ddnsgeek.com/[
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/] => https://edge.lan.ddnsgeek.com/]
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.txt => https://edge.lan.ddnsgeek.com/[.txt
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].txt => https://edge.lan.ddnsgeek.com/].txt
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.html => https://edge.lan.ddnsgeek.com/[.html
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].html => https://edge.lan.ddnsgeek.com/].html
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.php => https://edge.lan.ddnsgeek.com/[.php
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].php => https://edge.lan.ddnsgeek.com/].php
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].asp => https://edge.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.asp => https://edge.lan.ddnsgeek.com/[.asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].aspx => https://edge.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.aspx => https://edge.lan.ddnsgeek.com/[.aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].asp => https://edge.lan.ddnsgeek.com/].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].aspx => https://edge.lan.ddnsgeek.com/].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/[.jsp => https://edge.lan.ddnsgeek.com/[.jsp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/].jsp => https://edge.lan.ddnsgeek.com/].jsp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/plain] => https://edge.lan.ddnsgeek.com/plain]
|
||||
@@ -311,3 +311,4 @@ Configuration {
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].asp => https://edge.lan.ddnsgeek.com/quote].asp
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].aspx => https://edge.lan.ddnsgeek.com/quote].aspx
|
||||
301 GET 1l 2w 17c http://edge.lan.ddnsgeek.com/quote].jsp => https://edge.lan.ddnsgeek.com/quote].jsp
|
||||
404 GET 0l 0w 19c https://edge.lan.ddnsgeek.com/CustomErrorFiles.aspx
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/.well-known/security.txt
|
||||
Date: Sun, 05 Apr 2026 07:38:45 GMT
|
||||
Date: Tue, 14 Apr 2026 03:25:53 GMT
|
||||
Content-Length: 17
|
||||
|
||||
Moved Permanently
|
||||
@@ -1,3 +1,22 @@
|
||||
perl: warning: Setting locale failed.
|
||||
perl: warning: Please check that your locale settings:
|
||||
LANGUAGE = (unset),
|
||||
LC_ALL = (unset),
|
||||
LC_CTYPE = (unset),
|
||||
LC_NUMERIC = "en_AU.UTF-8",
|
||||
LC_COLLATE = (unset),
|
||||
LC_TIME = "en_AU.UTF-8",
|
||||
LC_MESSAGES = (unset),
|
||||
LC_MONETARY = "en_AU.UTF-8",
|
||||
LC_ADDRESS = "en_AU.UTF-8",
|
||||
LC_IDENTIFICATION = "en_AU.UTF-8",
|
||||
LC_MEASUREMENT = "en_AU.UTF-8",
|
||||
LC_PAPER = "en_AU.UTF-8",
|
||||
LC_TELEPHONE = "en_AU.UTF-8",
|
||||
LC_NAME = "en_AU.UTF-8",
|
||||
LANG = "en_US.UTF-8"
|
||||
are supported and installed on your system.
|
||||
perl: warning: Falling back to a fallback locale ("en_US.UTF-8").
|
||||
- Nikto v2.6.0
|
||||
---------------------------------------------------------------------------
|
||||
+ Your Nikto installation is out of date.
|
||||
@@ -5,19 +24,19 @@
|
||||
+ Target Hostname: edge.lan.ddnsgeek.com
|
||||
+ Target Port: 80
|
||||
+ Platform: Unknown
|
||||
+ Start Time: 2026-04-05 07:39:23 (GMT0)
|
||||
+ Start Time: 2026-04-14 03:26:28 (GMT0)
|
||||
---------------------------------------------------------------------------
|
||||
+ Server: No banner retrieved
|
||||
+ No CGI Directories found (use '-C all' to force check all possible dirs). CGI tests skipped.
|
||||
+ [013587] /: Suggested security header missing: permissions-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
|
||||
+ [013587] /: Suggested security header missing: referrer-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: content-security-policy. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
|
||||
+ [013587] /: Suggested security header missing: x-content-type-options. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
||||
+ [013587] /: Suggested security header missing: strict-transport-security. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
||||
+ [999979] /.tools/webmail: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [999979] http://100.100.100.200/latest/meta-data/: IP address found in the 'location' header. The IP is "100.100.100.200". See: https://portswigger.net/kb/issues/00600300_private-ip-addresses-disclosed
|
||||
+ [007342] /: X-Frame-Options header is deprecated and was replaced with the Content-Security-Policy HTTP header with the frame-ancestors directive. See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/X-Frame-Options
|
||||
+ [007352] /: The X-Content-Type-Options header is not set. This could allow the user agent to render the content of the site in a different fashion to the MIME type. See: https://www.netsparker.com/web-vulnerability-scanner/vulnerabilities/missing-content-type-header/
|
||||
+ 7885 requests: 1 error and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-05 07:54:51 (GMT0) (928 seconds)
|
||||
+ 7900 requests: 16 errors and 8 items reported on the remote host
|
||||
+ End Time: 2026-04-14 03:36:46 (GMT0) (618 seconds)
|
||||
---------------------------------------------------------------------------
|
||||
+ 1 host(s) tested
|
||||
|
||||
@@ -1,71 +1,12 @@
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:46 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:53 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com
|
||||
Nmap scan report for edge.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.015s latency).
|
||||
Host is up, received user-set.
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:58 UTC for 969s
|
||||
Scanned at 2026-04-14 03:25:59 UTC for 1s
|
||||
|
||||
Bug in http-security-headers: no string output.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-stored-xss: Couldn't find any stored XSS vulnerabilities.
|
||||
|_http-referer-checker: Couldn't find any cross-domain scripts.
|
||||
|_http-malware-host: Host appears to be clean
|
||||
|_http-litespeed-sourcecode-download: Request with null byte did not work. This web server might not be vulnerable
|
||||
|_http-jsonp-detection: Couldn't find any JSONP endpoints.
|
||||
| http-sitemap-generator:
|
||||
| Directory structure:
|
||||
| Longest directory structure:
|
||||
| Depth: 0
|
||||
| Dir: /
|
||||
| Total files found (by extension):
|
||||
|_
|
||||
|_http-mobileversion-checker: No mobile version detected.
|
||||
|_http-comments-displayer: Couldn't find any comments.
|
||||
|_http-title: Did not follow redirect to https://edge.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-devframework: Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages.
|
||||
|_http-csrf: Couldn't find any CSRF vulnerabilities.
|
||||
| http-headers:
|
||||
| Location: https://edge.lan.ddnsgeek.com/
|
||||
| Date: Sun, 05 Apr 2026 07:39:42 GMT
|
||||
| Content-Length: 17
|
||||
| Connection: close
|
||||
|
|
||||
|_ (Request type: GET)
|
||||
|_http-wordpress-users: [Error] Wordpress installation was not found. We couldn't find wp-login.php
|
||||
|_http-chrono: Request times for /; avg: 1690.07ms; min: 1248.08ms; max: 2348.25ms
|
||||
|_http-errors: Couldn't find any error pages.
|
||||
| http-vhosts:
|
||||
|_128 names had status 308
|
||||
| http-useragent-tester:
|
||||
| Status for browser useragent: 404
|
||||
| Redirected To: https://edge.lan.ddnsgeek.com/
|
||||
| Allowed User Agents:
|
||||
| Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
|
||||
| libwww
|
||||
| lwp-trivial
|
||||
| libcurl-agent/1.0
|
||||
| PHP/
|
||||
| Python-urllib/2.5
|
||||
| GT::WWW
|
||||
| Snoopy
|
||||
| MFC_Tear_Sample
|
||||
| HTTP::Lite
|
||||
| PHPCrawl
|
||||
| URI::Fetch
|
||||
| Zend_Http_Client
|
||||
| http client
|
||||
| PECL::HTTP
|
||||
| Wget/1.13.4 (linux-gnu)
|
||||
|_ WWW-Mechanize/1.34
|
||||
|_http-dombased-xss: Couldn't find any DOM based XSS.
|
||||
|_http-fetch: Please enter the complete path of the directory to save data in.
|
||||
|_http-drupal-enum: Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)
|
||||
|_http-date: Sun, 05 Apr 2026 07:39:16 GMT; -2s from local time.
|
||||
|_http-wordpress-enum: Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)
|
||||
|_http-feed: Couldn't find any feeds.
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp filtered http no-response
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:55:08 2026 -- 1 IP address (1 host up) scanned in 983.26 seconds
|
||||
# Nmap done at Tue Apr 14 03:26:07 2026 -- 1 IP address (1 host up) scanned in 14.37 seconds
|
||||
|
||||
@@ -16,7 +16,7 @@ Detected Plugins:
|
||||
HTTP Headers:
|
||||
HTTP/1.1 301 Moved Permanently
|
||||
Location: https://edge.lan.ddnsgeek.com/
|
||||
Date: Sun, 05 Apr 2026 07:39:55 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:42 GMT
|
||||
Content-Length: 17
|
||||
Connection: close
|
||||
|
||||
@@ -42,7 +42,7 @@ HTTP Headers:
|
||||
HTTP/1.1 404 Not Found
|
||||
Content-Type: text/plain; charset=utf-8
|
||||
X-Content-Type-Options: nosniff
|
||||
Date: Sun, 05 Apr 2026 07:43:00 GMT
|
||||
Date: Tue, 14 Apr 2026 03:26:57 GMT
|
||||
Content-Length: 19
|
||||
Connection: close
|
||||
|
||||
|
||||
@@ -1,105 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:46 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com" start="1775374726" startstr="Sun Apr 5 07:38:46 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:53 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -p 80 "--script=banner,(http* or ssl*) and not (brute or broadcast or dos or external or http-slowloris* or fuzzer)" -oN /root/results/edge.lan.ddnsgeek.com/scans/tcp80/tcp_80_http_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/tcp80/xml/tcp_80_http_nmap.xml edge.lan.ddnsgeek.com" start="1776137153" startstr="Tue Apr 14 03:25:53 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="1" services="80"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374737"/>
|
||||
<taskend task="NSE" time="1775374737"/>
|
||||
<taskbegin task="NSE" time="1775374737"/>
|
||||
<taskend task="NSE" time="1775374737"/>
|
||||
<taskbegin task="NSE" time="1775374737"/>
|
||||
<taskend task="NSE" time="1775374737"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374737"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374737"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374737"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374737"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374737"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775374738" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374742"/>
|
||||
<taskend task="Service scan" time="1775374750" extrainfo="1 service on 1 host"/>
|
||||
<taskbegin task="NSE" time="1775374750"/>
|
||||
<taskprogress task="NSE" time="1775374781" percent="83.01" remaining="7" etc="1775374787"/>
|
||||
<taskprogress task="NSE" time="1775374811" percent="98.71" remaining="1" etc="1775374812"/>
|
||||
<taskprogress task="NSE" time="1775374841" percent="99.03" remaining="1" etc="1775374842"/>
|
||||
<taskprogress task="NSE" time="1775374872" percent="99.03" remaining="2" etc="1775374873"/>
|
||||
<taskprogress task="NSE" time="1775374902" percent="99.03" remaining="2" etc="1775374903"/>
|
||||
<taskprogress task="NSE" time="1775374932" percent="99.03" remaining="2" etc="1775374934"/>
|
||||
<taskprogress task="NSE" time="1775374962" percent="99.68" remaining="1" etc="1775374963"/>
|
||||
<taskprogress task="NSE" time="1775374992" percent="99.68" remaining="1" etc="1775374993"/>
|
||||
<taskprogress task="NSE" time="1775375022" percent="99.68" remaining="1" etc="1775375023"/>
|
||||
<taskprogress task="NSE" time="1775375052" percent="99.68" remaining="1" etc="1775375053"/>
|
||||
<taskprogress task="NSE" time="1775375082" percent="99.68" remaining="2" etc="1775375083"/>
|
||||
<taskprogress task="NSE" time="1775375112" percent="99.68" remaining="2" etc="1775375113"/>
|
||||
<taskprogress task="NSE" time="1775375142" percent="99.68" remaining="2" etc="1775375143"/>
|
||||
<taskprogress task="NSE" time="1775375172" percent="99.68" remaining="2" etc="1775375173"/>
|
||||
<taskprogress task="NSE" time="1775375202" percent="99.68" remaining="2" etc="1775375203"/>
|
||||
<taskprogress task="NSE" time="1775375263" percent="99.68" remaining="2" etc="1775375265"/>
|
||||
<taskprogress task="NSE" time="1775375374" percent="99.68" remaining="3" etc="1775375376"/>
|
||||
<taskprogress task="NSE" time="1775375418" percent="99.68" remaining="3" etc="1775375420"/>
|
||||
<taskprogress task="NSE" time="1775375448" percent="99.68" remaining="3" etc="1775375450"/>
|
||||
<taskprogress task="NSE" time="1775375478" percent="99.68" remaining="3" etc="1775375480"/>
|
||||
<taskprogress task="NSE" time="1775375508" percent="99.68" remaining="3" etc="1775375510"/>
|
||||
<taskprogress task="NSE" time="1775375538" percent="99.68" remaining="3" etc="1775375541"/>
|
||||
<taskprogress task="NSE" time="1775375568" percent="99.68" remaining="3" etc="1775375571"/>
|
||||
<taskprogress task="NSE" time="1775375598" percent="99.68" remaining="3" etc="1775375601"/>
|
||||
<taskprogress task="NSE" time="1775375628" percent="99.68" remaining="3" etc="1775375631"/>
|
||||
<taskprogress task="NSE" time="1775375658" percent="99.68" remaining="3" etc="1775375661"/>
|
||||
<taskprogress task="NSE" time="1775375688" percent="99.68" remaining="4" etc="1775375691"/>
|
||||
<taskend task="NSE" time="1775375706"/>
|
||||
<taskbegin task="NSE" time="1775375706"/>
|
||||
<taskend task="NSE" time="1775375707"/>
|
||||
<taskbegin task="NSE" time="1775375707"/>
|
||||
<taskend task="NSE" time="1775375707"/>
|
||||
<host starttime="1775374738" endtime="1775375707"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137159"/>
|
||||
<taskend task="NSE" time="1776137159"/>
|
||||
<taskbegin task="NSE" time="1776137159"/>
|
||||
<taskend task="NSE" time="1776137159"/>
|
||||
<taskbegin task="NSE" time="1776137159"/>
|
||||
<taskend task="NSE" time="1776137159"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137159"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137159"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137159"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137159"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137159"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137160" extrainfo="1 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137166"/>
|
||||
<taskbegin task="NSE" time="1776137166"/>
|
||||
<taskend task="NSE" time="1776137166"/>
|
||||
<taskbegin task="NSE" time="1776137166"/>
|
||||
<taskend task="NSE" time="1776137166"/>
|
||||
<taskbegin task="NSE" time="1776137166"/>
|
||||
<taskend task="NSE" time="1776137166"/>
|
||||
<host starttime="1776137159" endtime="1776137160"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="edge.lan.ddnsgeek.com" type="user"/>
|
||||
<hostname name="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net" type="PTR"/>
|
||||
</hostnames>
|
||||
<ports><port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-stored-xss" output="Couldn't find any stored XSS vulnerabilities."/><script id="http-referer-checker" output="Couldn't find any cross-domain scripts."/><script id="http-malware-host" output="Host appears to be clean"/><script id="http-litespeed-sourcecode-download" output="Request with null byte did not work. This web server might not be vulnerable"/><script id="http-jsonp-detection" output="Couldn't find any JSONP endpoints."/><script id="http-sitemap-generator" output="
 Directory structure:
 Longest directory structure:
 Depth: 0
 Dir: /
 Total files found (by extension):
 
"/><script id="http-mobileversion-checker" output="No mobile version detected."/><script id="http-comments-displayer" output="Couldn't find any comments."/><script id="http-title" output="Did not follow redirect to https://edge.lan.ddnsgeek.com/"><elem key="redirect_url">https://edge.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>POST</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-security-headers" output=""></script><script id="http-devframework" output="Couldn't determine the underlying framework or CMS. Try increasing 'httpspider.maxpagecount' value to spider more pages."/><script id="http-csrf" output="Couldn't find any CSRF vulnerabilities."/><script id="http-headers" output="
 Location: https://edge.lan.ddnsgeek.com/
 Date: Sun, 05 Apr 2026 07:39:42 GMT
 Content-Length: 17
 Connection: close
 
 (Request type: GET)
"/><script id="http-wordpress-users" output="[Error] Wordpress installation was not found. We couldn't find wp-login.php"/><script id="http-chrono" output="Request times for /; avg: 1690.07ms; min: 1248.08ms; max: 2348.25ms"/><script id="http-errors" output="Couldn't find any error pages."/><script id="http-vhosts" output="
128 names had status 308"/><script id="http-useragent-tester" output="
 Status for browser useragent: 404
 Redirected To: https://edge.lan.ddnsgeek.com/
 Allowed User Agents: 
 Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)
 libwww
 lwp-trivial
 libcurl-agent/1.0
 PHP/
 Python-urllib/2.5
 GT::WWW
 Snoopy
 MFC_Tear_Sample
 HTTP::Lite
 PHPCrawl
 URI::Fetch
 Zend_Http_Client
 http client
 PECL::HTTP
 Wget/1.13.4 (linux-gnu)
 WWW-Mechanize/1.34"><elem key="Status for browser useragent">404</elem>
|
||||
<elem key="Redirected To">https://edge.lan.ddnsgeek.com/</elem>
|
||||
<table key="Allowed User Agents">
|
||||
<elem>Mozilla/5.0 (compatible; Nmap Scripting Engine; https://nmap.org/book/nse.html)</elem>
|
||||
<elem>libwww</elem>
|
||||
<elem>lwp-trivial</elem>
|
||||
<elem>libcurl-agent/1.0</elem>
|
||||
<elem>PHP/</elem>
|
||||
<elem>Python-urllib/2.5</elem>
|
||||
<elem>GT::WWW</elem>
|
||||
<elem>Snoopy</elem>
|
||||
<elem>MFC_Tear_Sample</elem>
|
||||
<elem>HTTP::Lite</elem>
|
||||
<elem>PHPCrawl</elem>
|
||||
<elem>URI::Fetch</elem>
|
||||
<elem>Zend_Http_Client</elem>
|
||||
<elem>http client</elem>
|
||||
<elem>PECL::HTTP</elem>
|
||||
<elem>Wget/1.13.4 (linux-gnu)</elem>
|
||||
<elem>WWW-Mechanize/1.34</elem>
|
||||
</table>
|
||||
</script><script id="http-dombased-xss" output="Couldn't find any DOM based XSS."/><script id="http-fetch" output="Please enter the complete path of the directory to save data in."><elem key="ERROR">Please enter the complete path of the directory to save data in.</elem>
|
||||
</script><script id="http-drupal-enum" output="Nothing found amongst the top 100 resources,use --script-args number=<number|all> for deeper analysis)"/><script id="http-date" output="Sun, 05 Apr 2026 07:39:16 GMT; -2s from local time."><elem key="date">2026-04-05T07:39:16+00:00</elem>
|
||||
<elem key="delta">-2.0</elem>
|
||||
</script><script id="http-wordpress-enum" output="Nothing found amongst the top 100 resources,use --script-args search-limit=<number|all> for deeper analysis)"/><script id="http-feed" output="Couldn't find any feeds."/></port>
|
||||
<ports><port protocol="tcp" portid="80"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="http" method="table" conf="3"/></port>
|
||||
</ports>
|
||||
<times srtt="14618" rttvar="14618" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775375708"/>
|
||||
<taskend task="NSE" time="1775375708"/>
|
||||
<taskbegin task="NSE" time="1775375708"/>
|
||||
<taskend task="NSE" time="1775375708"/>
|
||||
<taskbegin task="NSE" time="1775375708"/>
|
||||
<taskend task="NSE" time="1775375708"/>
|
||||
<runstats><finished time="1775375708" timestr="Sun Apr 5 07:55:08 2026" summary="Nmap done at Sun Apr 5 07:55:08 2026; 1 IP address (1 host up) scanned in 983.26 seconds" elapsed="983.26" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137166"/>
|
||||
<taskend task="NSE" time="1776137167"/>
|
||||
<taskbegin task="NSE" time="1776137167"/>
|
||||
<taskend task="NSE" time="1776137167"/>
|
||||
<taskbegin task="NSE" time="1776137167"/>
|
||||
<taskend task="NSE" time="1776137167"/>
|
||||
<runstats><finished time="1776137167" timestr="Tue Apr 14 03:26:07 2026" summary="Nmap done at Tue Apr 14 03:26:07 2026; 1 IP address (1 host up) scanned in 14.37 seconds" elapsed="14.37" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,51 +1,46 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/edge.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml edge.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="65535" services="1-65535"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374689"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374720" percent="22.41" remaining="108" etc="1775374827"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374750" percent="20.11" remaining="243" etc="1775374992"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374780" percent="21.78" remaining="327" etc="1775375107"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374810" percent="23.67" remaining="391" etc="1775375200"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775374906" percent="37.37" remaining="364" etc="1775375270"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375002" percent="48.44" remaining="334" etc="1775375335"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375035" percent="53.79" remaining="298" etc="1775375332"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375101" percent="61.06" remaining="263" etc="1775375364"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375191" percent="68.84" remaining="228" etc="1775375418"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375290" percent="69.06" remaining="270" etc="1775375559"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375389" percent="69.07" remaining="314" etc="1775375702"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375705" percent="77.44" remaining="296" etc="1775376001"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375885" percent="83.86" remaining="231" etc="1775376115"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375948" percent="89.04" remaining="156" etc="1775376103"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1775375999" percent="93.97" remaining="85" etc="1775376083"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775376063" extrainfo="65535 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775376068"/>
|
||||
<taskend task="Service scan" time="1775376606" extrainfo="3 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775376628"/>
|
||||
<taskend task="Traceroute" time="1775376628"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775376628"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775376630"/>
|
||||
<taskbegin task="NSE" time="1775376630"/>
|
||||
<taskend task="NSE" time="1775376644"/>
|
||||
<taskbegin task="NSE" time="1775376644"/>
|
||||
<taskend task="NSE" time="1775376649"/>
|
||||
<taskbegin task="NSE" time="1775376649"/>
|
||||
<taskend task="NSE" time="1775376649"/>
|
||||
<host starttime="1775374690" endtime="1775376649"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137122"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137153" percent="23.67" remaining="100" etc="1776137253"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137183" percent="31.75" remaining="132" etc="1776137314"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137213" percent="36.79" remaining="157" etc="1776137369"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137249" percent="42.56" remaining="172" etc="1776137420"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137345" percent="58.86" remaining="156" etc="1776137501"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137381" percent="65.41" remaining="137" etc="1776137518"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137414" percent="71.41" remaining="117" etc="1776137531"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137444" percent="77.08" remaining="96" etc="1776137540"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137474" percent="83.17" remaining="72" etc="1776137545"/>
|
||||
<taskprogress task="SYN Stealth Scan" time="1776137504" percent="89.45" remaining="46" etc="1776137549"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137554" extrainfo="65535 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137555"/>
|
||||
<taskend task="Service scan" time="1776138091" extrainfo="3 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776138096"/>
|
||||
<taskend task="Traceroute" time="1776138097"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776138097"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776138097"/>
|
||||
<taskbegin task="NSE" time="1776138097"/>
|
||||
<taskend task="NSE" time="1776138104"/>
|
||||
<taskbegin task="NSE" time="1776138104"/>
|
||||
<taskend task="NSE" time="1776138106"/>
|
||||
<taskbegin task="NSE" time="1776138106"/>
|
||||
<taskend task="NSE" time="1776138106"/>
|
||||
<host starttime="1776137122" endtime="1776138106"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="edge.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -62,11 +57,11 @@
|
||||
</table>
|
||||
</script><script id="http-title" output="Did not follow redirect to https://edge.lan.ddnsgeek.com/"><elem key="redirect_url">https://edge.lan.ddnsgeek.com/</elem>
|
||||
</script></port>
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-09T19:02:27
Not valid after: 2026-05-10T19:02:26
MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
-----BEGIN CERTIFICATE-----
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
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-04-10T22:57:08
Not valid after: 2026-07-09T22:57:07
MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
-----BEGIN CERTIFICATE-----
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
rWBgpRaT
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
<elem key="commonName">R13</elem>
|
||||
<elem key="commonName">R12</elem>
|
||||
<elem key="countryName">US</elem>
|
||||
<elem key="organizationName">Let's Encrypt</elem>
|
||||
</table>
|
||||
@@ -84,7 +79,7 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Extended Key Usage</elem>
|
||||
<elem key="value">TLS Web Server Authentication, TLS Web Client Authentication</elem>
|
||||
<elem key="value">TLS Web Server Authentication</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Basic Constraints</elem>
|
||||
@@ -97,11 +92,11 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Authority Key Identifier</elem>
|
||||
<elem key="value">E7:AB:9F:0F:2C:33:A0:53:D3:5E:4F:78:C8:B2:84:0E:3B:D6:92:33</elem>
|
||||
<elem key="value">00:B5:29:F2:2D:8E:6F:31:E8:9B:4C:AD:78:3E:FA:DC:E9:0C:D1:D2</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">Authority Information Access</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r13.i.lencr.org/</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r12.i.lencr.org/</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Alternative Name</elem>
|
||||
@@ -113,72 +108,65 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 CRL Distribution Points</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r13.c.lencr.org/66.crl
</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r12.c.lencr.org/36.crl
</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">CT Precertificate SCTs</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 64:11:C4:6C:A4:12:EC:A7:89:1C:A2:02:2E:00:BC:AB:
 4F:28:07:D4:1E:35:27:AB:EA:FE:D5:03:C9:7D:CD:F0
 Timestamp : Feb 9 20:00:57.423 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:52:8E:58:DC:53:91:8D:CD:20:EA:F4:4E:
 D5:57:53:24:70:7D:7C:7F:19:44:DA:99:06:CC:74:90:
 80:AB:F2:D1:02:20:14:9E:36:EA:9E:24:DF:FC:03:45:
 1F:3C:63:DC:90:2C:7F:D1:0C:7E:9A:D2:F0:EB:96:D0:
 C9:E5:A1:41:E6:96
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : E3:23:8D:F2:8D:A2:88:E0:AA:E0:AC:F0:FA:90:C9:85:
 F0:B6:BF:F5:D2:A5:27:B0:01:FC:1C:44:58:C4:B6:E8
 Timestamp : Feb 9 20:00:57.524 2026 GMT
 Extensions: 00:00:05:00:32:0E:2B:5A
 Signature : ecdsa-with-SHA256
 30:45:02:21:00:C7:32:A4:A8:E7:11:84:C4:40:74:35:
 F6:09:D6:6A:7C:27:E7:FB:9B:72:2A:3F:BF:0A:E5:87:
 7F:BC:60:DD:BD:02:20:4F:10:15:B9:42:2D:F9:5A:5A:
 DA:8D:8B:51:3F:7E:19:5F:F6:AB:23:24:B0:4E:61:BE:
 61:F7:6A:05:AA:C8:DD</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 46:AF:86:3D:3B:3E:E5:9F:A5:77:DE:A8:24:5D:36:B0:
 D9:ED:22:A2:23:F4:61:77:41:22:94:52:EE:95:50:5F
 Timestamp : Apr 10 23:55:38.330 2026 GMT
 Extensions: 00:00:05:00:03:8A:35:3D
 Signature : ecdsa-with-SHA256
 30:44:02:20:63:DC:83:A3:5E:CC:C8:1A:1E:FE:34:BA:
 26:94:F3:E2:1C:1E:0C:A6:80:15:75:7B:EE:43:3F:0A:
 45:62:74:59:02:20:3B:D9:FE:16:8F:7C:7B:9C:D9:E9:
 C3:F1:3C:17:77:72:B2:02:9A:50:C9:93:DF:61:7F:24:
 11:1C:C1:DD:18:79
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : D8:09:55:3B:94:4F:7A:FF:C8:16:19:6F:94:4F:85:AB:
 B0:F8:FC:5E:87:55:26:0F:15:D1:2E:72:BB:45:4B:14
 Timestamp : Apr 10 23:55:38.344 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:4C:10:18:FE:37:3D:52:A9:B7:28:0E:5A:
 4E:0A:0C:40:F9:78:6E:7E:4F:90:9B:3D:EA:FD:5B:6E:
 2B:B4:76:C6:02:20:61:DC:15:D2:5E:E5:BF:7D:6B:42:
 5A:9B:7A:13:A5:04:6D:81:57:8C:5A:BF:9F:59:68:7A:
 66:41:5C:85:ED:A0</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="sig_algo">sha256WithRSAEncryption</elem>
|
||||
<table key="validity">
|
||||
<elem key="notBefore">2026-02-09T19:02:27</elem>
|
||||
<elem key="notAfter">2026-05-10T19:02:26</elem>
|
||||
<elem key="notBefore">2026-04-10T22:57:08</elem>
|
||||
<elem key="notAfter">2026-07-09T22:57:07</elem>
|
||||
</table>
|
||||
<elem key="md5">984ac11f575c6340ccf8b895593deace</elem>
|
||||
<elem key="sha1">822c672a19772e13a86924c03ef49c2a6535b765</elem>
|
||||
<elem key="sha256">f43deda6d3ca5887afb9939852fbad09a67cc5a4a0c2927fdf266200c3b6d216</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
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
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script></port>
|
||||
<elem key="md5">22756a09ffa70fa3e9b4d4d9935bcc9c</elem>
|
||||
<elem key="sha1">4254b60ed6a3e1d5c688579090774d486771324a</elem>
|
||||
<elem key="sha256">ba1337c3b1bada027a626127b74b5a55a998f16253216d67437b83e475c99523</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
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
rWBgpRaT
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script></port>
|
||||
<port protocol="tcp" portid="20001"><state state="closed" reason="reset" reason_ttl="57"/><service name="microsan" method="table" conf="3"/></port>
|
||||
<port protocol="tcp" portid="51413"><state state="open" reason="syn-ack" reason_ttl="56"/><service name="unknown" servicefp="SF-Port51413-TCP:V=7.98%I=9%D=4/5%Time=69D2170C%P=x86_64-pc-linux-gnu%r(TLSSessionReq,207,"\[\x05\xd7\[\r\x97\xb4#\xdd\xc9\xb5\xf7r\x85&\xb4\xc4z\x89\x1b\xe5\x04\xae\xc5\x88\x87\xc6\xc1y}0\xe3Q\?I\xad\x12\t\xb4Ny\xce5\xf7\xd4}\x93W\xa9\x81\x11\x1e\x15'\xbf\xbdB9\xb5e\x98\x0cx\x12\xd9\xcb\xacG\x82\xb8U\x02\*\x94\xbe:7d0W\xdaub\xfc\xd7\xcb\xd4\xe0\xb3\xf2\xb1\xff\xb0\x1e\^\xa8\xb5\x86\x1c9\x95\xa9\x15\x86\x10\xa9\x16Io\)\xa7\x97\x86\xf6\xec\x994!`7\xf95N\x20\xdck'\x98\xc8\x13\xf5\xe0T\\@W\^\]%\x13\xb3\xe1\xda7\x13\x0f\xe6\x81\xc9\x87\x18}\xcd-\x99\xfd\x0f\xcd\x80\x17\x0fC\xb0{vR\x87\xb2\xe3\x96\xac;ih\xb9\xa4\xbd\0Um4\xd1\?!\xa2\$4\x9a=\[A\xb1\x87\xe4O&TB\xddy\x18\xb1w\x11\xbc\x89\xe4\xfcT\x90\xb2_\x8f<\x12\xce%O\xab\xfd3\x04\xaf\xd3n\xd6\xa1\x92c\x0e\xc2\xbb\xaf\xea\xc9\xc9n\x1d\xd1\xd0\x84i\n\xb7\x85;\x000\x1a\xd4\xf7\x8ag\xcf\xaaJ>bdAp\xe7\x99M\xf4f=\xfc{\xb6Z\xdb\xc2x\xfd2Z\xd92\xad\xd6\xfeiC\x8b\xf6\x1aw\x1f9\xa9B\x85\xc8\x82o\xc7A\x8cAe\xb9\x0f\xe8{\x7fA\xb2\x01\x9fr\x85\x98\xe8\x1eCo\x15\x90\xda\x83\xfd\xf0\xfdN`\xfeh\xe9c\xd1>\xbc\xbe\xea_\xa1R\x928\x84h\xaf\xdf\x83\x94\x9d\xfa\xca2~m\xae\x85\x95\x9d\xc3\.2\xdc\0\x07\*\?\xe9\xf0\xc94\x98/\xe9\xf8m@\xab\xf7\xd8\x85U\x1e\xdb\x8f\xaex@\xd7\xf7\xe9\xe4K\x88\xa9\$\xc1-\xbf\xfb\xd9C\xdc\x8c\x9d8\xe0G\x83\*\xb8\x02C\xd5l\x97\xaa\xb9\x8d\xb7\x7f\xdc\xd0\xe0\x92\x87\xaa\xe8\x99\x8e\xbb\x20\xc8\x13\r\xcd\x01\x95\x92\x13\xe8\xfaQG\xcc\x20\xddb\xf9\xcb\x1d\x1b\xc5\x05\xc5\x918\x13\xbc\xfe,\x0c\|\x1dz\x80\x0e\xcez\x92T\x18\xff!a8\xde\x9b\x94\x10\^\xb0S\x06\xe36R\?\x88\xf4\x8a\x82<\)\x01\xbc\x87&\xf3H\x9b\x1f\xdd\|\xb6\0x\x99\x19b\0N'qX\]\xe87Nu\xb2\xaa")%r(SSLv23SessionReq,22A,"Y\xee\x08\x14\xde\xdd\xa9w\xbb/\x9e\(\x04/\xa4D\xdf\xf7\"\xc0\x15;\$\*\x92o\xad\x01\x8d\xe5\xc8\x7f\x20\xaf\x80\x151\x0eZ\xaa\x962\xact\xfe\x98\xcc\xebu\(\\\xb7\x07\\\xd8Ee\xf7\xb1sfm\xa1\x0eY\xd1\*\x20\x0c\xc0\xadRt\xdb5QT4\r\x02\x17\xc3\x10oo\xae\xd2\x03\x06\x84\xe9\xe9b\xfa\x18G\x88hJ\x1d\xc8\xf3\x9e\x01\xd9\x1eT\xa3\xd0e\xba\xe5\x97k/\x9dV\xac\xd8\xb4\xb1\xa6W2P\xf7\xf6\x12e\x84\x94\xee\x08\x94\x1e\x85\x01;\xb3\x10\xf4\xf1{\xcb\x1bR\xa9\x8a!\xa1\xdf}\xd4\xf1k\x1e\x17\x1f\x969I}\xfaNK=\xfbk\x0c\x9al\xfe\x03j\xdf\xbb\x9b`\xd8\xf9\x99\xbf\$lpL~\xf7G}\x9e3T!;\xe9\xfdNl\x88';\x1b\x02\x9dNu1\xd2BD\)\x85\x054oH\xd4\xbb\x1bF,<ny\x1f\x8ai\xec\xaa\xc1\xe2\xa7\xc5\]O\xceO\*\xe7m\x10e\xa4\x10\xc1\xd6:\xafy3\xf5Z\x95\"\r\xe88\xdd\xeb\xe5\x95\x1e\xca\x91\xf7j\xca\*\xb4\x06\xfb\xc6\x9c\x8b\xc5l\x841\x8e\xd6\x05u\x1a\xc3\xee\xedcxq\x98\xc0\xd9\x04\|\x03\+R1\xcb\xd2\xa2`W,\x9c\)r\xd9'\xcdl\xa9\x15\x8b\x02\xea\xf5_\xf7,\xe0=\x9c%\xf8\xf1d\xeb\xe8bYi\x83\xc1\x84\xde@\x9bJ~\x16\xe6F\x19D\x1f\xc8\xe2\x8d\x08\xca\.\x8b\x81\x9f\x7f\x90\xfd\x98\xad=\$iE\xe5\xd0\x91\xc9\xa4\]\x10\xa5\xc1\0\x98\x7f\x9e\xab\t\xb2i,L\x82\xd6\xe9\xf9\xf9\*3o\xad\xc5\xf5\xfc\xf2\xf8V\xdd&\xa6\x7f\xd1\x036\x8c\xe4\0\x16\xc98\x20#m\x7fX\x802\xfe\xc6\xa8\xc5/\x88t\x19\x1e\x20\x15\xa3\xe6\x0f\x03\xba\xf9oh\x16\*-\xa2\xd9\x8bd#\xc5\xc9\xe6\x10\xa1\x89\x91\xf2B\xc8\xe7\xdf\+mF\xae\xf7\x86\x91\xb4\xf9\x1a\xab/\xbe\x17\x18r:#\|\]\xccT,/\xd6\xa6x\?\xd15d\x8f\x96\xca\xa4N\xf8E\xab\\\t\x9e\xda\x0f\xf3\xc8q\xf6\x94\xfbL\x8c\xf1\xe1\x02\xb3\xe8\$\xd9\xacgP\xab\xdd\xb8\x15w\xba\xfe\xd1\xf6\tiH\xe9p,\x18\xe7\x118\xd7\xee\xbd\x08{{\xfa\xd7B\xf2\xdb\xb7\x13\x95}");" method="table" conf="3"/><script id="fingerprint-strings" output="
 SSLv23SessionReq: 
 u(\xb7
 \xd8Ee
 5QT4
 $lpL~
 3T!;
 F,<ny
 =$iE
 r:#|]
 TLSSessionReq: 
 :7d0W
 4!`7
 T@W^]%
 O&TB
 J>bdAp
 N'qX]"><elem key="SSLv23SessionReq">
 u(\xb7
 \xd8Ee
 5QT4
 $lpL~
 3T!;
 F,<ny
 =$iE
 r:#|]</elem>
|
||||
<elem key="TLSSessionReq">
 :7d0W
 4!`7
 T@W^]%
 O&TB
 J>bdAp
 N'qX]</elem>
|
||||
<port protocol="tcp" portid="51413"><state state="open" reason="syn-ack" reason_ttl="56"/><service name="unknown" servicefp="SF-Port51413-TCP:V=7.99%I=9%D=4/14%Time=69DDB59B%P=x86_64-pc-linux-gnu%r(TLSSessionReq,166,"\xe8Ne\x9e\x1d\xbc\x8c\xc5\xc5\xb2\xa6\x10\x9e\xa9y:\xd7\xee~\xbf!\(IS\x9a\x01\xfe\xc1~\xa2}#\x1d\xaa!\x84\x80\xcfwW\x03#a\xb6\x9e`\xfa\x83\x06\xcd\x96M0\xb9p\x20\x7f\x99I\xd7\xef#\xdbho\xa6\xba\xa3\xb7\*c\x8bo\xc51\xf1X\x0bm\xea\x88r\xd1\x8b=\n\x07d\xf3\x83\x16:\x84k\x17}%\xee8\xd1I\xf9\x16\x88#\x83>\x15\x060_\x04'\xbb\xcb\x88\xb6\x0e\0X7\x9e\xa5\x0c\xb8D\x1c!\xd1\xc4\x0bv\x17\x88B\xff%\xcc\xdauL\xe4\x82\xc6\xc0\x1dJ\xe6\xbeX\xedI\xb5\xad2\$\xc6D\^\[D\xb1\"nz\xca\x9fQ\x88\xf2\x89\x94\r\x88\xa0\xa2\x97\x80\x8c\x02i\xee\xe6\xe5\xf4\x92\xaf3\xb2\xb8\xf8LM\?W\xc8%\xb3\xe3\xf5\^\xc2\x0ev\xfds\x8f\x80h\xb9,\xf0\x92u\xbb\\e\xdc>\x1fy\xb9\xb3jz39\xa6\x83h\xbcM\x84\xc2\x97\x1c\x90\xa8\xa6M\xed\x1d\)\xa0\xff\xaf\xee\$\xe2\xbc\xfeL\x9f\xdf\xaa\xc1\xda\xb3\xbb\x15y\xc2\x8c\x0eW\xb9-\xfafd\xa8\xfas\x85\xecs\x80\r\xb2\x94\xb0\x9aK6F\*\\:\+c\xee\x89\x0f\xa9\x94\xd3\x8b\x84dE\x05\x99,\x1dT\xab\xd3\xd1\x13\xf5\x1e\xfe\x9c1l\xb9\xf91\x18\xbbB}\xe9Z\)\xf6q\xf5S\xca\|\xa2\x03\x05\xe3\xcf\xd3\xfc\"\rB\.L\xf3xy\xdeS\xeb\x81\xcb\x9b=\xd7W\x9f2@")%r(SSLv23SessionReq,255,"0\x0ep\xb8~\x15`\xa1\xb0\xc3\xdf\xbe\xe2,\x0e\xcf\xe8gj'Y\xf0\xc0\xb9\xe7\xcf\xff\x1b\xc0\xaflyd;B\x1d\x1b\x11\.\xc1Wi\xe9\$\x13\xe2e&\xb7\x16J\xcbe\x05\x17\xbf{\xaa<\x18\xff\x13y\xe8\x88p:\xfd\x19\x03'\xfc\x8c\x81oZ\x1fI\xd9\xdf~\xd1&yu\0}\xf3\x99\x8ff\^\x8d\xe0\]\xbd\(\x17\xd3\xdf\x17k\xa31=@\x1b\?\xe8\xb3\x01%PZ\xf8\xe8\x9ev\x85\xf4\xa4_\)\x80\t\xc8s\x0f\xec\xa3S\x18\x1f\xf8\xd79\xf4\xbd\x96\xa8\x8a,v#M\xaahH\xb6%\xeb\xfc\x16\xe20cz!\xe6\|\xb0\.Z\xe2\xac\xc7<N\xdd\*d&~\x0e\x86T\x97\xb5\x05\xbc\xf8\x17FK\x99\xfbKQ\x03MIU\x1c\xccMx;\xfb\xf8\x8eV\|\xde\|\x9cN\xa4\xc5`\xf3`b>\x8c\x955\x8e\x9e\xb7\xeek\xd0\xf0\x8e'}O-W\xc7Tn\xddj\xb8Fy\x1ckE\x89\x13\x06\x1b\xc3\xbc\x13\x1c\xf3~\x08\x9aW5\xb1\x7f\^wYU\xcf\xe8n\xdb}\x9f2Y\xd3\xf3\xe0\x99&u\x16\x8bbO\x0c\x9c\xfd\xe4\x8f\xba\x1e\^Hq<\xf3\xf0@\xffj\x1eH\x04C\xfc\xca\x9ah\x9b\xde\xceC\x0f\xf8f\xe0\x1c\xca\xe6t\x93\x8f\xef\xd4D5Ee\xf3\xb9\xf1E\xf2\xbf\x8f`\|\xc6\xb8\xa9\]\xe5\xa5~#\x01\xed\x0cd\x84\x114\xd0\xe4\xa5\xcf\xc1\x9c@\xd7Z\xaeL\xfaH\x10\x1e\x8b\xec\xd8\xd7mZ\x18\(\x8c\xcb`\xa71o\xec\xfeS\xa5\xc9\x9c/aQ&\xb4i\x04\*P'T22\x82\xf1\xbc\xbe\xa0,\x03\xcd\x18s\xa1a\xa1\xb5\xf5b\xf2\x98z\xc3T\xbf\xfe\x95&\r\x0e/\xbf\*\x82\xb0\xceG6\xe1\xe9u\xf1\xe4\xb0\xa1\x8e\xe3dN\xb9\x02\xe02\x17\x9d\xee\x0c\xc9\xef\)\xe5\xfdk\xe0\)\.\t\xd5\x8b\+\x0c\xe1\x06\xcbf\[\xeb\x10\xce\x9b\x01R\x94\x93q\xeev\xc7\*\xa5IG\x0c\"o\xe3\xc94\xe86\xf7\x89\x8e3\xfb'\x906\x1b\xd9z\xcc6Kg~\x93\xe1\xdf\$\x12\xd2\xc2G\xc8\?y\xe9\x87\xc0\xff9\x91\xefy\xd5\xc7\xf2\xe3\]\xdf\)S2\xc30\\\x17\x81\x03\xa4\+\x1d\xbc-L\xec\*\\\x97\x8c\xc5\xe4\xb5\xd3S\xc9\xd6\xf2ljf\xf4~\xf7\xbc\x08\x92>zy\xac%\xdc\"ZZ\xc4dA\x0e\x967%\xeaZO\|\x93\xfa\xad\xaf\xe0\x8fz\xa5");" method="table" conf="3"/><script id="fingerprint-strings" output="
 SSLv23SessionReq: 
 gj'Y
 lyd;B
 ,v#M
 0cz!
 *d&~
 '}O-W
 ^wYU
 ^Hq<
 D5Ee
 /aQ&
 *P'T22
 6Kg~
 0\x17
 *\x97
 TLSSessionReq: 
 !(IS
 D^[D
 LM?W
 jz39
 K6F*:+c"><elem key="SSLv23SessionReq">
 gj'Y
 lyd;B
 ,v#M
 0cz!
 *d&~
 '}O-W
 ^wYU
 ^Hq<
 D5Ee
 /aQ&
 *P'T22
 6Kg~
 0\x17
 *\x97</elem>
|
||||
<elem key="TLSSessionReq">
 !(IS
 D^[D
 LM?W
 jz39
 K6F*:+c</elem>
|
||||
</script></port>
|
||||
</ports>
|
||||
<os><portused state="open" proto="tcp" portid="80"/>
|
||||
<portused state="closed" proto="tcp" portid="20001"/>
|
||||
<osmatch name="Linux 2.6.32" accuracy="90" line="59175">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="90"><cpe>cpe:/o:linux:linux_kernel:2.6.32</cpe></osclass>
|
||||
<osmatch name="Microsoft Windows 10 - 11" accuracy="89" line="75368">
|
||||
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="10" accuracy="89"><cpe>cpe:/o:microsoft:windows_10</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="11" accuracy="89"><cpe>cpe:/o:microsoft:windows_11</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Microsoft Windows Server 2016" accuracy="88" line="81849">
|
||||
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="2016" accuracy="88"><cpe>cpe:/o:microsoft:windows_server_2016</cpe></osclass>
|
||||
<osmatch name="Microsoft Windows Server 2016" accuracy="89" line="82948">
|
||||
<osclass type="general purpose" vendor="Microsoft" osfamily="Windows" osgen="2016" accuracy="89"><cpe>cpe:/o:microsoft:windows_server_2016</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.39" accuracy="86" line="61497">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="86"><cpe>cpe:/o:linux:linux_kernel:2.6.39</cpe></osclass>
|
||||
<osmatch name="Fortinet FortiGate 100D firewall" accuracy="86" line="27632">
|
||||
<osclass type="firewall" vendor="Fortinet" osfamily="embedded" accuracy="86"><cpe>cpe:/h:fortinet:fortigate_100d</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 3.10" accuracy="86" line="66423">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="86"><cpe>cpe:/o:linux:linux_kernel:3.10</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 3.10 - 3.16" accuracy="86" line="66589">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="86"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 4.19 - 5.15" accuracy="85" line="70666">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="85"><cpe>cpe:/o:linux:linux_kernel:4</cpe></osclass>
|
||||
</osmatch>
|
||||
<osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21909%P=x86_64-pc-linux-gnu)
SEQ()
SEQ(TI=Z%TS=A)
ECN(R=N)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=N)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=N)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
"/>
|
||||
<osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB77A%P=x86_64-pc-linux-gnu)
SEQ(TS=A)
SEQ(SP=100%GCD=1%ISR=10F%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=N)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=N)
T5(R=N)
T6(R=N)
T7(R=N)
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<uptime seconds="1463577" lastboot="Thu Mar 19 09:37:52 2026"/>
|
||||
<uptime seconds="4291466" lastboot="Mon Feb 23 11:37:20 2026"/>
|
||||
<distance value="8"/>
|
||||
<ipidsequence class="All zeros" values="0,0,0"/>
|
||||
<tcptssequence class="1000HZ" values="573BFD30,573BFE0F,573BFFD1"/>
|
||||
<tcpsequence index="256" difficulty="Good luck!" values="1EFE03A2,94371398,4CD8C509,F1C9A51,8583A5D1,EE311A20"/>
|
||||
<ipidsequence class="All zeros" values="0,0,0,0,0,0"/>
|
||||
<tcptssequence class="1000HZ" values="FFCA6AE5,FFCA6B49,FFCA6BAE,FFCA6C12,FFCA6C77,FFCA6CDB"/>
|
||||
<trace port="20001" proto="tcp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.06"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.69"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.1" rtt="0.85"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.40" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="45.127.173.7" rtt="3.12" host="4764.syd.equinix.com"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.66"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="12.79"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="37.34" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.12"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.25"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.1" rtt="0.87"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.102" rtt="0.55" host="lo0-0.gw2.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="45.127.173.7" rtt="2.62" host="4764.syd.equinix.com"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.62"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.26" rtt="12.48"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="14.50" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
</trace>
|
||||
<times srtt="20337" rttvar="6826" to="100000"/>
|
||||
<times srtt="15039" rttvar="822" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775376649"/>
|
||||
<taskend task="NSE" time="1775376649"/>
|
||||
<taskbegin task="NSE" time="1775376649"/>
|
||||
<taskend task="NSE" time="1775376649"/>
|
||||
<taskbegin task="NSE" time="1775376649"/>
|
||||
<taskend task="NSE" time="1775376650"/>
|
||||
<runstats><finished time="1775376650" timestr="Sun Apr 5 08:10:50 2026" summary="Nmap done at Sun Apr 5 08:10:50 2026; 1 IP address (1 host up) scanned in 1964.53 seconds" elapsed="1964.53" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776138106"/>
|
||||
<taskend task="NSE" time="1776138106"/>
|
||||
<taskbegin task="NSE" time="1776138106"/>
|
||||
<taskend task="NSE" time="1776138106"/>
|
||||
<taskbegin task="NSE" time="1776138106"/>
|
||||
<taskend task="NSE" time="1776138106"/>
|
||||
<runstats><finished time="1776138106" timestr="Tue Apr 14 03:41:46 2026" summary="Nmap done at Tue Apr 14 03:41:46 2026; 1 IP address (1 host up) scanned in 985.49 seconds" elapsed="985.49" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,36 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/edge.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml edge.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="syn" protocol="tcp" numservices="1000" services="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,443-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3006,3011,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5985-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1775374689"/>
|
||||
<taskend task="SYN Stealth Scan" time="1775374695" extrainfo="1000 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374695"/>
|
||||
<taskend task="Service scan" time="1775374707" extrainfo="2 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775374711"/>
|
||||
<taskend task="Traceroute" time="1775374711"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775374711"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775374713"/>
|
||||
<taskbegin task="NSE" time="1775374713"/>
|
||||
<taskend task="NSE" time="1775374718"/>
|
||||
<taskbegin task="NSE" time="1775374718"/>
|
||||
<taskend task="NSE" time="1775374720"/>
|
||||
<taskbegin task="NSE" time="1775374720"/>
|
||||
<taskend task="NSE" time="1775374720"/>
|
||||
<host starttime="1775374690" endtime="1775374720"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="SYN Stealth Scan" time="1776137122"/>
|
||||
<taskend task="SYN Stealth Scan" time="1776137128" extrainfo="1000 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137128"/>
|
||||
<taskend task="Service scan" time="1776137140" extrainfo="2 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776137144"/>
|
||||
<taskend task="Traceroute" time="1776137144"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776137144"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776137144"/>
|
||||
<taskbegin task="NSE" time="1776137145"/>
|
||||
<taskend task="NSE" time="1776137150"/>
|
||||
<taskbegin task="NSE" time="1776137150"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<taskbegin task="NSE" time="1776137151"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<host starttime="1776137122" endtime="1776137151"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="edge.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -39,19 +39,19 @@
|
||||
<ports><extraports state="filtered" count="998">
|
||||
<extrareasons reason="no-response" count="998" proto="tcp" ports="1,3-4,6-7,9,13,17,19-26,30,32-33,37,42-43,49,53,70,79,81-85,88-90,99-100,106,109-111,113,119,125,135,139,143-144,146,161,163,179,199,211-212,222,254-256,259,264,280,301,306,311,340,366,389,406-407,416-417,425,427,444-445,458,464-465,481,497,500,512-515,524,541,543-545,548,554-555,563,587,593,616-617,625,631,636,646,648,666-668,683,687,691,700,705,711,714,720,722,726,749,765,777,783,787,800-801,808,843,873,880,888,898,900-903,911-912,981,987,990,992-993,995,999-1002,1007,1009-1011,1021-1100,1102,1104-1108,1110-1114,1117,1119,1121-1124,1126,1130-1132,1137-1138,1141,1145,1147-1149,1151-1152,1154,1163-1166,1169,1174-1175,1183,1185-1187,1192,1198-1199,1201,1213,1216-1218,1233-1234,1236,1244,1247-1248,1259,1271-1272,1277,1287,1296,1300-1301,1309-1311,1322,1328,1334,1352,1417,1433-1434,1443,1455,1461,1494,1500-1501,1503,1521,1524,1533,1556,1580,1583,1594,1600,1641,1658,1666,1687-1688,1700,1717-1721,1723,1755,1761,1782-1783,1801,1805,1812,1839-1840,1862-1864,1875,1900,1914,1935,1947,1971-1972,1974,1984,1998-2010,2013,2020-2022,2030,2033-2035,2038,2040-2043,2045-2049,2065,2068,2099-2100,2103,2105-2107,2111,2119,2121,2126,2135,2144,2160-2161,2170,2179,2190-2191,2196,2200,2222,2251,2260,2288,2301,2323,2366,2381-2383,2393-2394,2399,2401,2492,2500,2522,2525,2557,2601-2602,2604-2605,2607-2608,2638,2701-2702,2710,2717-2718,2725,2800,2809,2811,2869,2875,2909-2910,2920,2967-2968,2998,3000-3001,3003,3005-3006,3011,3017,3030-3031,3052,3071,3077,3128,3168,3211,3221,3260-3261,3268-3269,3283,3300-3301,3306,3322-3325,3333,3351,3367,3369-3372,3389-3390,3404,3476,3493,3517,3527,3546,3551,3580,3659,3689-3690,3703,3737,3766,3784,3800-3801,3809,3814,3826-3828,3851,3869,3871,3878,3880,3889,3905,3914,3918,3920,3945,3971,3986,3995,3998,4000-4006,4045,4111,4125-4126,4129,4224,4242,4279,4321,4343,4443-4446,4449,4550,4567,4662,4848,4899-4900,4998,5000-5004,5009,5030,5033,5050-5051,5054,5060-5061,5080,5087,5100-5102,5120,5190,5200,5214,5221-5222,5225-5226,5269,5280,5298,5357,5405,5414,5431-5432,5440,5500,5510,5544,5550,5555,5560,5566,5631,5633,5666,5678-5679,5718,5730,5800-5802,5810-5811,5815,5822,5825,5850,5859,5862,5877,5900-5904,5906-5907,5910-5911,5915,5922,5925,5950,5952,5959-5963,5985-5989,5998-6007,6009,6025,6059,6100-6101,6106,6112,6123,6129,6156,6346,6389,6502,6510,6543,6547,6565-6567,6580,6646,6666-6669,6689,6692,6699,6779,6788-6789,6792,6839,6881,6901,6969,7000-7002,7004,7007,7019,7025,7070,7100,7103,7106,7200-7201,7402,7435,7443,7496,7512,7625,7627,7676,7741,7777-7778,7800,7911,7920-7921,7937-7938,7999-8002,8007-8011,8021-8022,8031,8042,8045,8080-8090,8093,8099-8100,8180-8181,8192-8194,8200,8222,8254,8290-8292,8300,8333,8383,8400,8402,8443,8500,8600,8649,8651-8652,8654,8701,8800,8873,8888,8899,8994,9000-9003,9009-9011,9040,9050,9071,9080-9081,9090-9091,9099-9103,9110-9111,9200,9207,9220,9290,9415,9418,9485,9500,9502-9503,9535,9575,9593-9595,9618,9666,9876-9878,9898,9900,9917,9929,9943-9944,9968,9998-10004,10009-10010,10012,10024-10025,10082,10180,10215,10243,10566,10616-10617,10621,10626,10628-10629,10778,11110-11111,11967,12000,12174,12265,12345,13456,13722,13782-13783,14000,14238,14441-14442,15000,15002-15004,15660,15742,16000-16001,16012,16016,16018,16080,16113,16992-16993,17877,17988,18040,18101,18988,19101,19283,19315,19350,19780,19801,19842,20000,20005,20031,20221-20222,20828,21571,22939,23502,24444,24800,25734-25735,26214,27000,27352-27353,27355-27356,27715,28201,30000,30718,30951,31038,31337,32768-32785,33354,33899,34571-34573,35500,38292,40193,40911,41511,42510,44176,44442-44443,44501,45100,48080,49152-49161,49163,49165,49167,49175-49176,49400,49999-50003,50006,50300,50389,50500,50636,50800,51103,51493,52673,52822,52848,52869,54045,54328,55055-55056,55555,55600,56737-56738,57294,57797,58080,60020,60443,61532,61900,62078,63331,64623,64680,65000,65129,65389"/>
|
||||
</extraports>
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Did not follow redirect to https://edge.lan.ddnsgeek.com/"><elem key="redirect_url">https://edge.lan.ddnsgeek.com/</elem>
|
||||
</script><script id="http-methods" output="
 Supported Methods: GET HEAD POST OPTIONS"><table key="Supported Methods">
|
||||
<elem>GET</elem>
|
||||
<elem>HEAD</elem>
|
||||
<elem>POST</elem>
|
||||
<elem>OPTIONS</elem>
|
||||
</table>
|
||||
</script><script id="http-title" output="Did not follow redirect to https://edge.lan.ddnsgeek.com/"><elem key="redirect_url">https://edge.lan.ddnsgeek.com/</elem>
|
||||
</script></port>
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-02-09T19:02:27
Not valid after: 2026-05-10T19:02:26
MD5: 984a c11f 575c 6340 ccf8 b895 593d eace
SHA-1: 822c 672a 1977 2e13 a869 24c0 3ef4 9c2a 6535 b765
SHA-256: f43d eda6 d3ca 5887 afb9 9398 52fb ad09 a67c c5a4 a0c2 927f df26 6200 c3b6 d216
-----BEGIN CERTIFICATE-----
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
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<port protocol="tcp" portid="443"><state state="open" reason="syn-ack" reason_ttl="55"/><service name="http" product="Golang net/http server" extrainfo="Go-IPFS json-rpc or InfluxDB API" tunnel="ssl" method="probed" conf="10"><cpe>cpe:/a:protocol_labs:go-ipfs</cpe></service><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="ssl-cert" output="Subject: commonName=edge.lan.ddnsgeek.com
Subject Alternative Name: DNS:edge.lan.ddnsgeek.com
Issuer: commonName=R12/organizationName=Let's Encrypt/countryName=US
Public Key type: rsa
Public Key bits: 4096
Signature Algorithm: sha256WithRSAEncryption
Not valid before: 2026-04-10T22:57:08
Not valid after: 2026-07-09T22:57:07
MD5: 2275 6a09 ffa7 0fa3 e9b4 d4d9 935b cc9c
SHA-1: 4254 b60e d6a3 e1d5 c688 5790 9077 4d48 6771 324a
SHA-256: ba13 37c3 b1ba da02 7a62 6127 b74b 5a55 a998 f162 5321 6d67 437b 83e4 75c9 9523
-----BEGIN CERTIFICATE-----
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
rWBgpRaT
-----END CERTIFICATE-----
"><table key="subject">
|
||||
<elem key="commonName">edge.lan.ddnsgeek.com</elem>
|
||||
</table>
|
||||
<table key="issuer">
|
||||
<elem key="commonName">R13</elem>
|
||||
<elem key="commonName">R12</elem>
|
||||
<elem key="countryName">US</elem>
|
||||
<elem key="organizationName">Let's Encrypt</elem>
|
||||
</table>
|
||||
@@ -69,7 +69,7 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Extended Key Usage</elem>
|
||||
<elem key="value">TLS Web Server Authentication, TLS Web Client Authentication</elem>
|
||||
<elem key="value">TLS Web Server Authentication</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Basic Constraints</elem>
|
||||
@@ -82,11 +82,11 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Authority Key Identifier</elem>
|
||||
<elem key="value">E7:AB:9F:0F:2C:33:A0:53:D3:5E:4F:78:C8:B2:84:0E:3B:D6:92:33</elem>
|
||||
<elem key="value">00:B5:29:F2:2D:8E:6F:31:E8:9B:4C:AD:78:3E:FA:DC:E9:0C:D1:D2</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">Authority Information Access</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r13.i.lencr.org/</elem>
|
||||
<elem key="value">CA Issuers - URI:http://r12.i.lencr.org/</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 Subject Alternative Name</elem>
|
||||
@@ -98,84 +98,83 @@
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">X509v3 CRL Distribution Points</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r13.c.lencr.org/66.crl
</elem>
|
||||
<elem key="value">Full Name:
 URI:http://r12.c.lencr.org/36.crl
</elem>
|
||||
</table>
|
||||
<table>
|
||||
<elem key="name">CT Precertificate SCTs</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 64:11:C4:6C:A4:12:EC:A7:89:1C:A2:02:2E:00:BC:AB:
 4F:28:07:D4:1E:35:27:AB:EA:FE:D5:03:C9:7D:CD:F0
 Timestamp : Feb 9 20:00:57.423 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:52:8E:58:DC:53:91:8D:CD:20:EA:F4:4E:
 D5:57:53:24:70:7D:7C:7F:19:44:DA:99:06:CC:74:90:
 80:AB:F2:D1:02:20:14:9E:36:EA:9E:24:DF:FC:03:45:
 1F:3C:63:DC:90:2C:7F:D1:0C:7E:9A:D2:F0:EB:96:D0:
 C9:E5:A1:41:E6:96
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : E3:23:8D:F2:8D:A2:88:E0:AA:E0:AC:F0:FA:90:C9:85:
 F0:B6:BF:F5:D2:A5:27:B0:01:FC:1C:44:58:C4:B6:E8
 Timestamp : Feb 9 20:00:57.524 2026 GMT
 Extensions: 00:00:05:00:32:0E:2B:5A
 Signature : ecdsa-with-SHA256
 30:45:02:21:00:C7:32:A4:A8:E7:11:84:C4:40:74:35:
 F6:09:D6:6A:7C:27:E7:FB:9B:72:2A:3F:BF:0A:E5:87:
 7F:BC:60:DD:BD:02:20:4F:10:15:B9:42:2D:F9:5A:5A:
 DA:8D:8B:51:3F:7E:19:5F:F6:AB:23:24:B0:4E:61:BE:
 61:F7:6A:05:AA:C8:DD</elem>
|
||||
<elem key="value">Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : 46:AF:86:3D:3B:3E:E5:9F:A5:77:DE:A8:24:5D:36:B0:
 D9:ED:22:A2:23:F4:61:77:41:22:94:52:EE:95:50:5F
 Timestamp : Apr 10 23:55:38.330 2026 GMT
 Extensions: 00:00:05:00:03:8A:35:3D
 Signature : ecdsa-with-SHA256
 30:44:02:20:63:DC:83:A3:5E:CC:C8:1A:1E:FE:34:BA:
 26:94:F3:E2:1C:1E:0C:A6:80:15:75:7B:EE:43:3F:0A:
 45:62:74:59:02:20:3B:D9:FE:16:8F:7C:7B:9C:D9:E9:
 C3:F1:3C:17:77:72:B2:02:9A:50:C9:93:DF:61:7F:24:
 11:1C:C1:DD:18:79
Signed Certificate Timestamp:
 Version : v1 (0x0)
 Log ID : D8:09:55:3B:94:4F:7A:FF:C8:16:19:6F:94:4F:85:AB:
 B0:F8:FC:5E:87:55:26:0F:15:D1:2E:72:BB:45:4B:14
 Timestamp : Apr 10 23:55:38.344 2026 GMT
 Extensions: none
 Signature : ecdsa-with-SHA256
 30:44:02:20:4C:10:18:FE:37:3D:52:A9:B7:28:0E:5A:
 4E:0A:0C:40:F9:78:6E:7E:4F:90:9B:3D:EA:FD:5B:6E:
 2B:B4:76:C6:02:20:61:DC:15:D2:5E:E5:BF:7D:6B:42:
 5A:9B:7A:13:A5:04:6D:81:57:8C:5A:BF:9F:59:68:7A:
 66:41:5C:85:ED:A0</elem>
|
||||
</table>
|
||||
</table>
|
||||
<elem key="sig_algo">sha256WithRSAEncryption</elem>
|
||||
<table key="validity">
|
||||
<elem key="notBefore">2026-02-09T19:02:27</elem>
|
||||
<elem key="notAfter">2026-05-10T19:02:26</elem>
|
||||
<elem key="notBefore">2026-04-10T22:57:08</elem>
|
||||
<elem key="notAfter">2026-07-09T22:57:07</elem>
|
||||
</table>
|
||||
<elem key="md5">984ac11f575c6340ccf8b895593deace</elem>
|
||||
<elem key="sha1">822c672a19772e13a86924c03ef49c2a6535b765</elem>
|
||||
<elem key="sha256">f43deda6d3ca5887afb9939852fbad09a67cc5a4a0c2927fdf266200c3b6d216</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
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
eUZAARP+FxOlUy5Obl0BmvI=
-----END CERTIFICATE-----
</elem>
|
||||
</script><script id="ssl-date" output="TLS randomness does not represent time"></script><script id="http-title" output="Site doesn't have a title (text/plain; charset=utf-8)."></script></port>
|
||||
<elem key="md5">22756a09ffa70fa3e9b4d4d9935bcc9c</elem>
|
||||
<elem key="sha1">4254b60ed6a3e1d5c688579090774d486771324a</elem>
|
||||
<elem key="sha256">ba1337c3b1bada027a626127b74b5a55a998f16253216d67437b83e475c99523</elem>
|
||||
<elem key="pem">-----BEGIN CERTIFICATE-----
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
rWBgpRaT
-----END CERTIFICATE-----
</elem>
|
||||
</script></port>
|
||||
</ports>
|
||||
<os><portused state="open" proto="tcp" portid="80"/>
|
||||
<osmatch name="Linux 4.15 - 5.19" accuracy="93" line="70534">
|
||||
<osmatch name="Linux 4.15 - 5.19" accuracy="93" line="71007">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:4</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.0 - 5.14" accuracy="93" line="71713">
|
||||
<osmatch name="Linux 4.19" accuracy="93" line="71117">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:4.19</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.0 - 5.14" accuracy="93" line="72205">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="OpenWrt 21.02 (Linux 5.4)" accuracy="93" line="72530">
|
||||
<osmatch name="OpenWrt 21.02 (Linux 5.4)" accuracy="93" line="73083">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5.4</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 4.19" accuracy="92" line="70644">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:4.19</cpe></osclass>
|
||||
<osmatch name="MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3)" accuracy="93" line="92909">
|
||||
<osclass type="router" vendor="MikroTik" osfamily="RouterOS" osgen="7.X" accuracy="93"><cpe>cpe:/o:mikrotik:routeros:7</cpe></osclass>
|
||||
<osclass type="router" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="93"><cpe>cpe:/o:linux:linux_kernel:5.6.3</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 6.0" accuracy="92" line="72657">
|
||||
<osmatch name="Linux 6.0" accuracy="92" line="73210">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="6.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:6.0</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3)" accuracy="92" line="91792">
|
||||
<osclass type="router" vendor="MikroTik" osfamily="RouterOS" osgen="7.X" accuracy="92"><cpe>cpe:/o:mikrotik:routeros:7</cpe></osclass>
|
||||
<osclass type="router" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="92"><cpe>cpe:/o:linux:linux_kernel:5.6.3</cpe></osclass>
|
||||
<osmatch name="Linux 6.15" accuracy="90" line="73426">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="6.X" accuracy="90"><cpe>cpe:/o:linux:linux_kernel:6.15</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 5.4 - 5.10" accuracy="87" line="72380">
|
||||
<osmatch name="Linux 5.4 - 5.10" accuracy="87" line="72914">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="5.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:5</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.32" accuracy="87" line="58659">
|
||||
<osmatch name="Linux 2.6.32" accuracy="87" line="59132">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:2.6.32</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 2.6.32 - 3.13" accuracy="87" line="59907">
|
||||
<osmatch name="Linux 2.6.32 - 3.13" accuracy="87" line="60380">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:2.6</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
|
||||
</osmatch>
|
||||
<osmatch name="Linux 3.10 - 4.11" accuracy="87" line="66652">
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="3.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:3</cpe></osclass>
|
||||
<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="4.X" accuracy="87"><cpe>cpe:/o:linux:linux_kernel:4</cpe></osclass>
|
||||
</osmatch>
|
||||
<osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21180%P=x86_64-pc-linux-gnu)
SEQ(SP=105%GCD=1%ISR=108%TI=Z%TS=A)
SEQ(SP=FE%GCD=1%ISR=10F%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
U1(R=N)
IE(R=N)
"/>
|
||||
<osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3BF%P=x86_64-pc-linux-gnu)
SEQ(SP=102%GCD=1%ISR=10A%TI=Z%TS=A)
SEQ(SP=104%GCD=1%ISR=10C%TI=Z%TS=A)
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
T2(R=N)
T3(R=N)
T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<uptime seconds="1461648" lastboot="Thu Mar 19 09:37:52 2026"/>
|
||||
<uptime seconds="4290512" lastboot="Mon Feb 23 11:37:19 2026"/>
|
||||
<distance value="8"/>
|
||||
<tcpsequence index="261" difficulty="Good luck!" values="3E1CA981,235E3292,12E526A9,A9D790CE,C1096573,6EAD9C6D"/>
|
||||
<tcpsequence index="260" difficulty="Good luck!" values="CF25B4C4,AB89359A,92E920D,E94E1572,81EAA2D3,1E535366"/>
|
||||
<ipidsequence class="All zeros" values="0,0,0,0,0,0"/>
|
||||
<tcptssequence class="1000HZ" values="571ED4B7,571ED51B,571ED57F,571ED5E3,571ED647,571ED6AC"/>
|
||||
<trace port="80" proto="tcp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.10"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.20"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="0.97"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.102" rtt="0.41" host="lo0-0.gw2.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="3.66" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.64"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.26" rtt="12.46"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="14.18" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
<tcptssequence class="1000HZ" values="FFBBE3C8,FFBBE42B,FFBBE490,FFBBE4F4,FFBBE558,FFBBE5BC"/>
|
||||
<trace port="443" proto="tcp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.13"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.12" rtt="0.29"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="12.28"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.85" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="1.79" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.66"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="12.96"/>
|
||||
<hop ttl="8" ipaddr="167.179.167.166" rtt="14.82" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
</trace>
|
||||
<times srtt="14452" rttvar="312" to="100000"/>
|
||||
<times srtt="14711" rttvar="284" to="100000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775374720"/>
|
||||
<taskend task="NSE" time="1775374720"/>
|
||||
<taskbegin task="NSE" time="1775374720"/>
|
||||
<taskend task="NSE" time="1775374720"/>
|
||||
<taskbegin task="NSE" time="1775374720"/>
|
||||
<taskend task="NSE" time="1775374720"/>
|
||||
<runstats><finished time="1775374720" timestr="Sun Apr 5 07:38:40 2026" summary="Nmap done at Sun Apr 5 07:38:40 2026; 1 IP address (1 host up) scanned in 34.30 seconds" elapsed="34.30" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776137151"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<taskbegin task="NSE" time="1776137151"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<taskbegin task="NSE" time="1776137151"/>
|
||||
<taskend task="NSE" time="1776137151"/>
|
||||
<runstats><finished time="1776137151" timestr="Tue Apr 14 03:25:51 2026" summary="Nmap done at Tue Apr 14 03:25:51 2026; 1 IP address (1 host up) scanned in 30.49 seconds" elapsed="30.49" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
@@ -1,73 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE nmaprun>
|
||||
<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>
|
||||
<!-- Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com" start="1775374687" startstr="Sun Apr 5 07:38:07 2026" version="7.98" xmloutputversion="1.05">
|
||||
<!-- Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com -->
|
||||
<nmaprun scanner="nmap" args="/usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/edge.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/edge.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml edge.lan.ddnsgeek.com" start="1776137121" startstr="Tue Apr 14 03:25:21 2026" version="7.99" xmloutputversion="1.05">
|
||||
<scaninfo type="udp" protocol="udp" numservices="100" services="7,9,17,19,49,53,67-69,80,88,111,120,123,135-139,158,161-162,177,427,443,445,497,500,514-515,518,520,593,623,626,631,996-999,1022-1023,1025-1030,1433-1434,1645-1646,1701,1718-1719,1812-1813,1900,2000,2048-2049,2222-2223,3283,3456,3703,4444,4500,5000,5060,5353,5632,9200,10000,17185,20031,30718,31337,32768-32769,32771,32815,33281,49152-49154,49156,49181-49182,49185-49186,49188,49190-49194,49200-49201,65024"/>
|
||||
<verbose level="2"/>
|
||||
<debugging level="0"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="NSE" time="1775374689"/>
|
||||
<taskend task="NSE" time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1775374689"/>
|
||||
<taskbegin task="UDP Scan" time="1775374689"/>
|
||||
<taskend task="UDP Scan" time="1775374701" extrainfo="100 total ports"/>
|
||||
<taskbegin task="Service scan" time="1775374701"/>
|
||||
<taskprogress task="Service scan" time="1775374799" percent="1.00" remaining="9702" etc="1775384501"/>
|
||||
<taskprogress task="Service scan" time="1775374898" percent="31.00" remaining="439" etc="1775375336"/>
|
||||
<taskprogress task="Service scan" time="1775374996" percent="61.00" remaining="189" etc="1775375185"/>
|
||||
<taskprogress task="Service scan" time="1775375100" percent="91.00" remaining="40" etc="1775375139"/>
|
||||
<taskend task="Service scan" time="1775375107" extrainfo="100 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1775375123"/>
|
||||
<taskend task="Traceroute" time="1775375126"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1775375126"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1775375128"/>
|
||||
<taskbegin task="NSE" time="1775375129"/>
|
||||
<taskprogress task="NSE" time="1775375164" percent="74.11" remaining="13" etc="1775375176"/>
|
||||
<taskprogress task="NSE" time="1775375202" percent="84.73" remaining="14" etc="1775375215"/>
|
||||
<taskprogress task="NSE" time="1775375446" percent="86.50" remaining="50" etc="1775375495"/>
|
||||
<taskprogress task="NSE" time="1775375478" percent="92.68" remaining="28" etc="1775375506"/>
|
||||
<taskprogress task="NSE" time="1775375508" percent="99.34" remaining="3" etc="1775375511"/>
|
||||
<taskprogress task="NSE" time="1775375538" percent="99.36" remaining="3" etc="1775375541"/>
|
||||
<taskprogress task="NSE" time="1775375568" percent="99.38" remaining="3" etc="1775375571"/>
|
||||
<taskprogress task="NSE" time="1775375598" percent="99.41" remaining="3" etc="1775375601"/>
|
||||
<taskprogress task="NSE" time="1775375628" percent="99.43" remaining="3" etc="1775375631"/>
|
||||
<taskprogress task="NSE" time="1775375658" percent="99.46" remaining="3" etc="1775375661"/>
|
||||
<taskprogress task="NSE" time="1775375688" percent="99.48" remaining="3" etc="1775375691"/>
|
||||
<taskprogress task="NSE" time="1775375718" percent="99.50" remaining="3" etc="1775375721"/>
|
||||
<taskprogress task="NSE" time="1775375748" percent="99.53" remaining="3" etc="1775375751"/>
|
||||
<taskprogress task="NSE" time="1775375778" percent="99.55" remaining="3" etc="1775375781"/>
|
||||
<taskprogress task="NSE" time="1775375808" percent="99.58" remaining="3" etc="1775375811"/>
|
||||
<taskprogress task="NSE" time="1775375838" percent="99.60" remaining="3" etc="1775375841"/>
|
||||
<taskprogress task="NSE" time="1775375868" percent="99.63" remaining="3" etc="1775375871"/>
|
||||
<taskprogress task="NSE" time="1775375898" percent="99.65" remaining="3" etc="1775375901"/>
|
||||
<taskprogress task="NSE" time="1775375928" percent="99.67" remaining="3" etc="1775375931"/>
|
||||
<taskprogress task="NSE" time="1775375958" percent="99.70" remaining="3" etc="1775375960"/>
|
||||
<taskprogress task="NSE" time="1775375988" percent="99.72" remaining="3" etc="1775375990"/>
|
||||
<taskprogress task="NSE" time="1775376018" percent="99.75" remaining="3" etc="1775376020"/>
|
||||
<taskprogress task="NSE" time="1775376048" percent="99.77" remaining="3" etc="1775376050"/>
|
||||
<taskprogress task="NSE" time="1775376078" percent="99.80" remaining="2" etc="1775376080"/>
|
||||
<taskprogress task="NSE" time="1775376108" percent="99.82" remaining="2" etc="1775376110"/>
|
||||
<taskprogress task="NSE" time="1775376138" percent="99.85" remaining="2" etc="1775376140"/>
|
||||
<taskprogress task="NSE" time="1775376168" percent="99.87" remaining="2" etc="1775376169"/>
|
||||
<taskprogress task="NSE" time="1775376198" percent="99.90" remaining="2" etc="1775376199"/>
|
||||
<taskprogress task="NSE" time="1775376228" percent="99.92" remaining="1" etc="1775376229"/>
|
||||
<taskprogress task="NSE" time="1775376258" percent="99.95" remaining="1" etc="1775376259"/>
|
||||
<taskprogress task="NSE" time="1775376288" percent="99.97" remaining="1" etc="1775376288"/>
|
||||
<taskprogress task="NSE" time="1775376318" percent="99.99" remaining="1" etc="1775376318"/>
|
||||
<taskend task="NSE" time="1775376318"/>
|
||||
<taskbegin task="NSE" time="1775376319"/>
|
||||
<taskprogress task="NSE" time="1775376350" percent="86.82" remaining="5" etc="1775376355"/>
|
||||
<taskend task="NSE" time="1775376365"/>
|
||||
<taskbegin task="NSE" time="1775376365"/>
|
||||
<taskend task="NSE" time="1775376366"/>
|
||||
<host starttime="1775374690" endtime="1775376366"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="NSE" time="1776137122"/>
|
||||
<taskend task="NSE" time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskend task="Parallel DNS resolution of 1 host." time="1776137122"/>
|
||||
<taskbegin task="UDP Scan" time="1776137122"/>
|
||||
<taskend task="UDP Scan" time="1776137133" extrainfo="100 total ports"/>
|
||||
<taskbegin task="Service scan" time="1776137133"/>
|
||||
<taskprogress task="Service scan" time="1776137231" percent="1.00" remaining="9702" etc="1776146933"/>
|
||||
<taskprogress task="Service scan" time="1776137329" percent="31.00" remaining="437" etc="1776137765"/>
|
||||
<taskprogress task="Service scan" time="1776137427" percent="61.00" remaining="188" etc="1776137615"/>
|
||||
<taskprogress task="Service scan" time="1776137529" percent="91.00" remaining="40" etc="1776137568"/>
|
||||
<taskend task="Service scan" time="1776137534" extrainfo="100 services on 1 host"/>
|
||||
<taskbegin task="Traceroute" time="1776137540"/>
|
||||
<taskend task="Traceroute" time="1776137549"/>
|
||||
<taskbegin task="Parallel DNS resolution of 7 hosts." time="1776137549"/>
|
||||
<taskend task="Parallel DNS resolution of 7 hosts." time="1776137550"/>
|
||||
<taskbegin task="NSE" time="1776137550"/>
|
||||
<taskprogress task="NSE" time="1776137581" percent="99.32" remaining="1" etc="1776137581"/>
|
||||
<taskprogress task="NSE" time="1776137611" percent="99.35" remaining="1" etc="1776137611"/>
|
||||
<taskprogress task="NSE" time="1776137641" percent="99.38" remaining="1" etc="1776137642"/>
|
||||
<taskprogress task="NSE" time="1776137671" percent="99.41" remaining="1" etc="1776137672"/>
|
||||
<taskprogress task="NSE" time="1776137701" percent="99.44" remaining="1" etc="1776137702"/>
|
||||
<taskprogress task="NSE" time="1776137731" percent="99.47" remaining="1" etc="1776137732"/>
|
||||
<taskprogress task="NSE" time="1776137761" percent="99.50" remaining="2" etc="1776137762"/>
|
||||
<taskprogress task="NSE" time="1776137791" percent="99.53" remaining="2" etc="1776137792"/>
|
||||
<taskprogress task="NSE" time="1776137821" percent="99.56" remaining="2" etc="1776137822"/>
|
||||
<taskprogress task="NSE" time="1776137851" percent="99.59" remaining="2" etc="1776137852"/>
|
||||
<taskprogress task="NSE" time="1776137881" percent="99.62" remaining="2" etc="1776137882"/>
|
||||
<taskprogress task="NSE" time="1776137911" percent="99.65" remaining="2" etc="1776137912"/>
|
||||
<taskprogress task="NSE" time="1776137941" percent="99.69" remaining="2" etc="1776137942"/>
|
||||
<taskprogress task="NSE" time="1776137971" percent="99.71" remaining="2" etc="1776137972"/>
|
||||
<taskprogress task="NSE" time="1776138001" percent="99.74" remaining="2" etc="1776138002"/>
|
||||
<taskprogress task="NSE" time="1776138031" percent="99.77" remaining="2" etc="1776138032"/>
|
||||
<taskprogress task="NSE" time="1776138061" percent="99.81" remaining="1" etc="1776138062"/>
|
||||
<taskprogress task="NSE" time="1776138091" percent="99.84" remaining="1" etc="1776138092"/>
|
||||
<taskprogress task="NSE" time="1776138121" percent="99.86" remaining="1" etc="1776138122"/>
|
||||
<taskprogress task="NSE" time="1776138151" percent="99.89" remaining="1" etc="1776138152"/>
|
||||
<taskprogress task="NSE" time="1776138181" percent="99.93" remaining="1" etc="1776138181"/>
|
||||
<taskprogress task="NSE" time="1776138211" percent="99.96" remaining="1" etc="1776138211"/>
|
||||
<taskprogress task="NSE" time="1776138241" percent="99.99" remaining="1" etc="1776138241"/>
|
||||
<taskend task="NSE" time="1776138250"/>
|
||||
<taskbegin task="NSE" time="1776138250"/>
|
||||
<taskend task="NSE" time="1776138258"/>
|
||||
<taskbegin task="NSE" time="1776138258"/>
|
||||
<taskend task="NSE" time="1776138258"/>
|
||||
<host starttime="1776137122" endtime="1776138258"><status state="up" reason="user-set" reason_ttl="0"/>
|
||||
<address addr="167.179.167.166" addrtype="ipv4"/>
|
||||
<hostnames>
|
||||
<hostname name="edge.lan.ddnsgeek.com" type="user"/>
|
||||
@@ -77,27 +67,24 @@
|
||||
<extrareasons reason="no-response" count="100" proto="udp" ports="7,9,17,19,49,53,67-69,80,88,111,120,123,135-139,158,161-162,177,427,443,445,497,500,514-515,518,520,593,623,626,631,996-999,1022-1023,1025-1030,1433-1434,1645-1646,1701,1718-1719,1812-1813,1900,2000,2048-2049,2222-2223,3283,3456,3703,4444,4500,5000,5060,5353,5632,9200,10000,17185,20031,30718,31337,32768-32769,32771,32815,33281,49152-49154,49156,49181-49182,49185-49186,49188,49190-49194,49200-49201,65024"/>
|
||||
</extraports>
|
||||
</ports>
|
||||
<os><osfingerprint fingerprint="SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%DS=16%DC=T%G=N%TM=69D217EE%P=x86_64-pc-linux-gnu)
SEQ()
U1(R=N)
IE(R=N)
"/>
|
||||
<os><osfingerprint fingerprint="SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%G=N%TM=69DDB812%P=x86_64-pc-linux-gnu)
SEQ()
U1(R=N)
IE(R=N)
"/>
|
||||
</os>
|
||||
<distance value="16"/>
|
||||
<trace proto="icmp">
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.08"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.11" rtt="0.19"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="0.80"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.24" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="3.34" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.187" rtt="11.80"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.71" rtt="13.01"/>
|
||||
<hop ttl="16" ipaddr="167.179.167.166" rtt="551.48" host="167-179-167-166.a7b3a7.bne.nbn.aussiebb.net"/>
|
||||
<hop ttl="1" ipaddr="10.216.0.161" rtt="0.06"/>
|
||||
<hop ttl="2" ipaddr="10.216.35.12" rtt="0.25"/>
|
||||
<hop ttl="3" ipaddr="10.216.32.2" rtt="1.05"/>
|
||||
<hop ttl="4" ipaddr="172.105.160.101" rtt="0.34" host="lo0-0.gw1.syd1.au.linode.com"/>
|
||||
<hop ttl="5" ipaddr="202.77.88.3" rtt="3.67" host="as4764.syd.edgeix.net.au"/>
|
||||
<hop ttl="6" ipaddr="10.241.1.185" rtt="11.64"/>
|
||||
<hop ttl="7" ipaddr="10.241.2.26" rtt="12.61"/>
|
||||
</trace>
|
||||
<times srtt="551482" rttvar="551482" to="1250000"/>
|
||||
</host>
|
||||
<taskbegin task="NSE" time="1775376366"/>
|
||||
<taskend task="NSE" time="1775376366"/>
|
||||
<taskbegin task="NSE" time="1775376366"/>
|
||||
<taskend task="NSE" time="1775376366"/>
|
||||
<taskbegin task="NSE" time="1775376366"/>
|
||||
<taskend task="NSE" time="1775376367"/>
|
||||
<runstats><finished time="1775376367" timestr="Sun Apr 5 08:06:07 2026" summary="Nmap done at Sun Apr 5 08:06:07 2026; 1 IP address (1 host up) scanned in 1681.49 seconds" elapsed="1681.49" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
<taskbegin task="NSE" time="1776138258"/>
|
||||
<taskend task="NSE" time="1776138258"/>
|
||||
<taskbegin task="NSE" time="1776138258"/>
|
||||
<taskend task="NSE" time="1776138258"/>
|
||||
<taskbegin task="NSE" time="1776138258"/>
|
||||
<taskend task="NSE" time="1776138258"/>
|
||||
<runstats><finished time="1776138258" timestr="Tue Apr 14 03:44:18 2026" summary="Nmap done at Tue Apr 14 03:44:18 2026; 1 IP address (1 host up) scanned in 1137.26 seconds" elapsed="1137.26" exit="success"/><hosts up="1" down="0" total="1"/>
|
||||
</runstats>
|
||||
</nmaprun>
|
||||
|
||||
+18
-2
@@ -1,7 +1,5 @@
|
||||
CVE Identified: CVE-2003-1418
|
||||
|
||||
Nmap script found a potential vulnerability. (State: VULNERABLE)
|
||||
|
||||
CVE Identified: CVE-2005-3299
|
||||
|
||||
CVE Identified: CVE-2005-3299
|
||||
@@ -12,3 +10,21 @@ CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2009-3733
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2011-0966
|
||||
|
||||
CVE Identified: CVE-2018-10822
|
||||
|
||||
CVE Identified: CVE-2018-10824
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-2019-1653
|
||||
|
||||
CVE Identified: CVE-2013-6235
|
||||
|
||||
|
||||
+21
-21
@@ -5,20 +5,22 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN "/root
|
||||
[/root/results/familytree.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt](file:///root/results/familytree.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/familytree.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -p- -oN /root/results/familytree.lan.ddnsgeek.com/scans/_full_tcp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_full_tcp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
Nmap scan report for familytree.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.017s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 796s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 466s
|
||||
Not shown: 65531 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://familytree.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://familytree.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-favicon: Unknown favicon MD5: FECE0FA9B3C6B50FC82F28435E4EFF02
|
||||
|_http-server-header: gunicorn
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-title: Gramps Web
|
||||
|_http-favicon: Unknown favicon MD5: AE281E38F470F8AC807DD34D28F8D40D
|
||||
| ssl-cert: Subject: commonName=familytree.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:familytree.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
@@ -65,10 +67,8 @@ PORT STATE SERVICE REASON VERSION
|
||||
| e6tGtVhxAxtcrVaDUq5FXmKaCVMgHtU76lV2sHOeldUlLh9y9aM53ILrln2eS3L2
|
||||
| x5kvhutAzOLKXVX2cA==
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-server-header: gunicorn
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET OPTIONS POST HEAD
|
||||
|_ Supported Methods: POST GET OPTIONS HEAD
|
||||
20001/tcp closed microsan reset ttl 57
|
||||
51413/tcp open tcpwrapped syn-ack ttl 56
|
||||
Device type: general purpose
|
||||
@@ -78,9 +78,9 @@ OS fingerprint not ideal because: Didn't receive UDP response. Please try again
|
||||
Aggressive OS guesses: Linux 5.4 (86%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69D2147F%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=107%GCD=1%ISR=106%TI=Z%TS=A)
|
||||
SEQ(SP=107%GCD=1%ISR=10A%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=20001%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB575%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=106%GCD=1%ISR=10A%TI=Z%TS=A)
|
||||
SEQ(SP=FF%GCD=1%ISR=105%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=N)
|
||||
@@ -94,24 +94,24 @@ T7(R=N)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.926 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.664 days (since Mon Feb 23 11:37:19 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=263 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=262 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 20001/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.15 ms 10.216.0.161
|
||||
2 0.24 ms 10.216.35.11
|
||||
3 0.90 ms 10.216.32.2
|
||||
4 0.26 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 2.45 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.74 ms 10.241.1.187
|
||||
7 16.71 ms 10.241.2.26
|
||||
8 14.13 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
2 0.28 ms 10.216.35.11
|
||||
3 0.83 ms 10.216.32.1
|
||||
4 0.33 ms lo0-0.gw2.syd1.au.linode.com (172.105.160.102)
|
||||
5 1.43 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.65 ms 10.241.1.185
|
||||
7 12.47 ms 10.241.2.26
|
||||
8 14.11 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:51:27 2026 -- 1 IP address (1 host up) scanned in 802.04 seconds
|
||||
# Nmap done at Tue Apr 14 03:33:09 2026 -- 1 IP address (1 host up) scanned in 468.21 seconds
|
||||
|
||||
```
|
||||
|
||||
+13
-11
@@ -5,34 +5,36 @@ nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN "/root/results/familytree.l
|
||||
[/root/results/familytree.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt](file:///root/results/familytree.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/familytree.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sU -A --top-ports 100 -oN /root/results/familytree.lan.ddnsgeek.com/scans/_top_100_udp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_top_100_udp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
Nmap scan report for familytree.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set.
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 1513s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 1136s
|
||||
All 100 scanned ports on familytree.lan.ddnsgeek.com (167.179.167.166) are in ignored states.
|
||||
Not shown: 100 open|filtered udp ports (no-response)
|
||||
Too many fingerprints match this host to give specific OS details
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=%CT=%CU=%PV=N%G=N%TM=69D2174C%P=x86_64-pc-linux-gnu)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=%CT=%CU=%PV=N%G=N%TM=69DDB813%P=x86_64-pc-linux-gnu)
|
||||
SEQ()
|
||||
T2(R=Y%DF=Y%TG=40%W=1FA%S=O%A=O%F=AP%O=NNT11%RD=0%Q=)
|
||||
T4(R=Y%DF=Y%TG=40%W=1FA%S=O%A=O%F=A%O=NNT11%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
|
||||
TRACEROUTE (using proto 1/icmp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.06 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.11
|
||||
3 0.97 ms 10.216.32.2
|
||||
4 0.35 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.33 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.87 ms 10.241.1.187
|
||||
7 13.08 ms 10.241.2.71
|
||||
1 0.10 ms 10.216.0.161
|
||||
2 0.31 ms 10.216.35.12
|
||||
3 0.83 ms 10.216.32.2
|
||||
4 0.59 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 2.96 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.65 ms 10.241.1.185
|
||||
7 12.61 ms 10.241.2.26
|
||||
8 ... 30
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 08:03:24 2026 -- 1 IP address (1 host up) scanned in 1518.46 seconds
|
||||
# Nmap done at Tue Apr 14 03:44:19 2026 -- 1 IP address (1 host up) scanned in 1138.42 seconds
|
||||
|
||||
```
|
||||
|
||||
+25
-25
@@ -5,20 +5,18 @@ nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN "/root/res
|
||||
[/root/results/familytree.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt](file:///root/results/familytree.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt):
|
||||
|
||||
```
|
||||
# Nmap 7.98 scan initiated Sun Apr 5 07:38:07 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/familytree.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
# Nmap 7.99 scan initiated Tue Apr 14 03:25:21 2026 as: /usr/lib/nmap/nmap -vv --reason -Pn -T4 -sV -sC --version-all -A --osscan-guess -oN /root/results/familytree.lan.ddnsgeek.com/scans/_quick_tcp_nmap.txt -oX /root/results/familytree.lan.ddnsgeek.com/scans/xml/_quick_tcp_nmap.xml familytree.lan.ddnsgeek.com
|
||||
Nmap scan report for familytree.lan.ddnsgeek.com (167.179.167.166)
|
||||
Host is up, received user-set (0.014s latency).
|
||||
Host is up, received user-set (0.015s latency).
|
||||
rDNS record for 167.179.167.166: 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net
|
||||
Scanned at 2026-04-05 07:38:10 UTC for 30s
|
||||
Scanned at 2026-04-14 03:25:23 UTC for 28s
|
||||
Not shown: 998 filtered tcp ports (no-response)
|
||||
PORT STATE SERVICE REASON VERSION
|
||||
80/tcp open http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-title: Did not follow redirect to https://familytree.lan.ddnsgeek.com/
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET HEAD POST OPTIONS
|
||||
|_http-title: Did not follow redirect to https://familytree.lan.ddnsgeek.com/
|
||||
443/tcp open ssl/http syn-ack ttl 55 Golang net/http server (Go-IPFS json-rpc or InfluxDB API)
|
||||
|_http-favicon: Unknown favicon MD5: FECE0FA9B3C6B50FC82F28435E4EFF02
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
| ssl-cert: Subject: commonName=familytree.lan.ddnsgeek.com
|
||||
| Subject Alternative Name: DNS:familytree.lan.ddnsgeek.com
|
||||
| Issuer: commonName=R13/organizationName=Let's Encrypt/countryName=US
|
||||
@@ -65,21 +63,23 @@ PORT STATE SERVICE REASON VERSION
|
||||
| e6tGtVhxAxtcrVaDUq5FXmKaCVMgHtU76lV2sHOeldUlLh9y9aM53ILrln2eS3L2
|
||||
| x5kvhutAzOLKXVX2cA==
|
||||
|_-----END CERTIFICATE-----
|
||||
|_http-server-header: gunicorn
|
||||
| http-methods:
|
||||
|_ Supported Methods: GET OPTIONS POST HEAD
|
||||
|_http-favicon: Unknown favicon MD5: AE281E38F470F8AC807DD34D28F8D40D
|
||||
|_http-title: Gramps Web
|
||||
| http-methods:
|
||||
|_ Supported Methods: POST GET OPTIONS HEAD
|
||||
|_ssl-date: TLS randomness does not represent time
|
||||
|_http-server-header: gunicorn
|
||||
Warning: OSScan results may be unreliable because we could not find at least 1 open and 1 closed port
|
||||
Device type: general purpose|router|storage-misc
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (92%), Synology DiskStation Manager 5.X (87%)
|
||||
Running (JUST GUESSING): Linux 4.X|5.X|6.X|2.6.X|3.X (93%), MikroTik RouterOS 7.X (93%), Synology DiskStation Manager 5.X (85%)
|
||||
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5 cpe:/o:mikrotik:routeros:7 cpe:/o:linux:linux_kernel:5.6.3 cpe:/o:linux:linux_kernel:6.0 cpe:/o:linux:linux_kernel:2.6.32 cpe:/o:linux:linux_kernel:3 cpe:/a:synology:diskstation_manager:5.2
|
||||
OS fingerprint not ideal because: Missing a closed TCP port so results incomplete
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), Linux 4.19 (92%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (92%), Linux 6.0 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%), Linux 3.10 - 4.11 (87%)
|
||||
Aggressive OS guesses: Linux 4.15 - 5.19 (93%), Linux 4.19 (93%), Linux 5.0 - 5.14 (93%), OpenWrt 21.02 (Linux 5.4) (93%), MikroTik RouterOS 7.2 - 7.5 (Linux 5.6.3) (93%), Linux 6.0 (92%), Linux 6.15 (90%), Linux 5.4 - 5.10 (87%), Linux 2.6.32 (87%), Linux 2.6.32 - 3.13 (87%)
|
||||
No exact OS matches for host (test conditions non-ideal).
|
||||
TCP/IP fingerprint:
|
||||
SCAN(V=7.98%E=4%D=4/5%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69D21180%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=FF%GCD=1%ISR=107%TI=Z%TS=A)
|
||||
SEQ(SP=FF%GCD=1%ISR=10C%TI=Z%TS=A)
|
||||
SCAN(V=7.99%E=4%D=4/14%OT=80%CT=%CU=%PV=N%DS=8%DC=T%G=N%TM=69DDB3BF%P=x86_64-pc-linux-gnu)
|
||||
SEQ(SP=100%GCD=1%ISR=10D%TI=Z%TS=A)
|
||||
SEQ(SP=104%GCD=1%ISR=10D%TI=Z%TS=A)
|
||||
OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
|
||||
WIN(W1=FE88%W2=FE88%W3=FE88%W4=FE88%W5=FE88%W6=FE88)
|
||||
ECN(R=Y%DF=Y%TG=40%W=FAF0%O=M5B4NNSNW7%CC=Y%Q=)
|
||||
@@ -90,24 +90,24 @@ T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
|
||||
U1(R=N)
|
||||
IE(R=N)
|
||||
|
||||
Uptime guess: 16.917 days (since Thu Mar 19 09:37:52 2026)
|
||||
Uptime guess: 49.659 days (since Mon Feb 23 11:37:20 2026)
|
||||
Network Distance: 8 hops
|
||||
TCP Sequence Prediction: Difficulty=255 (Good luck!)
|
||||
TCP Sequence Prediction: Difficulty=260 (Good luck!)
|
||||
IP ID Sequence Generation: All zeros
|
||||
|
||||
TRACEROUTE (using port 80/tcp)
|
||||
HOP RTT ADDRESS
|
||||
1 0.37 ms 10.216.0.161
|
||||
2 0.50 ms 10.216.35.11
|
||||
3 0.97 ms 10.216.32.2
|
||||
4 0.51 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 3.33 ms 4764.syd.equinix.com (45.127.173.7)
|
||||
6 11.72 ms 10.241.1.185
|
||||
7 12.62 ms 10.241.2.26
|
||||
8 14.00 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
1 0.19 ms 10.216.0.161
|
||||
2 0.25 ms 10.216.35.12
|
||||
3 0.95 ms 10.216.32.2
|
||||
4 0.39 ms lo0-0.gw1.syd1.au.linode.com (172.105.160.101)
|
||||
5 4.67 ms as4764.syd.edgeix.net.au (202.77.88.3)
|
||||
6 11.65 ms 10.241.1.187
|
||||
7 14.69 ms 10.241.2.71
|
||||
8 14.35 ms 167-179-167-166.a7b3a7.bne.nbn.aussiebb.net (167.179.167.166)
|
||||
|
||||
Read data files from: /usr/share/nmap
|
||||
OS and Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
|
||||
# Nmap done at Sun Apr 5 07:38:40 2026 -- 1 IP address (1 host up) scanned in 34.28 seconds
|
||||
# Nmap done at Tue Apr 14 03:25:51 2026 -- 1 IP address (1 host up) scanned in 30.80 seconds
|
||||
|
||||
```
|
||||
|
||||
+4
-4
@@ -10,9 +10,9 @@ accept-ranges: bytes
|
||||
cache-control: no-cache
|
||||
content-disposition: inline; filename=index.html
|
||||
content-type: text/html; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:53 GMT
|
||||
etag: "1775239884.0-1497-1563297874"
|
||||
last-modified: Fri, 03 Apr 2026 18:11:24 GMT
|
||||
date: Tue, 14 Apr 2026 03:25:57 GMT
|
||||
etag: "1775817020.0-1497-1563297874"
|
||||
last-modified: Fri, 10 Apr 2026 10:30:20 GMT
|
||||
server: gunicorn
|
||||
strict-transport-security: max-age=15552000; includeSubDomains; preload
|
||||
vary: Accept-Encoding
|
||||
@@ -21,5 +21,5 @@ x-frame-options: SAMEORIGIN
|
||||
x-xss-protection: 1; mode=block
|
||||
content-length: 1497
|
||||
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BuK25s6o.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BuK25s6o.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BGN_lyBA.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BGN_lyBA.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
```
|
||||
|
||||
+4
-4
@@ -10,9 +10,9 @@ accept-ranges: bytes
|
||||
cache-control: no-cache
|
||||
content-disposition: inline; filename=index.html
|
||||
content-type: text/html; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:53 GMT
|
||||
etag: "1775239884.0-1497-1563297874"
|
||||
last-modified: Fri, 03 Apr 2026 18:11:24 GMT
|
||||
date: Tue, 14 Apr 2026 03:25:56 GMT
|
||||
etag: "1775817020.0-1497-1563297874"
|
||||
last-modified: Fri, 10 Apr 2026 10:30:20 GMT
|
||||
server: gunicorn
|
||||
strict-transport-security: max-age=15552000; includeSubDomains; preload
|
||||
vary: Accept-Encoding
|
||||
@@ -21,6 +21,6 @@ x-frame-options: SAMEORIGIN
|
||||
x-xss-protection: 1; mode=block
|
||||
content-length: 1497
|
||||
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BuK25s6o.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BuK25s6o.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BGN_lyBA.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BGN_lyBA.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
|
||||
```
|
||||
|
||||
+54149
-97
File diff suppressed because it is too large
Load Diff
+4
-4
@@ -10,9 +10,9 @@ accept-ranges: bytes
|
||||
cache-control: no-cache
|
||||
content-disposition: inline; filename=index.html
|
||||
content-type: text/html; charset=utf-8
|
||||
date: Sun, 05 Apr 2026 07:38:53 GMT
|
||||
etag: "1775239884.0-1497-1563297874"
|
||||
last-modified: Fri, 03 Apr 2026 18:11:24 GMT
|
||||
date: Tue, 14 Apr 2026 03:25:56 GMT
|
||||
etag: "1775817020.0-1497-1563297874"
|
||||
last-modified: Fri, 10 Apr 2026 10:30:20 GMT
|
||||
server: gunicorn
|
||||
strict-transport-security: max-age=15552000; includeSubDomains; preload
|
||||
vary: Accept-Encoding
|
||||
@@ -21,5 +21,5 @@ x-frame-options: SAMEORIGIN
|
||||
x-xss-protection: 1; mode=block
|
||||
content-length: 1497
|
||||
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BuK25s6o.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BuK25s6o.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover"><meta name="description" content="Gramps Web - research & organize your family tree together"><base href="/"><link rel="stylesheet" href="webawesome-styles/themes/default.css"><link rel="stylesheet" href="fonts/fonts.css"><link rel="stylesheet" href="global.css"><link rel="stylesheet" href="tippy.css"><link rel="icon" href="images/favicon.ico"><link rel="manifest" href="manifest.json" crossorigin="use-credentials"><meta name="theme-color" content="#6D4C41"><meta name="mobile-web-app-capable" content="yes"><meta name="application-name" content="Gramps"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar" content="#6D4C41"><meta name="apple-mobile-web-app-title" content="Gramps"><link rel="apple-touch-icon" sizes="192x192" href="images/icon192.png"><title>Gramps Web</title><link rel="preload" href="./BGN_lyBA.js" as="script" crossorigin="anonymous"><link rel="preload" href="./config.js" as="script" crossorigin="anonymous"></head><body><gramps-js></gramps-js><script type="module" src="./BGN_lyBA.js"></script><script>"serviceWorker"in navigator&&window.addEventListener("load",function(){navigator.serviceWorker.register("./sw.js").then(function(){console.log("ServiceWorker registered.")}).catch(function(e){console.log("ServiceWorker registration failed: ",e)})})</script></body></html>
|
||||
```
|
||||
|
||||
+2217
-421
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -6,7 +6,7 @@ sslscan --show-certificate --no-colour familytree.lan.ddnsgeek.com:443 2>&1
|
||||
|
||||
```
|
||||
Version: 2.1.5
|
||||
OpenSSL 3.5.3 16 Sep 2025
|
||||
OpenSSL 3.5.5 27 Jan 2026
|
||||
|
||||
Connected to 167.179.167.166
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user