Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
.git /
hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
applypatch-msg.sample
478
B
-rw-rw-r--
2025-06-22 16:20
commit-msg.sample
896
B
-rw-rw-r--
2025-06-22 16:20
fsmonitor-watchman.sample
4.62
KB
-rw-rw-r--
2025-06-22 16:20
post-update.sample
189
B
-rw-rw-r--
2025-06-22 16:20
pre-applypatch.sample
424
B
-rw-rw-r--
2025-06-22 16:20
pre-commit.sample
1.6
KB
-rw-rw-r--
2025-06-22 16:20
pre-merge-commit.sample
416
B
-rw-rw-r--
2025-06-22 16:20
pre-push.sample
1.34
KB
-rw-rw-r--
2025-06-22 16:20
pre-rebase.sample
4.81
KB
-rw-rw-r--
2025-06-22 16:20
pre-receive.sample
544
B
-rw-rw-r--
2025-06-22 16:20
prepare-commit-msg.sample
1.55
KB
-rw-rw-r--
2025-06-22 16:20
push-to-checkout.sample
2.72
KB
-rw-rw-r--
2025-06-22 16:20
sendemail-validate.sample
2.25
KB
-rw-rw-r--
2025-06-22 16:20
update.sample
3.56
KB
-rw-rw-r--
2025-06-22 16:20
Save
Rename
#!/bin/sh # # An example hook script to make use of push options. # The example simply echoes all push options that start with 'echoback=' # and rejects all pushes when the "reject" push option is used. # # To enable this hook, rename this file to "pre-receive". if test -n "$GIT_PUSH_OPTION_COUNT" then i=0 while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" do eval "value=\$GIT_PUSH_OPTION_$i" case "$value" in echoback=*) echo "echo from the pre-receive-hook: ${value#*=}" >&2 ;; reject) exit 1 esac i=$((i + 1)) done fi