Run WELA Audit(Microsoft Client) #107
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: Run WELA Audit(Microsoft Client) | |
| on: | |
| schedule: | |
| - cron: '0 20 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| permissions: | |
| contents: write | |
| runs-on: windows-11-arm | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Checkout WELA repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: Yamato-Security/WELA | |
| path: WELA | |
| - name: Run auditpol command | |
| run: | | |
| auditpol /get /category:* | |
| - name: Run auditpol set command | |
| run: | | |
| cmd /c "auditpol /set /subcategory:{0CCE922B-69AE-11D9-BED3-505054503030} /success:disable /failure:disable" | |
| - name: Run configure bat(MS Client) | |
| run: | | |
| cd bat | |
| ./Microsoft_Client.bat | |
| - name: Run WELA.ps1 audit-settings(MS Client) | |
| run: | | |
| cd WELA | |
| ./WELA.ps1 audit-settings -Baseline Microsoft_Client | |
| - name: Move WELA result files (Microsoft_Client) | |
| run: | | |
| cd WELA | |
| Copy-Item *.csv ../data/Microsoft_Client/ -Force | |
| - name: Delete WELA repo | |
| run: | | |
| Remove-Item -Recurse -Force WELA | |
| - name: Pull Git repo | |
| run: | | |
| git pull origin main | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: Apply changes |