https://github.com/emoon/remotelink
Remote running executables on a Linux style system
https://github.com/emoon/remotelink
Last synced: about 1 year ago
JSON representation
Remote running executables on a Linux style system
- Host: GitHub
- URL: https://github.com/emoon/remotelink
- Owner: emoon
- License: mit
- Created: 2020-11-06T05:32:03.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-28T08:46:15.000Z (about 3 years ago)
- Last Synced: 2025-03-26T07:51:16.439Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 67.4 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Remotelink
Remotelink is a tool that allows you to run executables on another system over network and get the text written out piped back directly back.
## Disclaimer
Running `remotlink --host` on a machine is **very insecure** as it allows others to run any code on your target. Only use this tool if you know what you are doing.
This tool is currently also very much WIP.
## How to use
Remotelink is a tool that allows you to run executables on another system over network and get the text written out piped back directly back. Lets show an example
1. A machine (like a Raspberry Pi) starts remotelink with `remotelink --host`
2. Another machine (like a regular PC) produces a executable compatible and run it with `remotelink --target /path/to/executable`
3. The executable will be sent to the Raspberry Pi and start running, if any output (over stdout) is printed it will be sent back to the PC.
4. By pressing ctrl-c on the PC side the executable will be stopped on the Raspberry Pi side. Now the process can repeat