Run WELA Audit(Microsoft Server) #117
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 Server) | |
| on: | |
| schedule: | |
| - cron: '0 15 * * *' | |
| 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 Server) | |
| run: | | |
| cd bat | |
| ./Microsoft_Server.bat | |
| - name: Run WELA.ps1 audit-settings(MS Server) | |
| run: | | |
| cd WELA | |
| ./WELA.ps1 audit-settings -Baseline Microsoft_Server | |
| - name: Move WELA result files (Microsoft_Server) | |
| run: | | |
| cd WELA | |
| Copy-Item *.csv ../data/Microsoft_Server/ -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 |