Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
cryptsetup /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
decrypt_derived
1.19
KB
-rwxr-xr-x
2017-09-06 12:08
decrypt_gnupg
576
B
-rwxr-xr-x
2017-09-06 12:08
decrypt_keyctl
2.97
KB
-rwxr-xr-x
2017-09-06 12:08
decrypt_openct
1.68
KB
-rwxr-xr-x
2017-09-06 12:08
decrypt_opensc
1.38
KB
-rwxr-xr-x
2017-09-06 12:08
decrypt_ssl
347
B
-rwxr-xr-x
2017-09-06 12:08
passdev
10.3
KB
-rwxr-xr-x
2017-09-06 12:08
Save
Rename
#!/bin/sh decrypt_gpg () { echo "Performing GPG key decryption ..." >&2 if ! /lib/cryptsetup/askpass "Enter passphrase for key $1: " | \ /usr/bin/gpg -q --batch --no-options --no-mdc-warning \ --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 $?