https://github.com/hackerschoice/gs-transfer
Secure File Transfer via Global Socket Bounce Network
https://github.com/hackerschoice/gs-transfer
Last synced: 12 months ago
JSON representation
Secure File Transfer via Global Socket Bounce Network
- Host: GitHub
- URL: https://github.com/hackerschoice/gs-transfer
- Owner: hackerschoice
- Created: 2020-08-13T10:57:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-23T07:43:32.000Z (about 5 years ago)
- Last Synced: 2024-04-15T09:26:00.666Z (about 2 years ago)
- Language: C
- Size: 274 KB
- Stars: 24
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-csirt - gs-transfer
README
# Copy from anywhere to anywhere, securely.
# THIS PROJECT IS NOW OBSOLETE AND HAS BEEN SUPERSEEDED BY GSOCKET
# USE GSOCKET INSTEAD (gs-sftp, gs-mount or blitz).
Get it here: [https://github.com/hackerschoice/gsocket](https://github.com/hackerschoice/gsocket)
#
#
# OBSOLETE STUFF BELOW
#
A lightweight tool to securely transfer files between two distant computers through any NAT/Firewall. It use the Global Socket Network to circumvent the NAT/Firewall. It uses SRP ([RFC 5054](https://tools.ietf.org/html/rfc5054)) with a 4096 Prime, AES-256 and SHA256 for Peer-to-Peer encryption, authentication and security.

**Features:**
- Does not require any User to open a port on their router or firewall.
- Does not require OpenSSH.
- Passwords are securily and randomly created.
- Passwords are only valid for 1 transfer.
- Both Users can be behind NAT.
- Uses outgoing connections (to the GS-Net) only.
- SRP Encryption is end-to-end (the GS-Net can not read the traffic).
- No PKI required.
- Uses 4096 Prime and AES-256 Bit encryption with SHA256.
- Can be scripted.
**Installation**
```ShellSession
$ git clone https://github.com/hackerschoice/gs-transfer.git
$ cd gs-transfer && ./bootstrap && ./configure && make all
```
**Usage**
Receiver:
```ShellSession
$ ./gs-transfer
```
Sender:
```ShellSession
$ ./gs-transfer *.mp3 *.c
```
**PRO TIPS**
Use with 'tar' to transfer directories etc.
Receiver:
```ShellSession
$ ./gs-transfer -s -O | tar xfz -
```
Sender:
```ShellSession
$ tar cfz - /home | ./gs-transfer -s -
```
**SHOUTZ**
Thanks to g4- and xaitax for testing. THIS IS ALPHA RELEASE. PLEASE TEST.