Phishing Domain Check #8
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: Phishing Domain Check | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| urls: | |
| description: 'List of URLs to scan (space or comma-separated)' | |
| required: true | |
| type: string | |
| output_format: | |
| description: 'Choose output format (terminal, json, csv)' | |
| required: true | |
| default: 'terminal' | |
| type: choice | |
| options: | |
| - terminal | |
| - json | |
| - csv | |
| jobs: | |
| domain-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Save input URLs to file | |
| run: | | |
| # Replace both spaces and commas with newlines, then remove empty lines | |
| echo "${{ github.event.inputs.urls }}" | tr ' ,' '\n\n' | grep -v '^$' > workflow_urls.txt | |
| cat workflow_urls.txt | |
| - name: Run phishing checker | |
| run: python phishing_checker.py workflow_urls.txt --output ${{ github.event.inputs.output_format }} | |
| - name: Upload results | |
| if: github.event.inputs.output_format != 'terminal' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: phishing-check-results | |
| path: results.${{ github.event.inputs.output_format }} | |
| retention-days: 7 |