Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
ruby /
vendor_ruby /
rugged /
diff /
[ HOME SHELL ]
Name
Size
Permission
Action
delta.rb
1.12
KB
-rw-r--r--
hunk.rb
517
B
-rw-r--r--
line.rb
1.08
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : delta.rb
# Copyright (C) the Rugged contributors. All rights reserved. # # This file is part of Rugged, distributed under the MIT license. # For full terms see the included LICENSE file. module Rugged class Diff class Delta attr_reader :owner alias diff owner attr_reader :old_file attr_reader :new_file attr_reader :similarity attr_reader :status attr_reader :status_char attr_reader :binary alias binary? binary def added? status == :added end def deleted? status == :deleted end def modified? status == :modified end def renamed? status == :renamed end def copied? status == :copied end def ignored? status == :ignored end def untracked? status == :untracked end def typechange? status == :typechange end def inspect "#<#{self.class.name}:#{object_id} {old_file: #{old_file.inspect}, new_file: #{new_file.inspect}, similarity: #{similarity.inspect}, status: #{status.inspect}>" end end end end
Close