404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.129.194.144: ~ $
#!/bin/sh

decrypt_gpg () {
	echo "Performing GPG symmetric decryption ..." >&2
	if ! /lib/cryptsetup/askpass "Enter passphrase for key $1: " | \
		/usr/bin/gpg -q --batch --no-options  \
		--no-random-seed-file --no-default-keyring \
		--keyring /dev/null --secret-keyring /dev/null \
		--trustdb-name /dev/null --passphrase-fd 0 --decrypt "$1"; then
		return 1
	fi
	return 0
}

if [ ! -x /usr/bin/gpg ]; then
	echo "$0: /usr/bin/gpg is not available" >&2
	exit 1
fi

if [ -z "$1" ]; then
	echo "$0: missing key as argument" >&2
	exit 1
fi

decrypt_gpg "$1"
exit $?

Filemanager

Name Type Size Permission Actions
decrypt_derived File 1.22 KB 0755
decrypt_gnupg File 567 B 0755
decrypt_keyctl File 2.97 KB 0755
decrypt_openct File 1.68 KB 0755
decrypt_opensc File 1.38 KB 0755
decrypt_ssl File 343 B 0755
passdev File 9.99 KB 0755