Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
2k views

LSA - Latent Semantic Analysis - How to code it in PHP?

I would like to implement Latent Semantic Analysis (LSA) in PHP in order to find out topics/tags for texts. Here is what I think I have to do. Is this correct? How can I code it in PHP? How do I ...
5
votes
4answers
315 views

How to build a conceptual search engine?

I would like to build an internal search engine (I have a very large collection of thousands of XML files) that is able to map queries to concepts. For example, if I search for "big cats", I would ...
4
votes
1answer
246 views

Probabilistic latent semantic analysis/Indexing - Introduction

But recently I found this link quite helpful to understand the principles of LSA without too much math. ...
3
votes
1answer
125 views

Discovering synonyms from set of documents using LSA transform in Ruby

After applying the LSA transform to a document array, how can this be used to generate synonyms? For instance, I have the following sample documents: D1 = Mobilization D2 = Reflective Pavement D3 = ...
2
votes
2answers
197 views

Question about custom windows authentication package

I'm building a custom authentication subpackage for MSV1_0 for Windows 7. I've used the msvsubauth sample in from the Windows SDK and I have 2 questions regarding some problems I'm facing with that: ...
2
votes
3answers
521 views

How to determine whether an LSA session is active in Windows XP

I'm trying to get the list of users currently logged into a machine. On Windows 7, I can call LsaEnumerateLogonSessions, then WTSQuerySessionInformation with WTSConnectState. But on XP, each LSA ...
2
votes
3answers
501 views

How to programmatically figure out if a user account is a member of a particular group in Windows?

Given a group name and a user account, I would like to know if the supplied user belongs to a particular group. The user can be a local user or a domain user and the group could be a local group or a ...
1
vote
1answer
13 views

Problems using Jama in java for LSA

i am making using of the jama package for finding the lsa . I was told to reduce the dimensionality and hence i have reduced it to 3 in this case and i reconstruct the matrix . But the resultant ...
1
vote
3answers
91 views

How do I convert a std::wstring to an LSA_UNICODE_STRING

Today I was able to write a simple C++ program that granted a user the "Log on as a service" privilege. Part of this involved converting between a LPCWSTR and an LSA_UNICODE_STRING. The code to do ...
1
vote
1answer
161 views

How do I correctly call LsaLogonUser for an interactive logon?

I'm trying to use LsaLogonUser to create an interactive logon session, but it always returns STATUS_INVALID_INFO_CLASS (0xc0000003). From what I have found in searching online, the memory layout of ...
0
votes
1answer
26 views

Doubts regarding LSA

I have to find the similarity between a reference document and the set of documents in a repository . Method : 1. I find the term document matrix for all the documents including the reference ...
0
votes
1answer
20 views

What can cause a Kerberos TGT session key on Windows to be all zeros

I recently asked a question about some problems I was having getting MIT Kerberos to work nicely with Microsoft's LSA credentials cache. I was told that setting the registry key AllowTGTSessionKey ...
0
votes
1answer
45 views

execute program as lsa

I'm developing a program in windows (something like client & server) and I want to run server as LSA(local system account).but I don't know how? Note: I'm writing my program in VB6 but I'm ...
0
votes
0answers
41 views

LsaEnumerateAccountsWithUserRight fails when connecting to Windows Server 2008 r2

I have some c# code that uses the "advapi32.dll" to connect to various servers to collect various information for documentation purposes. Part of that documentation is getting user permissions from ...
0
votes
0answers
17 views

seeking working code example: add group to security policy, specifically “Create Global Objects” Win7

I have reviewed the stackover DB for this, a few examples of Lsa API usage found are instructive. I have also reviewed the old NT win32.mvps.org/lsa examples. If anyone has this basic Lsa logic ...
0
votes
0answers
37 views

Listing All Accounts and groups with Rights

So what I am doing is creating an automated server documentation app for disaster recovery. One of it's documentation sections is to essentially dump the following info into a word document: ...
0
votes
0answers
188 views

Custom Windows Authentication Package

So, here is the scenario. I am developing a logon system in windows 7. I have created a Credential Provider, containing one Credential. The Credential has three input fields, username, password, and ...
0
votes
2answers
178 views

Factors Analysis using MDP in Python

Excuse my ignorance, I'm very new to Python. I'm trying to perform factor analysis in Python using MDP (though I can use another library if there's a better solution). I have an m by n matrix ...
0
votes
0answers
121 views

How to call OpenTokenByLogonId function?

I am REALLY trying to find a way to call OpenTokenByLogonId() function, and I am pretty stuck. Moreover I can't find any examples of it anywhere! From MSDN a pointer to OpenTokenByLoginID() can be ...
0
votes
1answer
166 views

WIN32 - Last user to login

Is there a reliably way to determine the last user name to login to the system? I've looked at LsaEnumerateLogonSessions() and LsaGetLogonSessionData() however they require elevation on Vista and ...
0
votes
2answers
443 views

Calling AuditQuerySystemPolicy() (advapi32.dll) from C# returns “The parameter is incorrect”

The sequence is like follows: Open a policy handle with LsaOpenPolicy() (not shown) Call LsaQueryInformationPolicy() to get the number of categories; For each category: Call ...
0
votes
1answer
81 views

I get an Access Denied error when calling LsaQueryInformationPolicy(), and I'm an admin

I get this error return whether I try LsaQueryInformationPolicy() on the local host or on some other machine in the domain. The flags I use for LsaOpenPolicy() are POLICY_LOOKUP_NAMES | ...