Skip to content

Commit

Permalink
Merge branch 'check_urls'
Browse files Browse the repository at this point in the history
  • Loading branch information
stuhli committed Nov 16, 2023
2 parents 58f3239 + 297c605 commit 17fb85c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/check_urls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Check URLs
on:
pull_request:
push:
schedule:
- cron: '25 4 * * 3,6'

jobs:
check-urls:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: urlstechie/urlchecker-action@master
with:
file_types: .md
8 changes: 7 additions & 1 deletion .github/workflows/lint_readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ jobs:
lint_readme:

runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install codespell
- run: codespell
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ In addition, it is impossible to remember them all, given the huge number of eve

### Event ID databases

- [EventID.net](http://www.eventid.net/search.asp) - Database
- [EventTracker Knowledgebase](https://kb.eventtracker.com/) - Database
- [MyEventlog.com](https://www.myeventlog.com/) - Database

Expand Down Expand Up @@ -96,7 +95,7 @@ In addition, it is impossible to remember them all, given the huge number of eve
- SMB
- [SMB error events (local collection)](event_ids/smb.md#smb-error-events)
- Task Scheduler
- [Common Task Scheduler Event IDs](https://media.ultraspark.ca/blog/2017/03/29/common-task-scheduler-event-ids/) - List of the most common Event IDs for Windows Scheduled Tasks by djc.
- [Task Scheduler Event IDs](https://mnaoumov.wordpress.com/2014/05/15/task-scheduler-event-ids/) - List of the most common Event IDs for Windows Scheduled Tasks by mnaoumov.
- Windows Remote Command Execution
- [Traces of Windows remote command execution](https://www.synacktiv.com/en/publications/traces-of-windows-remote-command-execution.html) - Blogpost focused on remote command execution techniques used by attackers and read teamers and detailed logging recommendations.
- Windows Specific Event IDs
Expand Down

0 comments on commit 17fb85c

Please sign in to comment.