-
Notifications
You must be signed in to change notification settings - Fork 42
137 lines (117 loc) · 3.8 KB
/
lint.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Lint and check code for errors
on:
push:
branches:
- main
- dev
paths:
- Payload_Type/thanatos/thanatos/agent_code
- Payload_Type/thanatos/**.py
pull_request:
branches:
- main
- dev
paths:
- Payload_Type/thanatos/thanatos/agent_code
- Payload_Type/thanatos/**.py
workflow_call:
env:
THANATOS_PATH: Payload_Type/thanatos
AGENT_CODE: thanatos/agent_code
MYTHIC_CODE: thanatos/mythic/agent_functions
jobs:
syntax:
name: Check Syntax
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
python-requirements: ${{ env.THANATOS_PATH }}/requirements.txt
agent-code: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
- name: Check Mythic code for errors
working-directory: ${{ env.THANATOS_PATH }}
run: python -m pylint --rcfile pylintrc -f colorized --errors-only main.py ${MYTHIC_CODE}/*.py
- name: Check Agent code for errors
working-directory: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
run: cargo check --color always --all-targets --all-features
env:
RUSTFLAGS: "--cfg http"
UUID: ""
AESPSK: ""
callback_host: ""
callback_interval: ""
callback_jitter: ""
callback_port: ""
connection_retries: ""
encrypted_exchange_check: ""
get_uri: ""
headers: ""
post_uri: ""
working_hours: ""
format:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
python-requirements: ${{ env.THANATOS_PATH }}/requirements.txt
agent-code: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
- name: Check Mythic code formatting
working-directory: ${{ env.THANATOS_PATH }}
run: python -m black --color --diff --check main.py ${MYTHIC_CODE}/*.py
- name: Check Agent code formatting
working-directory: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
run: cargo fmt -- --color always --check
env:
RUSTFLAGS: "--cfg http"
UUID: ""
AESPSK: ""
callback_host: ""
callback_interval: ""
callback_jitter: ""
callback_port: ""
connection_retries: ""
encrypted_exchange_check: ""
get_uri: ""
headers: ""
post_uri: ""
working_hours: ""
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-lint
with:
python-requirements: ${{ env.THANATOS_PATH }}/requirements.txt
agent-code: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
- name: Install Clippy
run: rustup component add clippy
- name: Lint Mythic code with pylint
working-directory: ${{ env.THANATOS_PATH }}
run: python -m pylint --rcfile pylintrc -f colorized main.py ${MYTHIC_CODE}/*.py
- name: Lint Agent code with clippy
working-directory: ${{ env.THANATOS_PATH }}/${{ env.AGENT_CODE }}
run: cargo clippy --color always --all-features --all-targets -- -D warnings
env:
RUSTFLAGS: "--cfg http"
UUID: ""
AESPSK: ""
callback_host: ""
callback_interval: ""
callback_jitter: ""
callback_port: ""
connection_retries: ""
encrypted_exchange_check: ""
get_uri: ""
headers: ""
post_uri: ""
working_hours: ""