NEW LIB - FindKillProcess()

Just starting out? Need help? Post your questions and find answers here.
User avatar
NoahPhense
Addict
Addict
Posts: 1999
Joined: Thu Oct 16, 2003 8:30 pm
Location: North Florida

Post by NoahPhense »

GeoTrail wrote:
deadmoap wrote:But you see... I have to share this computer with my dad... who is a horny 35 year old man that looks at PORN all day on google. :x
Son, is that you? :lol: :lol:
ROFL....

that reminds me.. my dad walked in once when i was masturbating, he
said, "Son, you know you can go blind doing that..."

I said, "Dad I'm over here.."

- np

*edit*
ok this is really off topic.. i stop now..
Last edited by NoahPhense on Wed Aug 04, 2004 11:58 pm, edited 1 time in total.
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Post by GeoTrail »

LMAO, sound fimilar :lol: :twisted:
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
tonnelier
User
User
Posts: 45
Joined: Mon May 03, 2004 10:34 pm
Location: France

Post by tonnelier »

I've made few time ago a program to (un) authorize / kill/suspend/resume process.
I'll add soon a registry and files tracing.
You can download it (in french. I'll translate it when I'll finish it) at:
http://perso.wanadoo.fr/berliozo

works on Win XP and 2k. Not on W98 and Me
User avatar
NoahPhense
Addict
Addict
Posts: 1999
Joined: Thu Oct 16, 2003 8:30 pm
Location: North Florida

Re: NEW LIB - KillFindProcess()

Post by NoahPhense »

For those of you wanted the resident file in an IncludeFile format, here it is.

It's good to have in the event that your constants begin to conflict.

Just remove the FindKillProcess.res, and use this:

IncludeFile "FindKillProcess.pbi"

Code: Select all

; INCLUDE OR RESIDENT FILE FOR FindKillProcess Lib
#PROCESS_TERMINATE = $1
#PROCESS_CREATE_THREAD = $2 
#PROCESS_VM_OPERATION = $8 
#PROCESS_VM_READ = $10 
#PROCESS_VM_WRITE = $20 
#PROCESS_DUP_HANDLE = $40 
#PROCESS_CREATE_PROCESS = $80 
#PROCESS_SET_QUOTA = $100 
#PROCESS_SET_INFORMATION = $200 
#PROCESS_QUERY_INFORMATION = $400 
#PROCESS_ALL_ACCESS = $F0000 | $100000 | $FFF 

#TH32CS_SNAPHEAPLIST = $1 
#TH32CS_SNAPPROCESS = $2 
#TH32CS_SNAPTHREAD = $4 
#TH32CS_SNAPMODULE = $8 
#TH32CS_SNAPALL = #TH32CS_SNAPHEAPLIST | #TH32CS_SNAPPROCESS | #TH32CS_SNAPTHREAD | #TH32CS_SNAPMODULE 
#TH32CS_INHERIT = $80000000 
#PROCESS32LIB = 9999 

Structure PROCESSENTRY32 
  dwSize.l 
  cntUsage.l 
  th32ProcessID.l 
  *th32DefaultHeapID.l 
  th32ModuleID.l 
  cntThreads.l 
  th32ParentProcessID.l 
  pcPriClassBase.l 
  dwFlags.l 
  szExeFile.b [260] 
EndStructure
- np
User avatar
NoahPhense
Addict
Addict
Posts: 1999
Joined: Thu Oct 16, 2003 8:30 pm
Location: North Florida

..

Post by NoahPhense »

*bump*
CoderLaureate
User
User
Posts: 50
Joined: Fri Apr 25, 2003 7:21 pm
Location: The World is my country, all mankind are my brethren, and to do good is my religion.
Contact:

Post by CoderLaureate »

I have a horny father that lives 150 miles away from me and he's always calling me and asking what's wrong with his computer.
Post Reply