![]() |
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 |
if you not sure use corporateupdate.
|
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. |
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. |
o_O teso whitehats are coming into the forum :P
or maybe its some other skyper |
not skyper from teso, getting there ;-) still noone has answered my ida question =/
|
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. |
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 |
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