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.10
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
diff
[ DIR ]
drwxr-xr-x
attributes.rb
1.04
KB
-rw-r--r--
blob.rb
786
B
-rw-r--r--
branch.rb
713
B
-rw-r--r--
commit.rb
1.52
KB
-rw-r--r--
console.rb
392
B
-rw-r--r--
credentials.rb
1.24
KB
-rw-r--r--
diff.rb
466
B
-rw-r--r--
index.rb
4.72
KB
-rw-r--r--
object.rb
275
B
-rw-r--r--
patch.rb
832
B
-rw-r--r--
reference.rb
335
B
-rw-r--r--
remote.rb
219
B
-rw-r--r--
repository.rb
8.3
KB
-rw-r--r--
submodule_collection.rb
1.78
KB
-rw-r--r--
tag.rb
1.36
KB
-rw-r--r--
tree.rb
6.68
KB
-rw-r--r--
version.rb
229
B
-rw-r--r--
walker.rb
242
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : commit.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 Commit def self.prettify_message(msg, strip_comments = true) Rugged::prettify_message(msg, strip_comments) end def inspect "#<Rugged::Commit:#{object_id} {message: #{message.inspect}, tree: #{tree.inspect}, parents: #{parent_oids}}>" end def header_field?(field) !!header_field(field) end # Return a diff between this commit and its first parent or another commit or tree. # # See Rugged::Tree#diff for more details. def diff(*args) args.unshift(parents.first) if args.size == 1 && args.first.is_a?(Hash) self.tree.diff(*args) end # Return a diff between this commit and the workdir. # # See Rugged::Tree#diff_workdir for more details. def diff_workdir(options = {}) self.tree.diff_workdir(options) end # The time when this commit was made effective. This is the same value # as the +:time+ attribute for +commit.committer+. # # Returns a Time object def time @time ||= Time.at(self.epoch_time) end def to_hash { :message => message, :committer => committer, :author => author, :tree => tree, :parents => parents, } end def modify(new_args, update_ref=nil) args = self.to_hash.merge(new_args) Commit.create(args, update_ref) end end end
Close