Created
December 3, 2025 23:29
-
-
Save HalanoSiblee/6febf454bb5bab0befbc87dc59045ee9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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