{{define "content"}}
Session {{.Session.ID}}
| IP | {{.Session.IP}} |
| Country | {{.Session.Country}} |
| Username | {{.Session.Username}} |
| Shell | {{.Session.ShellName}} |
{{if .Session.ExecCommand}}| Exec Command | {{derefString .Session.ExecCommand}} |
{{end}}
| Score | {{formatScore .Session.HumanScore}} |
| Connected | {{formatTime .Session.ConnectedAt}} |
| Disconnected |
{{if .Session.DisconnectedAt}}{{formatTime (derefTime .Session.DisconnectedAt)}}{{else}}active{{end}} |
{{if gt .EventCount 0}}
Session Replay
{{else}}
No recorded events for this session.
{{end}}
{{if .Logs}}
Command Log
| Time |
Input |
Output |
{{range .Logs}}
| {{formatTime .Timestamp}} |
{{.Input}} |
{{.Output}} |
{{end}}
{{end}}
← Back to dashboard
{{end}}