mirror of
https://github.com/5im-0n/sshenc.sh.git
synced 2025-08-02 11:20:05 +02:00
144 lines
4.6 KiB
HTML
144 lines
4.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>sshenc.sh</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- my own stuff -->
|
|
<link href="main.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="https://github.com/S2-/sshenc.sh"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 10;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
|
|
|
|
<!-- Navigation -->
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark static-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#">sshenc.sh</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<!--
|
|
<div class="collapse navbar-collapse" id="navbarResponsive">
|
|
<ul class="navbar-nav ml-auto">
|
|
<li class="nav-item active">
|
|
<a class="nav-link" href="#">Home
|
|
<span class="sr-only">(current)</span>
|
|
</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">About</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Services</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Contact</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
-->
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Page Content -->
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h1 class="mt-5">sshenc.sh</h1>
|
|
<hr>
|
|
<p class="lead">bash script to encrypt data using a users ssh public key.</p>
|
|
<hr>
|
|
<div class="bd-callout bd-callout-info">
|
|
If you received a message from someone that was encrypted with this script, you can decrypt it with your ssh private key using the following command without installing anything:<br>
|
|
<code>bash <(curl -s https://sshenc.sh/sshenc.sh) -s ~/.ssh/id_rsa < file-containing-the-encrypted-text.txt</code>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2>Install</h2>
|
|
<hr>
|
|
<h3>Install locally</h3>
|
|
<div class="bd-callout bd-callout-info">
|
|
<code>wget https://sshenc.sh/sshenc.sh<br>
|
|
chmod +x sshenc.sh</code>
|
|
</div>
|
|
|
|
<h3>Run it from remote every time</h3>
|
|
If you are
|
|
<ul>
|
|
<li>really brave, and</li>
|
|
<li>want to be sure to run the latest version every time, or</li>
|
|
<li>maybe don't want/can't install files</li>
|
|
</ul>
|
|
you can use an alias that downloads and executes the script every time:<br>
|
|
<code>alias sshenc.sh='bash <(curl -s https://sshenc.sh/sshenc.sh)'</code>
|
|
<br>
|
|
<br>
|
|
To add it to your environment permanently:<br>
|
|
<code>echo "alias sshenc.sh='bash <(curl -s https://sshenc.sh/sshenc.sh)'" >> ~/.bashrc</code>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2 id="examples">Examples</h2>
|
|
<hr>
|
|
|
|
<h3 id="encrypt-own">encrypt a file using your own ssh public key</h3>
|
|
<div class="bd-callout bd-callout-info">
|
|
<code>sshenc.sh -p ~/.ssh/id_rsa.pub < plain-text-file.txt > encrypted.txt</code>
|
|
</div>
|
|
|
|
<h3 id="encrypt-multi">encrypt a file using multiple recipients (broadcast encryption)</h3>
|
|
<div class="bd-callout bd-callout-info">
|
|
<code>sshenc.sh -p ~/.ssh/id_rsa.pub -p id_rsa-alice.pub -p id_rsa-bob.pub < plain-text-file.txt > encrypted.txt</code>
|
|
</div>
|
|
|
|
<h3 id="encrypt-gh">encrypt a file using the public key of a github user</h3>
|
|
<div class="bd-callout bd-callout-info">
|
|
<code>sshenc.sh -p <(curl -sf "https://github.com/S2-.keys" | grep ssh-rsa | tail -n1) < plain-text-file.txt</code>
|
|
</div>
|
|
<p>this line fetches the first public key for the github user S2- and encrypts the file plain-text-file.txt using this key.</p>
|
|
|
|
<h3 id="decrypt">dedecrypt a file</h3>
|
|
<div class="bd-callout bd-callout-info">
|
|
<code>sshenc.sh -s ~/.ssh/id_rsa < encrypted.txt</code>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h2>License</h2>
|
|
<hr>
|
|
<a href="https://opensource.org/licenses/MIT">MIT</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
<script src="vendor/jquery/jquery.min.js"></script>
|
|
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|