#1
|
|||
|
|||
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 |
#2
|
|||
|
|||
if you not sure use corporateupdate.
__________________
_Servil_ SemtekSoft Corporation, Inc. |
#3
|
||||
|
||||
The keygens for Windows XP and Windows 2003 VLK are out
M$ short ECC private keys are broken. I don't have this keygen, please don't ask me for it.
__________________
AKA Solomon/blowfish. Last edited by WhoCares; 04-05-2004 at 09:15. |
#4
|
|||
|
|||
That keygen looks awesome , 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. |
#5
|
||||
|
||||
o_O teso whitehats are coming into the forum :P
or maybe its some other skyper Last edited by upb; 04-04-2004 at 22:42. |
#6
|
|||
|
|||
not skyper from teso, getting there ;-) still noone has answered my ida question =/
|
#7
|
||||
|
||||
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. |
#8
|
|||
|
|||
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 |
#9
|
|||
|
|||
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"); } |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
PE Loader Questions | dila | General Discussion | 13 | 12-20-2011 12:03 |
Humor and a few questions. | Innocent | General Discussion | 6 | 08-10-2004 02:51 |
Armadillo questions? | ManSun | General Discussion | 20 | 05-12-2004 17:46 |
questions about code | bartster | General Discussion | 19 | 02-14-2004 01:31 |
some unpacking questions | gnasher | General Discussion | 2 | 01-03-2004 20:44 |