https://github.com/lesnuages/yuna
Simple TLS covert channel implementation
https://github.com/lesnuages/yuna
c2 pentesting tls
Last synced: 5 months ago
JSON representation
Simple TLS covert channel implementation
- Host: GitHub
- URL: https://github.com/lesnuages/yuna
- Owner: lesnuages
- License: bsd-3-clause
- Created: 2018-05-15T09:16:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-15T09:18:59.000Z (about 8 years ago)
- Last Synced: 2025-12-17T14:51:36.976Z (6 months ago)
- Topics: c2, pentesting, tls
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yuna
## Description
Simple TLS covert channel implementation.
Works on both Linux and Windows.
Inspired by [this gist from Casey Smith](https://twitter.com/Oddvarmoe/status/996147947975962624).
## Quickstart
Start the server:
```
go run server.go -command "whoami"
```
Then launch the client:
```
go run client.go
```
## Example output
```
$ go run server.go -command "/bin/ls -laht"
2018/05/15 11:14:28 Command: /bin/ls -laht
2018/05/15 11:14:28 Listenning on 0.0.0.0:4444
total 24K
drwxrwxr-x. 3 rkva rkva 4,0K 15 mai 11:14 .
-rw-rw-r--. 1 rkva rkva 329 15 mai 11:14 README.md
-rw-rw-r--. 1 rkva rkva 1,2K 15 mai 11:11 server.go
-rw-rw-r--. 1 rkva rkva 1,6K 15 mai 11:07 client.go
drwxrwxr-x. 2 rkva rkva 4,0K 9 avril 21:28 network
drwxrwxr-x. 4 rkva rkva 4,0K 8 mars 15:40 ..
```