├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── advisor ├── README.md ├── action.yml ├── dist │ └── index.js ├── index.js ├── package-lock.json ├── package.json └── workflow.yml ├── monitor ├── README.md ├── action.yml ├── dist │ └── index.js ├── index.js ├── mitm_plugin.py ├── package-lock.json ├── package.json ├── pf.conf └── setup.sh └── res ├── demo.mp4 ├── dispatch.png ├── logo.png └── summary.png /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/SECURITY.md -------------------------------------------------------------------------------- /advisor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/README.md -------------------------------------------------------------------------------- /advisor/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/action.yml -------------------------------------------------------------------------------- /advisor/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/dist/index.js -------------------------------------------------------------------------------- /advisor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/index.js -------------------------------------------------------------------------------- /advisor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/package-lock.json -------------------------------------------------------------------------------- /advisor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/package.json -------------------------------------------------------------------------------- /advisor/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/advisor/workflow.yml -------------------------------------------------------------------------------- /monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/README.md -------------------------------------------------------------------------------- /monitor/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/action.yml -------------------------------------------------------------------------------- /monitor/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/dist/index.js -------------------------------------------------------------------------------- /monitor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/index.js -------------------------------------------------------------------------------- /monitor/mitm_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/mitm_plugin.py -------------------------------------------------------------------------------- /monitor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/package-lock.json -------------------------------------------------------------------------------- /monitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/package.json -------------------------------------------------------------------------------- /monitor/pf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/pf.conf -------------------------------------------------------------------------------- /monitor/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/monitor/setup.sh -------------------------------------------------------------------------------- /res/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/res/demo.mp4 -------------------------------------------------------------------------------- /res/dispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/res/dispatch.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHubSecurityLab/actions-permissions/HEAD/res/summary.png --------------------------------------------------------------------------------