Skip to content

Commit

Permalink
feat: Order payloads by exploitability and impact (#16)
Browse files Browse the repository at this point in the history
* feat: Order payloads by exploitability and impact
* feat: Add autorun mode (-a), for interactionless execution
* feat: Add autorun mode for single command mode
* fix: Python 2 compatibility issue
  • Loading branch information
Frissi0n committed Dec 4, 2023
1 parent 0a6acdf commit 987a025
Show file tree
Hide file tree
Showing 5 changed files with 194 additions and 76 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-pytest.yml
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Run tests
run: |
docker run --name gtfonow_test_${{ matrix.python-version }} -d gtfonow_test:${{ matrix.python-version }}
- name: Wait
run: sleep 15
- name: Run Pytest
run: docker exec gtfonow_test_${{ matrix.python-version }} su -l lowpriv -c "pytest -v --cov=gtfonow --cov-report=xml --cov-report=term-missing"
run: docker exec -u lowpriv gtfonow_test_${{ matrix.python-version }} pytest -v --cov=gtfonow --cov-report=xml --cov-report=term-missing
- name: Copy coverage report from Docker container to host
run: docker cp gtfonow_test_${{ matrix.python-version }}:/home/lowpriv/coverage.xml .

Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Expand Up @@ -23,10 +23,12 @@ RUN chmod u+s $(which tee)
RUN chmod u+s $(which dd)
RUN chmod u+s $(which mv)
RUN chmod u+s $(which rbash)

RUN pip install mock
RUN useradd -ms /bin/bash lowpriv
RUN useradd -ms /bin/bash higherpriv

RUN ssh-keygen -N '' -f /root/.ssh/id_rsa
RUN cp /root/.ssh/id_rsa.pub /root/.ssh/authorized_keys
RUN echo "ONLY_ROOT_CAN_READ_THIS" > /root/proof.txt
RUN echo "lowpriv ALL=(ALL) NOPASSWD: /usr/bin/head" >> /etc/sudoers
RUN echo "lowpriv ALL=(higherpriv) NOPASSWD: /usr/bin/vim" >> /etc/sudoers

Expand Down

0 comments on commit 987a025

Please sign in to comment.