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
$putty_executable = "C:\Program Files (x86)\PuTTY\putty.exe" | |
# Download From: http://kb.fortinet.com/kb/viewContent.do?externalId=11186 | |
$fgt2eth_executable = "c:\tools\fgt2eth.exe" | |
$CaptureInterface="MyInterface1" | |
$CaptureFilter="host 172.16.23.100 and not host 172.16.11.138" | |
$FortigateHost = "xxx.xxx.xxx" |
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
# Install an Check result of Security Cheks | |
- name: "Check security posture agains CVE 2017-573,5715,5754" | |
hosts: windows | |
gather_facts: true | |
vars: | |
restart_allowed: false | |
enable_meltdown: true | |
enable_spectre: false |
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
win_ps_ensure: | |
check_command: Test-Path C:\Windows | |
check_value: true | |
set_command: New-Item -Type Directory C:\Windows |
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
#!/usr/bin/env bash | |
# TODO: Rewrite that as Ansible Playbook maybe for vagrant:ansible_local | |
# Installing Basic Utilitys | |
sudo apt-get install nano dnsutils | |
# Installing git | |
sudo apt-get install git -y |
NewerOlder