-
Notifications
You must be signed in to change notification settings - Fork 44
47 lines (38 loc) · 1.16 KB
/
codeql-analysis.yml
File metadata and controls
47 lines (38 loc) · 1.16 KB
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
name: "CodeQL"
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * 0"
jobs:
analyze:
name: Analyze CodeQL
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript, python
queries: +custom-queries
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
- name: Upload SARIF results
uses: github/codeql-action/upload-sarif@v3
- name: Custom Query for LOIC Mitigation
run: |
echo "Running custom CodeQL queries for LOIC detection..."
# Add custom queries to detect vulnerabilities exploitable by LOIC
# Example: Detect endpoints without rate limiting or input validation
# Queries should be placed in a `custom-queries` folder in the repo
- name: Review Results
run: |
echo "Review the CodeQL results in the Security tab of your repository."