Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.145.28.3
Cant Read [ /etc/named.conf ]
7.4.20
www-data
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
/
var /
www /
html /
stage /
phpmyadmin /
.github /
workflows /
[ HOME SHELL ]
Name
Size
Permission
Action
daily-snapshots.yml
2.71
KB
-rw-r--r--
frontend-tests.yml
1.52
KB
-rw-r--r--
lint-and-analyse-php.yml
2.22
KB
-rw-r--r--
lint-docs.yml
550
B
-rw-r--r--
lock.yml
390
B
-rw-r--r--
mutation-tests.yml
2.1
KB
-rw-r--r--
other-tools.yml
1.48
KB
-rw-r--r--
shellcheck.yml
455
B
-rw-r--r--
test-selenium.yml
4.45
KB
-rw-r--r--
tests.yml
7.52
KB
-rw-r--r--
update-po.yml
1.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mutation-tests.yml
# https://docs.github.com/en/actions name: Mutation tests on: push: branches: - master paths: - 'src/**.php' - 'tests/unit/**.php' pull_request: branches: - master paths: - 'src/**.php' - 'tests/unit/**.php' workflow_dispatch: schedule: - cron: '0 0 * * *' permissions: contents: read jobs: infection: name: Infection runs-on: ${{ matrix.operating-system }} strategy: matrix: php-version: - "8.2" operating-system: - ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 2 - name: Checkout base ref code if: github.event_name == 'pull_request' uses: actions/checkout@v4 with: ref: ${{ github.base_ref }} - name: Install Gettext run: sudo apt-get install -y gettext - name: Generate mo files run: ./bin/generate-mo --quiet - name: Set up PHP ${{ matrix.php-version }} uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} coverage: pcov tools: composer:v2, infection - name: Install Composer dependencies uses: ramsey/composer-install@v2 - name: Run Infection for changed files only if: github.event_name == 'push' || github.event_name == 'pull_request' run: | if [ "$GITHUB_EVENT_NAME" = "push" ]; then \ INFECTION_GIT_DIFF_BASE="origin/$GITHUB_REF_NAME^"; else \ INFECTION_GIT_DIFF_BASE="origin/$GITHUB_BASE_REF"; fi infection --threads=max --git-diff-lines --git-diff-base="$INFECTION_GIT_DIFF_BASE" \ --logger-github --ignore-msi-with-no-mutations --only-covered --no-interaction --no-progress - name: Run Infection for all files if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' env: INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }} run: infection --threads=max --no-interaction --log-verbosity=none --logger-github=false
Close