-
-
Notifications
You must be signed in to change notification settings - Fork 2k
123 lines (101 loc) · 3.68 KB
/
theHarvester.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
name: TheHarvester Python CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
Python:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 10
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .[dev]
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Lint with ruff
run: |
ruff check
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Format with ruff
run: |
ruff format --check --diff
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Test with pytest
run: |
pytest
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Anubis
run: |
theHarvester -d apple.com -b anubis
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Baidu
run: |
theHarvester -d yale.edu -b baidu
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Bing
run: |
theHarvester -d yale.edu -b bing
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module CertSpotter
run: |
theHarvester -d yale.edu -b certspotter
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Crtsh
run: |
theHarvester -d hcl.com -b crtsh
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module DnsDumpster
run: |
theHarvester -d yale.edu -b dnsdumpster
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module DuckDuckGo
run: |
theHarvester -d yale.edu -b duckduckgo
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module HackerTarget
run: |
theHarvester -d yale.edu -b hackertarget
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Otx
run: |
theHarvester -d yale.edu -b otx
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module RapidDns
run: |
theHarvester -d yale.edu -b rapiddns
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Threatminer
run: |
theHarvester -d yale.edu -b threatminer
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Urlscan
run: |
theHarvester -d yale.edu -b urlscan
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module Yahoo
run: |
theHarvester -d yale.edu -b yahoo
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Run theHarvester module DNS brute force
run: |
theHarvester -d yale.edu -c
continue-on-error: ${{ matrix.python-version == '3.13' }}
- name: Static type checking with mypy
run: |
mypy --pretty theHarvester/*/*.py
mypy --pretty theHarvester/*/*/*.py
continue-on-error: ${{ matrix.python-version == '3.13' }}