Questions tagged [nt]

51 questions
7
votes
2 answers

How do you get Graphics in Native NT Text-Mode?

Apparently, the EASEUS Partition Master program can display graphics before the Windows GUI starts (i.e., it runs at the same time CheckDisk runs at boot). What I already know: This might require not-very-well-documented functions. That's fine with…
user541686
  • 189,354
  • 112
  • 476
  • 821
7
votes
6 answers

How can I convert a native (NT) pathname into a Win32 path name?

I'm working on reporting some information gleaned from native system APIs. (I know this is bad.... but I'm getting information that I can't get otherwise, and I have little issue with having to update my app if/when that time comes around.) The…
Billy ONeal
  • 97,781
  • 45
  • 291
  • 525
6
votes
1 answer

Discovering footprints of loaded and unloaded kernel mode drivers

Background: There are vulnerable kernel mode drivers for Windows systems, which can be loaded into the system for various purposes. Loaded kernel mode drivers leave traces in the system. Anti-cheat software for video games, for example, look for…
Joe Toe
  • 61
  • 6
6
votes
2 answers

Can There be a Process WITHOUT an Executable-Backed Image?

After looking at various pages like OSR Online and NtInternals, it seems like NtCreateProcess (and ZwCreateProcess) specify that giving a handle to a memory section is optional! Does this mean that we can have processes that are not backed by…
user541686
  • 189,354
  • 112
  • 476
  • 821
5
votes
1 answer

Non-HID Mouse driver on NT

I'm looking to write a custom touchpad driver for my laptop, as its support under Windows is abysmal. I have the protocol figured out and I'm ready to go ahead and implement it, but I'm a bit confused as to how to go about it. It's a multitouch…
Serafina Brocious
  • 29,643
  • 11
  • 85
  • 111
4
votes
5 answers

linuXploit_crew hit my webserver

We run an old Windows NT Machine, fully patched running IIS4.0. Today we were hit by "linuXploit_crew", and they took down our websites for a minute or two. (luckily we were quick to notice a change on the websites and fix it within minutes of the…
GruffTech
  • 51
  • 1
  • 4
4
votes
3 answers

Running a J6SE app on an NT box

I need to run a Java application, which we are trying to port to Java 6, on an NT box. I manage to run java 5 on it (although not officially supported), but when I try to run java 6 I get the following error: Exception in thread "main"…
Michael Bar-Sinai
  • 2,677
  • 18
  • 24
3
votes
8 answers

What's a quick way to familiarize myself with C#, .NET framework, etc?

I just graduated college and will be starting working in about a month and I was asked to familiarize myself with C++, C#, .NET framework for NT Services and web services. I'd appreciate recommendations on how to familiarize myself with these…
encee
  • 4,334
  • 4
  • 31
  • 33
3
votes
1 answer

How to use file_get_contents() to retrieve a file behind Windows NT Auth

I've got a setup in which a LAMP server needs to retrieve an output from a javascript file from another server IIS that is sitting behind Windows NT authentication. Without the authentication in place, I can just use file_get_contents() to retrive…
Mezzair
  • 187
  • 4
  • 12
3
votes
2 answers

Intercepting process execution in a NT driver

I have developed a driver for Windows XP which is able to monitor the execution of processes. A callback function receives the notifications using standard WDK API (PsSetCreateProcessNotifyRoutine). The driver then decides if the process should be…
Denis
  • 41
  • 4
3
votes
1 answer

Opening file from named pipe in browser - possible or not? Without saving on the disk

I created named pipe on C#. Server using (NamedPipeServerStream pipeServer = new NamedPipeServerStream("testpipe", PipeDirection.Out)) { Console.WriteLine("NamedPipeServerStream object created."); …
Sergey Shoshin
  • 435
  • 4
  • 16
3
votes
2 answers

How to add ntdll.dll to project libraries with LoadLibrary() and GetProcAddress() functions?

I want to get the thread's start address with NtQueryInformationThread, but I need to add its library. How can I do that?
Mehrdad
  • 648
  • 1
  • 15
  • 36
2
votes
1 answer

Calling SQL database and processing unit from NT services

I need to process files whenit get dropped to folder and update details in the DB. I have an NT service written which detects the file drops Questions hovering my mind: 1- Should I use this same NT service to process it? 2- Is NT service thread…
JewelThief
  • 591
  • 2
  • 9
  • 25
2
votes
1 answer

How to obtain file handle to the current executable without introducing a filesystem race?

I need to read some data from the current executable file (namely, debug info). This is straightforward to do by calling QueryFullProcessImageName, then using the path returned by it to open the file and read from it. However, this way introduces a…
user2665887
  • 793
  • 4
  • 18
2
votes
2 answers

C# How to login as a different user programmatically into a NTAuthenticated Website

Our team uses a website that uses NT Authentication. I need to point my automation scripts to that site. This needs passing the credentials of the testuser accounts to the application and not mine. How do I do that programmatically so that the…
PK.
  • 45
  • 2
  • 5
1
2 3 4