2022-09-10 19:23:48 +00:00
|
|
|
# Project Dependencies
|
|
|
|
|
|
|
|
This project has the following dependencies, excluding the Go standard library:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# xdg
|
|
|
|
|
|
|
|
We use the xdg package to get the user's config directory.
|
|
|
|
|
|
|
|
--- xdg import string
|
|
|
|
|
|
|
|
"github.com/adrg/xdg"
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# sha3
|
|
|
|
|
|
|
|
We use sha3 to hash authentication tokens. It is not in the crypto standard library.
|
|
|
|
|
|
|
|
--- sha3 import string
|
|
|
|
|
|
|
|
"golang.org/x/crypto/sha3"
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2023-03-03 03:20:34 +00:00
|
|
|
# keylogger
|
2022-09-10 19:23:48 +00:00
|
|
|
|
2023-03-03 03:20:34 +00:00
|
|
|
We use keylogger to get keyboard input on the client and simulate keystrokes on the server.
|
2022-09-10 19:23:48 +00:00
|
|
|
|
2023-03-03 03:20:34 +00:00
|
|
|
--- keylogger import string
|
2022-09-10 19:23:48 +00:00
|
|
|
|
2023-03-05 02:40:41 +00:00
|
|
|
"github.com/EgosOwn/keylogger"
|
2022-09-10 19:23:48 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# gorilla/websocket
|
|
|
|
|
|
|
|
We also rely on gorilla/websocket for the websocket server that processes keyboard input.
|
|
|
|
|
|
|
|
--- gorilla/websocket import string
|
|
|
|
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
|
|
|
|
---
|