新增对 Typhon 和 Fenjing 工具的安装函数,并优化相关安装逻辑 #29
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 |