programmatically access to kerberos
Wed, 10 Dec 2008 21:19:01 -0800
I want to get the TGT from the kerberos and store it in the credential cache.
Later i want to raise a request for a service ticket to kerberos.
Basically i have to follow the complete kerberos mechanism.
All this i want to do programmatically in VC++.
I found out a function krb5_get_in_tkt_with_skey() to start w ...
|
CredEnumerate returns FALSE/ERROR_NOT_FOUND
Tue, 9 Dec 2008 18:37:00 -0800
I'm making this call based on info from Matt Pietrek's MSDN article from
Oct(?) 2003
[code]
PCREDENTIAL * pCreds;
DWORD cCreds;
BOOL rc = CredEnumerate( NULL, 0, &cCreds, &pCreds );
[/code]
This call returns FALSE and a call to GetLastError returns ERROR_NOT_FOUND.
I've also tried various filter value ...
|
Cannot delegate credentials to a ktpass-created account?
Sun, 7 Dec 2008 20:29:21 -0800 (PST)
Hi
I'm writing a Windows client program to communicate with a GSS-API
server. The client program uses the current login user's credentials
(by calling AcquireCredentialsHandle(0,"Kerberos",OUTBOUND,
0,0,0,0...)), and tries to call InitializeSecurityContext
(...,target,ISC_REQ_DELEGATE|...,). The problem is, a ...
|
Looking for help with sub authentication samples from the SDK
Sun, 7 Dec 2008 17:48:01 -0800
My first question is simply is this possible:
1. SubAuth for both MSV_1 and Kerberos on all DCs in an AD Domain
2. No client side change. When users login the info is passed through the
subauth filter.
3. I hoping I don't need anything client side.
In testing I compiled the Kerberos sample and registered and ...
|
AD Certificate Services - certificate templates
Wed, 3 Dec 2008 10:15:41 -0800 (PST)
Hello,
My issue is this:
My organization's CP(S) indicates that our "end entity" or "user"
certificate profile contains a "Basic Constraints" extension with the
following attributes:
Subject Type=End Entity
Path Length Constraint=None
Regarding Active Directory Certificate Services on Windows Server 2003
...
|
InitializeSecurityContext returns SEC_E_UNSUPPORTED_FUNCTION, but flags valid
Wed, 3 Dec 2008 11:36:52 +0100
Hi all,
Calling the function InitializeSecurityContext() returns the error code
"SEC_E_UNSUPPORTED_FUNCTION" (0x80090302) in a special situation described
below. We have no idea, why.
Code:
DWORD m_fContextReq = ISC_REQ_MUTUAL_AUTH | ISC_REQ_ALLOCATE_MEMORY
|ISC_REQ_CONFIDENTIALITY | ISC_REQ_R ...
|
Setting default program (mailto and webcal)
Tue, 02 Dec 2008 09:03:54 -0800
[If I'm in the wrong group, let me know which one would be more
appropriate.]
I'm working on an open source mail/webcal client (Mulberry) and trying to
fix the part that registers it as the system mail client to work on Vista
64. Running as a normal user, it of course can't edit HKCR and HKLM to
change th ...
|
|
|
Windows 2008 AD server returns "Server not found in Kerberos
Database" for user name?
Mon, 1 Dec 2008 20:25:03 -0800 (PST)
I'm writing a user-to-user app on Linux using a Windows 2008 AD as
KDC. I can successfully get a TGT from the AD server, but when I want
to get a service ticket for another user, the AD server returns a
Server not found in Kerberos Database (7) error.
According to http://tools.ietf.org/html/draft-swift-win2k-k ...
|
Error on "New CCertRequest"
Mon, 1 Dec 2008 16:00:12 -0800 (PST)
We have some code in which one of my previous co workers had basically
copied the following code from the Microsoft site to create a new
certificate
======================================
Private Sub Command1_Click()
' Declare objects for Enrollment and Request controls.
Dim objXen As Object
...
|
How to assign the SeDebugPrivilege to a running process?
Mon, 1 Dec 2008 12:20:56 -0800 (PST)
Hello.
I was wondering, is there a way to grant an already running process
(to which I do not have the source code) the SeDebugPrivilege,
somehow?
The reason I wish to do this is because this application can spy on
objects in the window, but is only limited to doing so on windows
which belong to processes st ...
|