Skip to content

Commit

Permalink
Allow matching SHA256 fingerprint instead of SSH public key string (#7)
Browse files Browse the repository at this point in the history
* Add fingerprint mode

* Add examples
  • Loading branch information
dtinth authored Oct 8, 2022
1 parent 4aa1fc6 commit 39c8e55
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 12 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,23 @@ t+aaaaafoOBaRRqTgPrs9pWUBKiOHw/EYq9lf1DSovogAAAAAAECAwQF
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOaaaafoOBaRRqTgPrs9pWUBKiOHw/EYq9lf1DSovog

```

Find a public key whose SHA256 fingerprint starts with `0000`:
```bash
$ ./vanityssh --fingerprint --regex '^0000'
global_user_input = ^0000
Press Ctrl+C to end
SSH Keys Processed = 7420830
Total execution time 46.479848625s
-----BEGIN OPENSSH PRIVATE KEY-----
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtz
c2gtZWQyNTUxOQAAACCDaz0XpXwr1lXkMe9d/XiYhEqoEo7xND+WfIi6Rcpc9QAA
AIiSMeGukjHhrgAAAAtzc2gtZWQyNTUxOQAAACCDaz0XpXwr1lXkMe9d/XiYhEqo
Eo7xND+WfIi6Rcpc9QAAAEA2q7FROiORV1NCMmOFKpPuJC4PpkiqL8zOJKRjowbZ
34NrPRelfCvWVeQx7139eJiESqgSjvE0P5Z8iLpFylz1AAAAAAECAwQF
-----END OPENSSH PRIVATE KEY-----

ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIINrPRelfCvWVeQx7139eJiESqgSjvE0P5Z8iLpFylz1
SHA256:0000+RLM8XK4vFSKhEUKyvztCIFtR+Q7j04eKB3fA2c=

```
46 changes: 34 additions & 12 deletions vanityssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,44 @@ package main

import (
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"encoding/pem"
"flag"
"fmt"
"github.com/mikesmitty/edkey"
"golang.org/x/crypto/ed25519"
"golang.org/x/crypto/ssh"
"io/ioutil"
"os"
"os/signal"
"regexp"
"runtime"
"strings"
"sync"
"time"
"bytes"

"github.com/mikesmitty/edkey"
"golang.org/x/crypto/ed25519"
"golang.org/x/crypto/ssh"
)

var global_user_input string
var global_user_insensitive bool
var global_user_streaming bool
var global_user_fingerprint bool

//var flagvar int
var global_counter int64
var start time.Time
var re *regexp.Regexp
var err error


func init() {
// flag.IntVar(&flagvar, "flagname", 1234, "put an integer here")
flag.StringVar(&global_user_input, "regex", "", "regex pattern goes here")
flag.BoolVar(&global_user_insensitive, "insensitive", false, "case-insensitive")
flag.BoolVar(&global_user_streaming, "streaming", false, "Keep processing keys, even after a match")
flag.BoolVar(&global_user_fingerprint, "fingerprint", false, "Match against fingerprint instead of public key")
flag.Parse()
start = time.Now()


if global_user_insensitive == false {
re, err = regexp.Compile(global_user_input)
} else {
Expand Down Expand Up @@ -71,22 +74,41 @@ func findsshkeys() {
Bytes: edkey.MarshalED25519PrivateKey(privKey),
}
privateKey := pem.EncodeToMemory(pemKey)
authorizedKey := ssh.MarshalAuthorizedKey(publicKey)
authorizedKey = bytes.Trim(authorizedKey, "\n") // Trim newline
if re.Match(authorizedKey) {

matched := false
if global_user_fingerprint {
matched = re.MatchString(getFingerprint(publicKey))
} else {
matched = re.MatchString(getAuthorizedKey(publicKey))
}

if matched {
fmt.Printf("\033[2K\r%s%d", "SSH Keys Processed = ", global_counter)
fmt.Println("\nTotal execution time", time.Since(start))
fmt.Printf("%s\n", privateKey)
fmt.Printf("%s\n", authorizedKey)
fmt.Printf("%s\n", getAuthorizedKey(publicKey))
fmt.Printf("SHA256:%s\n", getFingerprint(publicKey))
if global_user_streaming == false {
_ = ioutil.WriteFile("id_ed25519", privateKey, 0600)
_ = ioutil.WriteFile("id_ed25519.pub", authorizedKey, 0644)
_ = ioutil.WriteFile("id_ed25519.pub", []byte(getAuthorizedKey(publicKey)), 0644)
os.Exit(0)
}
}
}
}

// Generate a SHA256 fingerprint of a public key
func getFingerprint(key ssh.PublicKey) string {
h := sha256.New()
h.Write(key.Marshal())
return base64.StdEncoding.EncodeToString(h.Sum(nil))
}

// Generate an `authorized_keys` line for a public key
func getAuthorizedKey(key ssh.PublicKey) string {
return strings.TrimSpace(string(ssh.MarshalAuthorizedKey(key)))
}

func main() {
// input threads, else numcpu
for i := 1; i <= runtime.NumCPU(); i++ {
Expand Down

0 comments on commit 39c8e55

Please sign in to comment.