更新 PEDA 和 GEF 安装逻辑,更改仓库地址并添加环境变量配置 #26
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 |