How to interactively debug GitHub Actions with netcat
Update: This was a fun experiment and I recommend you check out the post for a fun read on setting up reverse shells. But I’ve since discovered this awesome tmate action which lets you interactively debug in the browser or via SSH.
- name: Debug with tmate on failure
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
With this step if any previous step in your workflow fails a tmate session will be started and the connection info will be repeatedly printed in the workflow output.
Created new s...
Read more at jacobtomlinson.dev