Skip to content
Snippets Groups Projects
Commit 278b1974 authored by FuzzySecurity's avatar FuzzySecurity
Browse files

-Lib&SanityCheck

parent 20d95f56
No related branches found
No related tags found
No related merge requests found
......@@ -124,9 +124,16 @@ function Get-KeystoneAssembly {
# Set the keystone DLL path
if ([IntPtr]::Size -eq 4){
$DllPath = $($PSScriptRoot + '\Lib\Keystone-0.9.1\x86\keystone.dll').Replace('\','\\')
$DllPath = $($PSScriptRoot + '\Lib\Keystone\x86\keystone.dll').Replace('\','\\')
} else {
$DllPath = $($PSScriptRoot + '\Lib\Keystone-0.9.1\x64\keystone.dll').Replace('\','\\')
$DllPath = $($PSScriptRoot + '\Lib\Keystone\x64\keystone.dll').Replace('\','\\')
}
# Make sure the user didn't forget the DLL
if (![IO.File]::Exists($DllPath)) {
echo "`n[!] Missing Keystone DLL"
echo "[>] Quitting!`n"
Return
}
# Load C# constants
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment