新增 LibcSearcher_plus 安装函数,并优化 libc-database 安装流程以提示用户确认 #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: f8x-ctf | |
| on: | |
| push: | |
| paths: | |
| - 'f8x-ctf' | |
| jobs: | |
| ubuntu-latest-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout codes | |
| uses: actions/checkout@v2 | |
| - name: init | |
| run: | |
| touch /tmp/IS_CI | |
| - name: Run | |
| run: | |
| sudo bash f8x | |
| - name: Run -h | |
| run: | |
| sudo bash f8x -h | |
| - name: Run -clear | |
| run: | |
| sudo bash f8x -clear | |
| - name: Run -b | |
| run: | |
| sudo bash f8x -b | |
| - name: Run -d | |
| run: | |
| sudo bash f8x -d | |
| - name: Run -web | |
| run: | |
| sudo bash f8x-ctf -web | |
| - name: Run -crypto | |
| run: | |
| sudo bash f8x-ctf -crypto | |
| - name: Run -re | |
| run: | |
| sudo bash f8x-ctf -re | |
| - name: Run -pwn | |
| run: | |
| sudo bash f8x-ctf -pwn | |
| - name: Run -info | |
| run: | |
| sudo bash f8x -info | |
| - name: log | |
| run: | |
| cat /tmp/f8x_error.log |