This repository contains two minimal proof-of-concept RAT's utilizing GO, based on the examples found at go-libp2p-examples
Currently, the RAT is inteded for linux hosts. However, they can be built for windows by modifying the go build variable. You can set the environment variable in linux to tell GO to compille for windows. "env GOOS=windows" and change the command in the project from "sh -c" to "cmd.exe /c". This will be implemented in a later version.
Self-healing proof-of-concept RAT utilizing libp2p.
This project consists of a client and server. The server ip and port must be accessible to the client. Build the client and server binaries separtely.
From the server directory, "go build .". This will build the server binary.
From the client directory, "go build .". This will build the client binary.
Execute the server and display help "./server --help".
Execute the server with a specific rendezvous string "./server -rendezvous S3cr3tK3y"
Execute the client with the same rendezvous string "./client -rendezvous S3cr3tK3y"
Simple RAT that utilizes pubsub channels for communication. Works on LAN only.
From the pubsub_rat directory, "go build .". This will build the "chat" binary.
Execute the binary on two hosts within the same subnet.