Skip to content

Instantly share code, notes, and snippets.

@HalanoSiblee
Created December 3, 2025 23:29
Show Gist options
  • Select an option

  • Save HalanoSiblee/6febf454bb5bab0befbc87dc59045ee9 to your computer and use it in GitHub Desktop.

Select an option

Save HalanoSiblee/6febf454bb5bab0befbc87dc59045ee9 to your computer and use it in GitHub Desktop.
#!/bin/bash
# PART OF SPIDER SCRIPT | VERSION 2.9.0000 | HALANO SIBLEE 2023-2025 𓂀
[ -z $1 ] && exit
PassHashed() { notify-send "Password Hashed" ; }
case $1 in
5pass)
echo -n "$2" | md5sum | head -c 32 | xclip -selection clipboard
PassHashed
;;
256pass)
[ -z $1 ] && exit
echo -n "$2" | sha256sum | head -c 64 | xclip -selection clipboard
PassHashed
;;
32pass)
echo -n "$2" | rhash - --simple | head -c 8 | xclip -selection clipboard
PassHashed
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment