Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
amp-paths.txt
185
B
-rw-r--r--
auto-composer-update.sh
980
B
-rwxr-xr-x
find-php
348
B
-rwxr-xr-x
get-package-require-from-compo...
484
B
-rw-r--r--
install-requests.sh
793
B
-rwxr-xr-x
wp-completion.bash
495
B
-rw-r--r--
wp.fish
882
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : auto-composer-update.sh
#!/bin/bash ### # Runs composer update, commits changes to a new branch, # and creates a pull request. # # Requires git, composer, and hub ### date if [ -z "$WP_CLI_DIR" ]; then echo 'Please set $WP_CLI_DIR' exit 1 fi set -ex cd $WP_CLI_DIR # Reset WP-CLI directory to baseline git checkout -f master git pull origin master composer install # Run composer update and capture to untracked log file composer update --no-progress --no-interaction |& tee vendor/update.log UPDATE=$(cat vendor/update.log | col -b) # We only care to proceed when there are changes if [ -z "$(git status -s)" ]; then echo 'No updates available' exit 0; fi # Create a dated branch and commit the changes DATE=$(date +%Y-%m-%d) BRANCH="update-deps-$DATE" git branch -f $BRANCH master git checkout $BRANCH git add . MESSAGE="Update Composer dependencies ($DATE) \`\`\` $UPDATE \`\`\`" git commit -n -m "$MESSAGE" # Push and pull request git push origin $BRANCH hub pull-request -m "$MESSAGE"
Close