d4-goclient/README.md

57 lines
2.0 KiB
Markdown
Raw Normal View History

2019-02-14 08:37:22 +01:00
<p align="center">
2019-02-14 08:39:38 +01:00
<img alt="d4-goclient" src="https://raw.githubusercontent.com/D4-project/d4-goclient/master/media/gopherd4.png" height="140" />
2019-02-14 08:37:22 +01:00
<p align="center">
<a href="https://github.com/D4-project/d4-goclient/releases/latest"><img alt="Release" src="https://img.shields.io/github/release/D4-project/d4-goclient.svg?style=flat-square"></a>
2019-02-14 08:40:52 +01:00
<a href="https://github.com/D4-project/d4-goclient/blob/master/LICENSE"><img alt="Software License" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
2019-02-14 08:37:22 +01:00
<a href="https://goreportcard.com/report/github.com/D4-Project/d4-goclient"><img alt="Go Report Card" src="https://goreportcard.com/badge/github.com/D4-Project/d4-goclient"></a>
</p>
</p>
2019-01-17 20:42:16 +01:00
2019-02-14 08:37:22 +01:00
**d4-goclient** is a D4 project client (sensor) implementing the [D4 encapsulation protocol](https://github.com/D4-project/architecture/tree/master/format).
2019-01-17 20:42:16 +01:00
The client can be used on different targets and architectures to collect network capture, logs, specific network monitoring and send it
back to a [D4 server](https://github.com/D4-project/d4-core).
For more information about the [D4 project](https://www.d4-project.org/).
2019-01-11 16:29:20 +01:00
# Installation
2019-01-11 16:29:20 +01:00
Fetch d4-goclient code and dependencies
2019-01-11 16:29:20 +01:00
```bash
go get github.com/satori/go.uuid
go get github.com/D4-project/d4-goclient
2019-01-11 16:29:20 +01:00
```
Use make to build binaries:
2019-01-11 16:29:20 +01:00
```bash
make arm5l # for raspberry pi / linux
make amd64l # for amd64 / linux
2019-01-11 16:29:20 +01:00
```
## Dependencies
- golang 1.10 (tested)
- go.uuid
2019-01-11 16:29:20 +01:00
# Use
## Launch a d4-server (if you don't have a server)
2019-01-11 16:29:20 +01:00
See https://github.com/D4-project/d4-core/tree/master/server
$IP_SRV being the d4-server's address, $PORT its listening port
2019-01-11 16:29:20 +01:00
## Pipe data into the client
2019-01-14 17:12:26 +01:00
### Some file
2019-01-11 16:29:20 +01:00
```bash
cat /proc/cpuinfo | ./d4-goclient -c conf.sample/ | socat - OPENSSL-CONNECT:$IP_SRV:$PORT,verify=0
```
### tcpdump (libpcap) output, discarding our own traffic
$IP being the monitoring computer ip
```bash
tcpdump not dst $IP and not src $IP -w - | ./d4-goclient -c conf.sample/ | socat - OPENSSL-CONNECT:$IP_SRV:$PORT,verify=0
2019-01-11 16:29:20 +01:00
```