https://github.com/amnesic-systems/veil-examples
Example enclave applications that build on top of veil
https://github.com/amnesic-systems/veil-examples
aws enclave nitro
Last synced: about 1 month ago
JSON representation
Example enclave applications that build on top of veil
- Host: GitHub
- URL: https://github.com/amnesic-systems/veil-examples
- Owner: Amnesic-Systems
- License: gpl-3.0
- Created: 2024-11-14T13:17:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-23T15:04:35.000Z (over 1 year ago)
- Last Synced: 2025-03-20T02:39:41.933Z (about 1 year ago)
- Topics: aws, enclave, nitro
- Language: Dockerfile
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# veil examples
This repository contains example enclave applications that build on top of
[veil](https://github.com/Amnesic-Systems/veil).
## ssh-server
This example runs an OpenSSH server inside an enclave.
First, build and start the OpenSSH server by running:
```
make run app=ssh-server
```
Next, you can connect to it by running the following command.
The password is `root`.
```
ssh root@10.0.0.2
```
## python-fetcher
This example runs a Python script that fetches a page over the Internet.
Build and start the script by running:
```
make run app=python-fetcher
```