64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| 
 | |
| - name: Downloading the Palantir WEF Configuration
 | |
|   win_shell: ".\\download_palantir_wef.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: palantir_wef
 | |
|   failed_when: "'Exception' in palantir_wef.stdout"
 | |
| 
 | |
| - debug: msg="{{ palantir_wef.stdout_lines }}"
 | |
|   
 | |
| - name: Installing osquery
 | |
|   win_shell: ".\\install-osquery.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: install_osquery
 | |
|   failed_when: "'Exception' in install_osquery.stdout"
 | |
| 
 | |
| - debug: msg="{{ install_osquery.stdout_lines }}"
 | |
| 
 | |
| - name: Installing SysInternals Tools
 | |
|   win_shell: ".\\install-sysinternals.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: sysinternals
 | |
|   failed_when: "'Exception' in sysinternals.stdout"
 | |
| 
 | |
| - debug: msg="{{ sysinternals.stdout_lines }}"
 | |
| 
 | |
| - name: Installing Velociraptor
 | |
|   win_shell: ".\\install-velociraptor.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: velociraptor
 | |
|   failed_when: "'Exception' in velociraptor.stdout"
 | |
| 
 | |
| - debug: msg="{{ velociraptor.stdout_lines }}"
 | |
| 
 | |
| - name: Installing AutorunsToWineventlog
 | |
|   win_shell: ".\\install-autorunstowineventlog.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: autorunstowineventlog
 | |
|   failed_when: "'Exception' in autorunstowineventlog.stdout"
 | |
| 
 | |
| - debug: msg="{{ autorunstowineventlog.stdout_lines }}"
 | |
| 
 | |
| - name: Installing Red Team Tooling
 | |
|   win_shell: ".\\install-redteam.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: redteam
 | |
|   failed_when: "'Exception' in redteam.stdout"
 | |
| 
 | |
| - debug: msg="{{ redteam.stdout_lines }}"
 | |
| 
 | |
| - name: Install Utilities
 | |
|   win_shell: ".\\install-utilities.ps1"
 | |
|   args:
 | |
|     chdir: 'c:\vagrant\scripts'
 | |
|   register: utilities
 | |
|   failed_when: "'Exception' in utilities.stdout"
 | |
|   ignore_errors: true
 | 
