• Welcome to Valhalla Legends Archive.
 

iago's lockdown source (100% C)

Started by iago, June 03, 2007, 02:24 AM

Previous topic - Next topic

warz

Quote from: Kyro on June 04, 2007, 05:07 PM
Yes, Warz released his code. Not here at this particular forum, but over at x86's forums. Here's link to the thread in where Warz released his stuff:

http://www.x86labs.org:81/forum/index.php/topic,8679.0.html

Direct link to the Warz source code download:

http://rafm.org/files/checkrevision.zip

for the record, the url to the x86 forum post is old, and incorrect. :P

brew

<3 Zorm
Quote[01:08:05 AM] <@Zorm> haha, me get pussy? don't kid yourself quik
Scio te esse, sed quid sumne? :P

Denial

#32
Intresting, Now for lockdown version 2 that comes out.
Actus non facit reum nisi mens sit rea

l)ragon

The bin dumping device seems to not like Win2k
*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*ˆ¨¯¯¨ˆ*^~·.,l)ragon,.-·~^*ˆ¨¯¯¨ˆ*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*

iago

Quote from: Denial on June 04, 2007, 10:22 PM
Intresting, Now for lockdown version 2 that comes out.
See my post in the thread "Hmm"

Quote from: l)ragon on June 04, 2007, 10:23 PM
The bin dumping device seems to not like Win2k
It doesn't seem to work for most people. Don't know why, don't care really, just download the .bin file :P
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


l)ragon

Quote from: iago on June 04, 2007, 11:05 PM
Quote from: Denial on June 04, 2007, 10:22 PM
Intresting, Now for lockdown version 2 that comes out.
See my post in the thread "Hmm"

Quote from: l)ragon on June 04, 2007, 10:23 PM
The bin dumping device seems to not like Win2k
It doesn't seem to work for most people. Don't know why, don't care really, just download the .bin file :P
nm heh your useing an xp/vista api in one of the librarys, http://msdn2.microsoft.com/en-us/library/ms683215.aspx.
*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*ˆ¨¯¯¨ˆ*^~·.,l)ragon,.-·~^*ˆ¨¯¯¨ˆ*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*

iago

wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


l)ragon

Quote from: iago on June 05, 2007, 12:08 AM
wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, (LPDWORD)dwProcessId);
*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*ˆ¨¯¯¨ˆ*^~·.,l)ragon,.-·~^*ˆ¨¯¯¨ˆ*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*

MyndFyre

Quote from: l)ragon on June 05, 2007, 09:33 AM
Quote from: iago on June 05, 2007, 12:08 AM
wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, (LPDWORD)dwProcessId);


That would generate a null pointer exception.  You're thinking:

int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, &dwProcessId);
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

K

Quote from: MyndFyre[vL] on June 06, 2007, 11:19 AM
Quote from: l)ragon on June 05, 2007, 09:33 AM
Quote from: iago on June 05, 2007, 12:08 AM
wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, (LPDWORD)dwProcessId);


That would generate a null pointer exception.  You're thinking:

int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, &dwProcessId);


Which also won't work because hProcess is a process HANDLE and not a HWND.

l)ragon

Quote from: K on June 06, 2007, 12:13 PM
Quote from: MyndFyre[vL] on June 06, 2007, 11:19 AM
Quote from: l)ragon on June 05, 2007, 09:33 AM
Quote from: iago on June 05, 2007, 12:08 AM
wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, (LPDWORD)dwProcessId);


That would generate a null pointer exception.  You're thinking:

int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, &dwProcessId);


Which also won't work because hProcess is a process HANDLE and not a HWND.
Ya that was my bad, thinking the wrong way heh.
*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*ˆ¨¯¯¨ˆ*^~·.,l)ragon,.-·~^*ˆ¨¯¯¨ˆ*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*

MyndFyre

#41
Quote from: K on June 06, 2007, 12:13 PM
Quote from: MyndFyre[vL] on June 06, 2007, 11:19 AM
Quote from: l)ragon on June 05, 2007, 09:33 AM
Quote from: iago on June 05, 2007, 12:08 AM
wow, I didn't know that was XP-specific.

Maybe I'll fix that -- I'll put "Requires XP or higher" on the download page :D
int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, (LPDWORD)dwProcessId);


That would generate a null pointer exception.  You're thinking:

int dwProcessId = 0;
GetWindowThreadProcessId(hProcess, &dwProcessId);


Which also won't work because hProcess is a process HANDLE and not a HWND.

Nuh uh.  You didn't see me declare it:

HWND hProcess = GetDesktopWindow(); // or some other window function
int dwProcess = 0;

GetWindowThreadProcessId(hProcess, &dwProcessId);

See??
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

l)ragon

#42
Quote from: brew on June 03, 2007, 02:20 PM
if you had read the first link, iago made a screen dumper. go make them yourself.
If you read through this thread aswell you would notice parts are XP/Vista dependent.

edit: late reply heh my bad.
*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*ˆ¨¯¯¨ˆ*^~·.,l)ragon,.-·~^*ˆ¨¯¯¨ˆ*^~·.,¸¸,.·´¯`·.,¸¸,.-·~^*

Denial

By the way im mirroring the files for iago

http://godkillme.com/lockdown/


has the .dll's as well. If you have any more files which you need hosted let me know as the project continues.
Actus non facit reum nisi mens sit rea

LCSBSSRHXXX


<3 LCS

|