Files
deceptifeed/go.mod
Ryan Smith fd60dc89eb Add ability to monitor honeypot logs in realtime via WebSockets
This change adds support for WebSockets using Google's WebSocket package.

When the threat feed server is starting, a Go function is created to monitor honeypot log data via a channel. When log data is received on the channel, it is broadcast to all connected WebSocket clients.

A /live endpoint and handler is added for serving the live.html template. This page displays the log data in real time by utilizing WebSockets.

Updated the nav bar on all html pages to include the new 'Live' icon for accessing the realtime log.
2025-04-03 14:07:50 -07:00

11 lines
161 B
Modula-2

module github.com/r-smith/deceptifeed
go 1.24
require (
golang.org/x/crypto v0.36.0
golang.org/x/net v0.38.0
)
require golang.org/x/sys v0.31.0 // indirect