BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

XP Login password

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder (Native API)
View previous topic :: View next topic  
Author Message
بابك
Guest





PostPosted: Mon Sep 18, 2006 12:59 am    Post subject: XP Login password Reply with quote



Hi
is there anyway for programmers to catch the password of login in WinXP when
it starts up?
Thanks
PS I'm using BCB5
Back to top
Mark Guerrieri
Guest





PostPosted: Mon Sep 18, 2006 8:10 am    Post subject: Re: XP Login password Reply with quote



Quote:
is there anyway for programmers to catch the password of login in WinXP
when
it starts up?

Well now that would be a neat trick. I hope not.
Back to top
Remy Lebeau (TeamB)
Guest





PostPosted: Mon Sep 18, 2006 8:10 am    Post subject: Re: XP Login password Reply with quote



"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450db877 (AT) newsgroups (DOT) borland.com...

Quote:
is there anyway for programmers to catch the password of
login in WinXP when it starts up?

The only way is to write a replacement GINA DLL. NT-based versions of
Windows use GINA to respond to user logins. GINA is responsible for
displaying the actual login prompt that the user sees. If you write your
own GINA DLL, you can display your own login dialog, and thus have access to
the credentials that the user types in.


Gambit
Back to top
Mike Collins
Guest





PostPosted: Mon Sep 18, 2006 5:26 pm    Post subject: Re: XP Login password Reply with quote

Yes, as remy has pointed out the GINA is responsible for the interactive
logon process and password arbitration. It's too big a topic to cover here
but i have written a series for the Borland Developers Journal that covers
this - this last article will be out this month or next and covers exactly
this i.e. password grabbing of winlogon password. It is possible to do this
with a GINA stub without too much trouble,

If you wish to pursue a private discussion about this (as it is a bit off
topic) post back and I'll send you an e-mail. Alternatively subscribe to
BCB journal and read away.

HTH Mike




"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450db877 (AT) newsgroups (DOT) borland.com...
Quote:
Hi
is there anyway for programmers to catch the password of login in WinXP
when
it starts up?
Thanks
PS I'm using BCB5

Back to top
بابك
Guest





PostPosted: Mon Sep 18, 2006 6:52 pm    Post subject: Re: XP Login password Reply with quote

Hi
someone put a password on her computer at work
and she leaves the work without telling us that word !!!
Now we need to use the PC, its also OK to have not the login form, we can
change the Windows by format , etc... but we want to not change the OS and
all those settings.

Thanks

Provate email babak_info at hotpop dot com
Back to top
Michel Leunen
Guest





PostPosted: Mon Sep 18, 2006 11:32 pm    Post subject: Re: XP Login password Reply with quote

Remy Lebeau (TeamB) wrote:

Quote:
The only way is to write a replacement GINA DLL.

Yes but you must be aware that with Vista the GINA dll will no longer
exist, "the user will not be able to successfully install custom logon
applications" according to msdn:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/AppComp.asp

Michel
--
----------------------------------------
Michel Leunen
mailto: see my homepage.
C++Builder, BCC5.5.1 Web site:
http://www.leunen.com/
----------------------------------------
Back to top
Bruce Salzman
Guest





PostPosted: Tue Sep 19, 2006 1:50 am    Post subject: Re: XP Login password Reply with quote

"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450eb02c (AT) newsgroups (DOT) borland.com...
Quote:
Hi
someone put a password on her computer at work
and she leaves the work without telling us that word !!!
Now we need to use the PC, its also OK to have not the login form,
we can
change the Windows by format , etc... but we want to not change the
OS and
all those settings.


Of course, if you know the administrator account password, you can
change any account's password. So assuming no one knows the admin
password:
http://www.petri.co.il/forgot_administrator_password.htm

--
Bruce
Back to top
بابك
Guest





PostPosted: Tue Sep 19, 2006 1:05 pm    Post subject: Re: XP Login password Reply with quote

and what happen if we dont know the admin pass??
Back to top
Remy Lebeau (TeamB)
Guest





PostPosted: Tue Sep 19, 2006 2:19 pm    Post subject: Re: XP Login password Reply with quote

"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450fb217 (AT) newsgroups (DOT) borland.com...

Quote:
and what happen if we dont know the admin pass??

