Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.117.107.97
Cant Read [ /etc/named.conf ]
8.1.13
www
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
/
usr /
share /
doc /
git /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
buildsystems
[ DIR ]
drwxr-xr-x
coccinelle
[ DIR ]
drwxr-xr-x
contacts
[ DIR ]
drwxr-xr-x
credential
[ DIR ]
drwxr-xr-x
diff-highlight
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
fast-import
[ DIR ]
drwxr-xr-x
git-jump
[ DIR ]
drwxr-xr-x
git-shell-commands
[ DIR ]
drwxr-xr-x
hg-to-git
[ DIR ]
drwxr-xr-x
hooks
[ DIR ]
drwxr-xr-x
long-running-filter
[ DIR ]
drwxr-xr-x
persistent-https
[ DIR ]
drwxr-xr-x
remote-helpers
[ DIR ]
drwxr-xr-x
stats
[ DIR ]
drwxr-xr-x
subtree
[ DIR ]
drwxr-xr-x
svn-fe
[ DIR ]
drwxr-xr-x
thunderbird-patch-inline
[ DIR ]
drwxr-xr-x
update-unicode
[ DIR ]
drwxr-xr-x
vscode
[ DIR ]
drwxr-xr-x
workdir
[ DIR ]
drwxr-xr-x
README
2.06
KB
-rw-r--r--
coverage-diff.sh
2.05
KB
-rw-r--r--
git-resurrect.sh
4.29
KB
-rw-r--r--
remotes2config.sh
770
B
-rw-r--r--
rerere-train.sh
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remotes2config.sh
#!/bin/sh # Use this tool to rewrite your .git/remotes/ files into the config. . git-sh-setup if [ -d "$GIT_DIR"/remotes ]; then echo "Rewriting $GIT_DIR/remotes" >&2 error=0 # rewrite into config { cd "$GIT_DIR"/remotes ls | while read f; do name=$(printf "$f" | tr -c "A-Za-z0-9-" ".") sed -n \ -e "s/^URL:[ ]*\(.*\)$/remote.$name.url \1 ./p" \ -e "s/^Pull:[ ]*\(.*\)$/remote.$name.fetch \1 ^$ /p" \ -e "s/^Push:[ ]*\(.*\)$/remote.$name.push \1 ^$ /p" \ < "$f" done echo done } | while read key value regex; do case $key in done) if [ $error = 0 ]; then mv "$GIT_DIR"/remotes "$GIT_DIR"/remotes.old fi ;; *) echo "git config $key "$value" $regex" git config $key "$value" $regex || error=1 ;; esac done fi
Close