![]() |
|
#1
|
|||
|
|||
|
IDA Pro error 1491, any fix?
I am running IDA Pro 7.0.170914 along with HexRays x86 7.0.0.170914
I am running a fully up-to-date version of Windows 10. When I try to run a program in IDA (or attach to an existing program) using the "local window debugger" debugger option, IDA crashes with an "error 1491". Is there a fix (other than spending thousands of dollars on the latest IDA version?) |
|
#2
|
||||
|
||||
|
use remote debugging instead of local debugging to bypass this bug.
__________________
AKA Solomon/blowfish. |
| The Following User Says Thank You to WhoCares For This Useful Post: | ||
niculaita (03-04-2020) | ||
|
#3
|
|||
|
|||
|
Is this bug fixed in a later 7.x version?
|
|
#4
|
|||
|
|||
|
Quote:
or patch to nopout the check in binary file.Code:
// winbase_debmod.cpp
// Line 388
// ......
bool ntdll_vec_t::add(eanat_t addr, size_t sz, HANDLE h)
{
if ( has(addr) )
return false;
// max number of ntdlls: ntdll32.dll and ntdll.dll
//QASSERT(1491, size() < 2);
ntdll_range_t &r = push_back();
r.start = addr;
r.end = addr + sz;
r.handle = h;
return true;
}
https://mega.nz/#!xdcnyQZK!MzO9dQqPZ...DKx5ONkcNGD1ZU The newer version doen't got this problem. |
|
#5
|
|||
|
|||
|
Thanks for the info, I didn't know the relavent code was included in the IDA SDK.
Also thanks for the fixed binaries, means I dont need to figure out where I put my copy of the right IDA SDK (and figure out how to properly rebuild the files) |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| IDA 8052 error ? | Git | General Discussion | 7 | 11-25-2014 19:44 |