Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
bundle
537
B
-rwxr-xr-x
2023-06-06 18:25
bundler
539
B
-rwxr-xr-x
2023-06-06 18:25
erb
4.95
KB
-rwxr-xr-x
2023-06-06 18:25
gem
553
B
-rwxr-xr-x
2023-06-06 18:25
irb
515
B
-rwxr-xr-x
2023-06-06 18:25
mizuho
533
B
-rwxr-xr-x
2026-02-20 19:25
mizuho-asciidoc
551
B
-rwxr-xr-x
2026-02-20 19:25
nokogiri
2.62
KB
-rwxrwxr-x
2026-02-20 19:38
passenger
1.76
KB
-rwxr-xr-x
2026-05-15 09:59
passenger-config
1.61
KB
-rwxr-xr-x
2026-05-15 09:59
racc
594
B
-rwxr-xr-x
2023-06-06 18:25
rackup
533
B
-rwxr-xr-x
2023-09-21 09:53
rake
521
B
-rwxr-xr-x
2023-06-06 18:25
rdoc
521
B
-rwxr-xr-x
2023-06-06 18:25
ri
517
B
-rwxr-xr-x
2023-06-06 18:25
ruby
8.02
KB
-rwxr-xr-x
2023-06-06 18:26
Save
Rename
#!/usr/bin/env ruby require 'optparse' require 'open-uri' require 'uri' require 'rubygems' require 'nokogiri' autoload :IRB, 'irb' parse_class = Nokogiri encoding = nil # This module provides some tunables with the nokogiri CLI for use in # your ~/.nokogirirc. module Nokogiri::CLI class << self # Specify the console engine, defaulted to IRB. # # call-seq: # require 'pry' # Nokogiri::CLI.console = Pry attr_writer :console def console case @console when Symbol Kernel.const_get(@console) else @console end end attr_accessor :rcfile end self.rcfile = File.expand_path('~/.nokogirirc') self.console = :IRB end opts = OptionParser.new do |opts| opts.banner = "Nokogiri: an HTML, XML, SAX, and Reader parser" opts.define_head "Usage: nokogiri <uri|path> [options]" opts.separator "" opts.separator "Examples:" opts.separator " nokogiri https://www.ruby-lang.org/" opts.separator " nokogiri ./public/index.html" opts.separator " curl -s http://www.nokogiri.org | nokogiri -e'p $_.css(\"h1\").length'" opts.separator "" opts.separator "Options:" opts.on("--type type", "Parse as type: xml or html (default: auto)", [:xml, :html]) do |v| parse_class = {:xml => Nokogiri::XML, :html => Nokogiri::HTML}[v] end opts.on("-C file", "Specifies initialization file to load (default #{Nokogiri::CLI.rcfile})") do |v| Nokogiri::CLI.rcfile = v end opts.on("-E", "--encoding encoding", "Read as encoding (default: #{encoding || 'none'})") do |v| encoding = v end opts.on("-e command", "Specifies script from command-line.") do |v| @script = v end opts.on("--rng <uri|path>", "Validate using this rng file.") do |v| @rng = open(v) {|f| Nokogiri::XML::RelaxNG(f)} end opts.on_tail("-?", "--help", "Show this message") do puts opts exit end opts.on_tail("-v", "--version", "Show version") do puts Nokogiri::VersionInfo.instance.to_markdown exit end end opts.parse! url = ARGV.shift if url.to_s.strip.empty? && $stdin.tty? puts opts exit 1 end if File.file?(Nokogiri::CLI.rcfile) load Nokogiri::CLI.rcfile end if url || $stdin.tty? case uri = (URI(url) rescue url) when URI::HTTP @doc = parse_class.parse(uri.read, url, encoding) else @doc = parse_class.parse(open(url).read, nil, encoding) end else @doc = parse_class.parse($stdin, nil, encoding) end $_ = @doc if @rng @rng.validate(@doc).each do |error| puts error.message end else if @script eval @script, binding, '<main>' else puts "Your document is stored in @doc..." Nokogiri::CLI.console.start end end