FIXED:
* Better request tracking through flow

ADDED:
* Cross-check detection
This commit is contained in:
brent saner
2025-12-17 19:21:07 -05:00
parent 9f97fcaf81
commit 1a4549ea72
7 changed files with 73 additions and 40 deletions

View File

@@ -4,7 +4,7 @@
{{- $linkico := "🔗" }}
<h2 id="client">Client/Browser Information<a href="#client">{{ $linkico }}</a></h2>
<p>
<b>Your IP{{ getIpver $page.Info.IP }} Address is <i><a href="https://ipinfo.io/{{ $page.Info.IP.String }}">{{ $page.Info.IP.String }}</a></i>.</b>
<b>Your IP{{ getIpver $page.Info.IP }} Address is <i>{{ $page.Info.IP.String }}</i> <i>(<a href="https://ipinfo.io/{{ $page.Info.IP.String }}">more info</a></i>).</b>
<br/>
<i>You are connecting with port <b>{{ $page.Info.Port }}</b> outbound.</i>
{{- if $page.HasAltURL }}
@@ -22,9 +22,9 @@
const addr = dat.ip;
const infoDiv = document.getElementById('alt_addr');
infoDiv.innerHTML = `
<i>You also have IP{{ $page.AltVer }} address <b><a href="https://ipinfo.io/${addr}">${addr}</a></b>.</i>
<i>You also have IP{{ $page.AltVer }} address <b>${addr}</b> (<a href="https://ipinfo.io/${addr}">more info</a>).</i>
<br/>
<i>Try loading <b><a href="{{ $page.AltURL }}">{{ $page.AltURL }}</a></b> for more information.</i>`;
<i>Try loading <b><a href="{{ $page.AltURL }}">{{ $page.AltURL }}</a></b> to check your secondary address.</i>`;
}
} catch (error) {
console.info('Did not fetch alternate address: ', error);

View File

@@ -4,6 +4,7 @@
{{- $linkico := "🔗" -}}
<!DOCTYPE html>
<html lang="en">
<!-- Request ID: {{ .ReqUUID.String }} -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ getTitle $page.PageType }}</title>