Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can use this command from a command prompt on the remote device to quickly add the registry key:

Code Block
languagevb
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1 /f

 

Local Security Policies

Run one of the following three Microsoft Management Console (MMC) snap-ins:

...

If this key does not exist, you can add it using a command prompt by:

Code Block
languagevb
reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa /v ForceGuest /t REG_DWORD /d 0 /f

 

You can also do this through settings by performing the following steps:

...

For Windows Vista, 7, 8, 2008 and 2012, enter the following commands:

 

Code Block
languagevb
netsh advfirewall firewall set rule group="windows management instrumentation (wmi)" new enable=yes

...


netsh advfirewall firewall set rule group="remote administration" new enable=yes

...


netsh advfirewall firewall set rule name=""File and Printer Sharing (Echo Request - ICMPv4-In)"" new enable=yes

 

For Windows XP and 2003, enter the following command

Code Block
languagevb
netsh firewall set service type=remoteadmin mode=enable

Linux

On Linux, Open-AudIT uses SSH as it's primary method of auditing. SNMP is also support (and detailed below).

...