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 /
doc /
tin /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
expiretover
344
B
-rw-r--r--
metamutt
3.73
KB
-rw-r--r--
opt-case.pl
2.73
KB
-rw-r--r--
tinews.pl.gz
13.75
KB
-rw-r--r--
tinlock
1.38
KB
-rw-r--r--
url_handler.pl
3.7
KB
-rw-r--r--
url_handler.sh
1.62
KB
-rw-r--r--
w2r.pl
3.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : url_handler.sh
#! /bin/sh # # example of how to call the appropriate viewer # based on a script by Michael Elkins <me@cs.hmc.edu> # 2001-01-31 <urs@tin.org> # # URLs must start with a scheme and shell metas must be already quoted # (tin doesn't recognize URLs without a scheme and it quotes the metas) # # TODO: check $BROWSER? if test $# -ne 1; then echo "Usage: `basename $0` URL" >&2 exit 1 fi url=$1 method=`echo $url | sed 's,^\([^:]*\):.*,\1,' | tr 'A-Z' 'a-z'` case $method in http|https|gopher) if test x$DISPLAY = x; then lynx $url || exit 1 else ( netscape -remote openURL\($url\) || netscape $url ) || exit 1 fi ;; ftp) if test x$DISPLAY = x; then target=`echo $url | sed 's;^.*://\([^/]*\)/*\(.*\);\1:/\2;'` ( ncftp $target || ncftp $target"/" ) || exit 1 else ( netscape -remote openURL\($url\) || netscape $url ) || exit 1 fi ;; mailto) ( mutt `echo $url` ) || exit 1 # ( pine -url `echo $url` ) || exit 1 # # old mutts can't handle mailto:-URLs with embedet subject # if test `echo $url | grep -c '\?'` -eq 0 ; then # ( mutt `echo $url | sed 's;^[^:]*:\(.*\);\1;'` ) || exit 1 # else # if test x$DISPLAY = x; then # lynx $url || exit 1 # else # ( netscape -remote openURL\($url\) || netscape $url ) || exit 1 # fi # fi ;; news|snews) # usually meant for reading news on the local server if test x$DISPLAY = x; then lynx $url || exit 1 else ( netscape -remote openURL\($url\) || netscape $url ) || exit 1 fi ;; nntp) # usually meant for reading news via NNTP # needs a special case as netscape can't handle nntp-URLs # *sigh* lynx $url || exit 1 ;; esac exit 0
Close