Did you look at the link that Bruce gave you for that?


Gambit
Back to top
Alan Bellingham
Guest





PostPosted: Tue Sep 19, 2006 2:27 pm    Post subject: Re: XP Login password Reply with quote

"Remy Lebeau \(TeamB\)" <no.spam (AT) no (DOT) spam.com> wrote:

Quote:
"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message

and what happen if we dont know the admin pass??

Did you look at the link that Bruce gave you for that?

Presumably not all of it ...

Alan Bellingham
--
ACCU Conference: 11-14 April 2007 - Paramount Oxford Hotel
Back to top
Mike Collins
Guest





PostPosted: Tue Sep 19, 2006 3:54 pm    Post subject: Re: XP Login password Reply with quote

Yeh in this case, no gina is going to help you. The GINA only processes the
logon attempt and then passes the credentials back to winlogon. It is at
this point that the user details can be intercepted and process but this is
reliant on a successful logon attempt - if you don't know the password and
thus can't logon then this will not be any use. Also, you need to be able
to gain access to the OS in initial the GINA installation I.e. copy it onto
the harddisk and modify the registry - again this is going to be
problematic.

Not wanting to sound like a broken record (and defiantly off topic) but this
is bad administration and management - no password no pay - that's what I
say :-)

If you don't have any success with the links provided you might consider
looking at lophtcrack - i've had some very good success in the past with
this but i'm not sure what the situation is with XP and 2k3.

good luck...



"Mike Collins" <its (AT) TheBottomOfThePost (DOT) com> wrote in message
news:450e9081 (AT) newsgroups (DOT) borland.com...
Quote:
Yes, as remy has pointed out the GINA is responsible for the interactive
logon process and password arbitration. It's too big a topic to cover here
but i have written a series for the Borland Developers Journal that covers
this - this last article will be out this month or next and covers exactly
this i.e. password grabbing of winlogon password. It is possible to do
this with a GINA stub without too much trouble,

If you wish to pursue a private discussion about this (as it is a bit off
topic) post back and I'll send you an e-mail. Alternatively subscribe to
BCB journal and read away.

HTH Mike




"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450db877 (AT) newsgroups (DOT) borland.com...
Hi
is there anyway for programmers to catch the password of login in WinXP
when
it starts up?
Thanks
PS I'm using BCB5



Back to top
Mike Collins
Guest





PostPosted: Tue Sep 19, 2006 3:57 pm    Post subject: Re: XP Login password Reply with quote

Just as a little point of note - vista does provide a mechanism for
interacting with the logon process - it's just not a GINA per-say - the
system is more akined to the network notification packages that currently
exists on 32-bit Win NT based system. It is also COM based as far as i can
remember - i'm doing some work on it now (in between everything else)

Mike C


"Michel Leunen" <nospam (AT) noreply (DOT) please> wrote in message
news:450ee62c$1 (AT) newsgroups (DOT) borland.com...
Quote:
Remy Lebeau (TeamB) wrote:
Back to top
Mike Collins
Guest





PostPosted: Tue Sep 19, 2006 4:04 pm    Post subject: Re: XP Login password Reply with quote

Scrap that looks like sermatec has bought out lophtcrack and killed it Sad
the power of money...
Back to top
poojo hackma
Guest





PostPosted: Wed Dec 13, 2006 11:23 pm    Post subject: Re: XP Login password Reply with quote

Hi All,

Haven't been around in a while. Been developing for a PocketPC using
eMbedded VC 4.0. Right now, my program is undergoing some testing, so I
thought I'd drop in and read some messages to spend my time.

This topic raised a question with me: I have seen programs before that would
automatically log a person in using the current user's information. If you
are on an outside computer that is not part of the network, a login prompt
displays that the user enters the same login name and password that the
company computers use. How does the software login an individual for these
cases? Does it store the user's password, or get the current user from the
registry, or something different? I always thought that was a neat trick!

Regards and Happy Winter! :)

"بابك" <babak_info (AT) Dont (DOT) spam> wrote in message
news:450db877 (AT) newsgroups (DOT) borland.com...
Quote:
Hi
is there anyway for programmers to catch the password of login in WinXP
when
it starts up?
Thanks
PS I'm using BCB5

Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> C++ Builder (Native API) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.