[TOOL] KRYPTON - GPG Encrypted data network.
Lets welcome our new little project. P.S.: Unencrypted data will never touch our server, you will be sending the encrypted data only.
GPG Encrypted data network.
Krypton (from Ancient Greek: κρυπτός, romanized: kryptos 'the hidden one').
Download: https://krypton.monster/krypton.zip
Requirements: gpg, gpg-agent, curl
Usage: ./krypton "PRiVATE_KEY" "DATA_PASSWORD" "DATA"
Mirror the data: wget -m -np -c -R "index.html*" "https://krypton.monster/data/"
Verify: Every submitted GPG data will end having filename as SHA256 hash.
We use checksums, so you can always verify that the file was untouched - https://krypton.monster/data/0xF6FF5ADAB5180A3D10FFB611F2CADDD0A2B0922BDE398AD186E946480BEC3943/checksums.
Comments
What does this tool do ?
I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add
Usage: ./krypton "PRiVATE_KEY" "DATA_PASSWORD" "DATA"
"PRiVATE_KEY" - Do not share this key!
"DATA_PASSWORD" - Password used for encrypt and decrypt your "DATA".
"DATA" - Data you want to encrypt.
It simply encrypt your data and store the encrypted data on our server, there anyone can view encrypted data and decrypt it if they know the password, and also anyone can mirror the gpg data.
Why don't you toss out some useage ideas for your tool?
Give some examples as to why you would want it. Practical applications and why it fills the gap.
Free Hosting at YetiNode | Cryptid Security | URL Shortener | LaunchVPS | ExtraVM | Host-C | In the Node, or Out of the Loop?
for example you dont trust plain text mails, lets say you have friend and want secure talk, you both agree on some password and share your ident (example 0xFDD519AB1ECACC9C3128C0857F6124577F06A86E2726D13F9B4920667675A52B) then you just watch the folder for new *.krypt files (https://krypton.monster/data/0xFDD519AB1ECACC9C3128C0857F6124577F06A86E2726D13F9B4920667675A52B/) and then just decrypt them
alternatively you can just encrypt your file and share it with your friend
How much encrypted data can I put on your servers for free ?
I am currently traveling in mostly remote areas until sometime in April 2024. Consequently DM's sent to me will go unanswered during this time.
For staff assistance or support issues please use the helpdesk ticket system at https://support.lowendspirit.com/index.php?a=add
100 Chucklebytes
So what is thr adavntages of this method over encrypyed emails?
May I ask the encryption method used on files?
Is the server encrypted as well, or just files?
Free Hosting at YetiNode | Cryptid Security | URL Shortener | LaunchVPS | ExtraVM | Host-C | In the Node, or Out of the Loop?
This whole Krypton explanation from Greek reminds me of ἤγγικεν ("ingiken") which represents how the end is nigh.
One of the requirements was gpg so I assume that.
No github repo?
Websites have ads, I have ad-blocker.
It's a bunch of sh scripts that runs gpg and curl, the scripts are like 15 lines each of which 10 are some bad ascii art.
Ok let me rephrase which cypher is used and it is symmetrical or asymmetrical?
@rcy026
I kind of figured but have not had time to look into it honestly. Just trying to gauge the developer behind the scenes a bit.
Free Hosting at YetiNode | Cryptid Security | URL Shortener | LaunchVPS | ExtraVM | Host-C | In the Node, or Out of the Loop?
This is what the script does for the encryption, I am totally serious when I say that it takes 2 seconds to read trough the entire source.
And why they are shuffling variables around like that is beyond me, I have no idea, this is how it is written.
CMD=gpg
echo "$2" > "$FILE_PLAIN"
echo "$1" | "$CMD" --armor --symmetric --batch --yes --passphrase-fd 0 -c "$FILE_PLAIN"
updated the code a bit, it uses cipher - AES256, symmetrical yes