Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2013-3900-Remediation-Script — Windows システム上でレジストリの強化により証明書パディングチェックを有効にして、CVE-2013-3900 を修正する PowerShell スクリプト。 | Kitploit
ツール/GitHubGitHub/davidbr27/cve-2013-3900-remediation-script
脆弱性分析構成監査暗号化設定ミス
GitHubdavidbr27/cve-2013-3900-remediation-script

CVE-2013-3900-Remediation-Script

Windows システム上でレジストリの強化により証明書パディングチェックを有効にして、CVE-2013-3900 を修正する PowerShell スクリプト。

リポジトリを見る

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
41年前未レビュー
共有
root@kitploit:~
# CVE-2013-3900 Remediation Script

# Define registry paths for both 32-bit and 64-bit configurations
$regPaths = @(
    "HKLM:\Software\Microsoft\Cryptography\Wintrust\Config",
    "HKLM:\Software\Wow6432Node\Microsoft\Cryptography\Wintrust\Config"
)

# Function to add or update the registry key
function Set-EnableCertPaddingCheck {
    param (
        [string]$path
    )
    if (!(Test-Path $path)) {
        New-Item -Path $path -Force | Out-Null
    }
    Set-ItemProperty -Path $path -Name "EnableCertPaddingCheck" -Value 1 -Type DWord
}

# Apply the fix to both registry paths
foreach ($path in $regPaths) {
    Set-EnableCertPaddingCheck -path $path
}

# Confirm changes
Write-Host "Registry keys updated successfully!" -ForegroundColor Green

# Verify the changes
foreach ($path in $regPaths) {
    $value = Get-ItemProperty -Path $path | Select-Object -ExpandProperty EnableCertPaddingCheck -ErrorAction SilentlyContinue
    if ($value -eq 1) {
        Write-Host "Verification successful for $path: EnableCertPaddingCheck = 1" -ForegroundColor Green
    } else {
        Write-Host "Verification failed for $path!" -ForegroundColor Red
    }
}

# Restart the system to apply changes
Write-Host "Restarting system in 10 seconds to apply changes..." -ForegroundColor Yellow
Start-Sleep -Seconds 10
Restart-Computer -Force
ツールをダウンロード