https://github.com/akurtz87/http_crypto_message
https://github.com/akurtz87/http_crypto_message
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/akurtz87/http_crypto_message
- Owner: AKurtz87
- Created: 2023-02-02T06:41:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T14:18:49.000Z (over 2 years ago)
- Last Synced: 2025-02-13T19:39:01.573Z (4 months ago)
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Text Message via GET Req 🔏
⚠️⚠️⚠️ **CHECK PATHS AND OTHER ELEMENTS IN SCRIPS AND ADJUST TO YOUR NEEDS** ⚠️⚠️⚠️
This GitHub repository provides a solution for secure text message sharing among multiple users.
When a user sends a GET request, the data is transmitted to the server via an argument in the HTTP request. The server receives the GET request and parses the encrypted argument, which contains the message sent by the user. The server then decrypts the message using the shared encryption key before displaying it to the master user.**It's important to note that HTTP is an unencrypted protocol, and data transmitted via HTTP can be intercepted by a third-party. Therefore, it's important to establish a secure communication channel and share the encryption key between the master user and client users before exchanging messages.**
It's also important to note that **only the master user can read the messages**, while client users can only send messages. This repository is designed for secure text message sharing but some implementations could be used for data exfiltration.
Overall, by using HTTP GET requests to transmit messages to the server, this repository provides a simple and convenient way for multiple users to securely exchange text messages. However, to ensure the security and confidentiality of messages exchanged, it's important to implement appropriate security measures, such as **sharing the encryption key through a secure channel.**
## How to run the script ⚙️
1. Clone the repository: In your terminal, navigate to the directory where you want to clone the repository and run the following command:
> git clone "repository URL"
2. Navigate to the directory containing the Go script: Use the cd command to navigate to the directory containing the Go script you want to run.
Run the Go script: In your terminal, run the following command to execute the Go script:
> go run "script name".go**Be sure to read the README and any additional documentation provided by the repository owner to ensure that you are using the script correctly and following any security or usage guidelines.**
By following these steps, you can easily run a Go script from a GitHub repository and take advantage of the functionality provided by the script.