Exetools

Exetools (https://forum.exetools.com/index.php)
-   General Discussion (https://forum.exetools.com/forumdisplay.php?f=2)
-   -   2 questions (IDA / Windows 2k/2k3) (https://forum.exetools.com/showthread.php?t=3860)

skyper 04-04-2004 06:06

2 questions (IDA / Windows 2k/2k3)
 
Hello All,

My first question is about IDA, why does it disassemble winsock exports in ordinals like:

call WSOCK32_51

instead of its name, like this:

call gethostbyaddr

is there any way to get it to show like the last one i showed without renaming manually all of them ?

second question, can i use windowsupdate to update win2k/win2k3 ? considering my version is pirated, maybe it will block me form using the OS like it did with XP iirc, i know that win98 can be updated with windowsupdate with no problem, but i need to know about 2k/2k3

thank you for your attention
skyper

_Servil_ 04-04-2004 14:39

if you not sure use corporateupdate.

WhoCares 04-04-2004 15:56

1 Attachment(s)
The keygens for Windows XP and Windows 2003 VLK are out :D
M$ short ECC private keys are broken.
I don't have this keygen, please don't ask me for it.

Perdition 04-04-2004 19:55

That keygen looks awesome :eek: , could you please post it or PM me?

Also looking for Win 2003 VLK keygen that works and doesn't take forever like the previous brute force method.

upb 04-04-2004 22:36

o_O teso whitehats are coming into the forum :P
or maybe its some other skyper

skyper 04-06-2004 04:45

not skyper from teso, getting there ;-) still noone has answered my ida question =/

upb 04-07-2004 08:20

heh, i can answer the part of why they are shown like this.
its because they are imported by ordinals.

too bad i dont know any idc scripting, so, cant help you with the automatic renaming.

skyper 04-07-2004 08:42

well
 
hello,

thank you, well, i'd be happier if ida could do this automatically, cause when i click in the ordinals, it shows me the name, so it'd be easier for ida to do this than for me to code a .plw or .idc to do it.

-skyper

skyper 04-22-2004 08:44

found
 
for those who want it, here it is...

// This IDC script will alter the names of imported functions to include the

// repeatable comments for that function, such that the name KERNEL_91 in IDA

// becomes KERNEL_91_INITTASK . Run from the Extern segment.

// extrn_name.idc

// code by mammon_ rev 1.27

#include <idc.idc>



static main(){

auto ea, old_name, old_cmt;

ea = SegStart( ScreenEA() );

while ( ea != BADADDR ) {

old_name = Name( ea );

old_cmt = RptCmt( ea );

MakeName( ea, old_name + "_" + substr(old_cmt, 0, (strlen(old_cmt)-1) ) );

ea = NextAddr(ea);

}

Message("Done fixing imported function names.\n");

}


All times are GMT +8. The time now is 04:03.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX