您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. WinAPI (Delphi版)

  2. Creating Windows CreateMDIWindow CreateWindow CreateWindowEx RegisterClass RegisterClassEx UnregisterClass Message Processing BroadcastSystemMessage CallNextHookEx CallWindowProc DefFrameProc DefMDIChildProc DefWindowProc DispatchMe ssage GetMessage
  3. 所属分类:Delphi

    • 发布日期:2004-11-10
    • 文件大小:1mb
    • 提供者:microrain
  1. VB关机程序--包括注销、重启、关机

  2. VB关机程序--包括注销、重启、关机。 附:(源码) Option Explicit Private Declare Function GetCurrentProcess Lib "kernel32" () As Long Private Declare Function OpenProcessToken Lib "advapi32" (ByVal ProcessHandle As Long, ByVal DesiredAccess As Long, TokenHandle As Long)
  3. 所属分类:VB

    • 发布日期:2009-06-02
    • 文件大小:28kb
    • 提供者:wowolalahaha
  1. 用户名密码查询findpass

  2. // Find Password from winlogon in win2000 / winnt4 + FindPass.cpp // 1. http://www.smidgeonsoft.com/ // 2. shotgun add comment, bingle change a little to find other user in winlogon // This code is licensed under the te rms of the GPL (gnu public l
  3. 所属分类:网络攻防

    • 发布日期:2009-07-15
    • 文件大小:106kb
    • 提供者:jfliao
  1. DLL注入实例+教程

  2. 远程注入DLL方法有很多种,也是很多*病毒所使用的隐藏进程的方法,因为通过程序加载的DLL在进程管理器是没有显示的.这里介绍一种用 CreateRemoteThread 远程建立线程的方式注入DLL. 首先,我们要提升自己的权限,因为远程注入必不可免的要访问到目标进程的内存空间,如果没有足够的系统权限,将无法作任何事.下面是这个函数是用来提升我们想要的权限用的. function EnableDebugPriv: Boolean; var hToken: THandle; tp: TToke
  3. 所属分类:网络攻防

    • 发布日期:2009-07-27
    • 文件大小:444kb
    • 提供者:buzuibuxiu
  1. Detours Express源码(微软API HOOK库)

  2. Detours是微软开发的一个函数库, 用于修改运行中的程序在内存中的影像,从而即使没有源代码也能改变程序的行为。具体用途是: 拦截WIN32 API调用,将其引导到自己的子程序,从而实现WIN32 API的定制。 为一个已在运行的进程创建一新线程,装入自己的代码并运行。 ---- 本文将简介Detours的原理,Detours库函数的用法, 并利用Detours库函数在Windows NT上编写了一个程序,该程序能使有“调试程序”的用户权限的用户成为系统管理员,附录利用Detours库函数修
  3. 所属分类:网络攻防

    • 发布日期:2009-09-24
    • 文件大小:416kb
    • 提供者:rendao0563
  1. 武大大的钩子程序源码

  2. function RepointFunction(OldFunc, NewFunc: Pointer): Integer; var IsDone: TList; function RepointAddrInModule(hModule: THandle; OldFunc, NewFunc: Pointer): Integer; var Dos: PImageDosHeader; NT: PImageNTHeaders; ImportDesc: PImage_Impo rt_Entry; RVA
  3. 所属分类:其它

    • 发布日期:2009-10-24
    • 文件大小:337kb
    • 提供者:jazzson
  1. C# CS版关机小程序

  2. 部分代码。。。。实现了定时关机,重启,注销功能 http://download.csdn.net/source/1904617可下载新版本 [DllImport("kernel32.dll", ExactSpelling = true)] internal static extern IntPtr GetCurrentProcess(); [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] interna
  3. 所属分类:C#

    • 发布日期:2009-12-15
    • 文件大小:106kb
    • 提供者:suijing
  1. C# CS版关机小程序 关机小程序 定时关机

  2. 部分代码。。。。实现了定时关机,重启,注销,在上一版本上添加了对加锁和解锁的密码验证功能,部分代码 [DllImport("kernel32.dll", ExactSpelling = true)] internal static extern IntPtr GetCurrentProcess(); [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] internal static extern bool
  3. 所属分类:C#

    • 发布日期:2009-12-15
    • 文件大小:110kb
    • 提供者:suijing
  1. C# CS版关机小程序 关机小程序

  2. 部分代码。。。。实现了定时关机,重启,注销,在上一版本上添加了对加锁和解锁的密码验证功能,部分代码 [DllImport("kernel32.dll", ExactSpelling = true)] internal static extern IntPtr GetCurrentProcess(); [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] internal static extern bool
  3. 所属分类:C#

    • 发布日期:2010-01-05
    • 文件大小:130kb
    • 提供者:suijing
  1. c# 计划关机。net

  2. #region 关机代码 [StructLayout(LayoutKind.Sequential, Pack = 1)] internal struct TokPriv1Luid { public int Count; public long Luid; public int Attr; } [DllImport("kernel32.dll", ExactSpelling = true)] internal static extern IntPtr GetCurrentProcess(); [
  3. 所属分类:C#

    • 发布日期:2010-03-20
    • 文件大小:91kb
    • 提供者:cheng40
  1. Delphi 创建高权限进程

  2. program Project1; //{$APPTYPE CONSOLE} uses windows, SysUtils, tlhelp32, accctrl, aclapi; procedure SetPrivilege; var OldTokenPrivileges, TokenPrivileges: TTokenPrivileges; ReturnLength: dword; hToken: THandle; Luid: int64; begin OpenProcessToken(Ge
  3. 所属分类:网络攻防

    • 发布日期:2010-05-30
    • 文件大小:3kb
    • 提供者:timetech
  1. detour 2.1

  2. Detours是微软开发的一个函数库, 用于修改运行中的程序在内存中的影像,从而即使没有源代码也能改变程序的行为。具体用途是: 拦截WIN32 API调用,将其引导到自己的子程序,从而实现WIN32 API的定制。 为一个已在运行的进程创建一新线程,装入自己的代码并运行。 ---- 本文将简介Detours的原理,Detours库函数的用法, 并利用Detours库函数在Windows NT上编写了一个程序,该程序能使有“调试程序”的用户权限的用户成为系统管理员,附录利用Detours库函数修
  3. 所属分类:网络攻防

    • 发布日期:2010-07-16
    • 文件大小:352kb
    • 提供者:microran2000
  1. .net C#线程超时

  2. .net C#线程超时的解决方案,使用的时候在被调线程入口调用一下这个方法就可以。更多详细代码见附件 Report.RegisterThread(Report.GetCurrentWin32ThreadID(),Thread.CurrentThread); #region 获取当取线程的ThreadID [DllImport("Kernel32", EntryPoint = "GetCurrentThreadId", ExactSpelling = true)] public static e
  3. 所属分类:C#

    • 发布日期:2010-10-28
    • 文件大小:5kb
    • 提供者:yangkequn
  1. .net c#线程超时解决方案

  2. .net C#线程超时的解决方案,使用的时候在被调线程入口调用一下这个方法就可以。更多详细代码见附件 Report.RegisterThread(Report.GetCurrentWin32ThreadID(),Thread.CurrentThread); #region 获取当取线程的ThreadID [DllImport("Kernel32", EntryPoint = "GetCurrentThreadId", ExactSpelling = true)] public static e
  3. 所属分类:C#

    • 发布日期:2010-10-28
    • 文件大小:1kb
    • 提供者:yangkequn
  1. C# 关机程序完整源码

  2. C# 关机程序 收藏 1. using System; 2. using System.Runtime.InteropServices; 3. 4. class shoutdown{ 5. [StructLayout(LayoutKind.Sequential, Pack=1)] 6. internal struct TokPriv1Luid 7. { 8. public int Count; 9. public long Luid; 10. public int Attr; 11. } 12
  3. 所属分类:C#

    • 发布日期:2011-02-10
    • 文件大小:39kb
    • 提供者:flydoos
  1. DuplicateHandle进程间应用监控例子

  2. DuplicateHandle进程间应用监控例子 里面有问题的话修改函数cb为以下就正常了 procedure cb(AIdx:integer); begin closehandle(gh); TerminateProcess(getcurrentprocess, 0); end;
  3. 所属分类:桌面系统

    • 发布日期:2011-06-01
    • 文件大小:181kb
    • 提供者:jianye112
  1. VC++系统信息程序开发的简单一例

  2. VC++系统信息程序开发的简单一例,是Visual C++课程设计案例精编(第二版)中第一章的实例子。检测操作系统版本、内存使用信息以及网卡信息等。代码中的部分释义:   //OpenProcessToken()这个函数的作用是打开一个进程的访问令牌   //GetCurrentProcess()函数的作用是得到本进程的句柄   //LookupPrivilegeValue()的作用是修改进程的权限   //赋给本进程特权   tkp.Privileges[0].Attributes = SE
  3. 所属分类:C++

    • 发布日期:2011-11-05
    • 文件大小:128kb
    • 提供者:gouyue
  1. 学生上机游戏专用监控系统

  2. unit Unit3; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, xpWindow, StdCtrls, AAFont, AACtrls; type TForm3 = class(TForm) Label2: TLabel; xpWindow1: TxpWindow; AAFadeText1: TAAFadeText; private {
  3. 所属分类:其它

    • 发布日期:2011-11-10
    • 文件大小:986kb
    • 提供者:wanciden
  1. 获取进程路径

  2. 获取正在运行进程的完整路径 function EnabledDebugPrivilege(const bEnabled: Boolean): Boolean; var hToken: THandle; tp: TOKEN_PRIVILEGES; a: DWORD; const SE_DEBUG_NAME = 'SeDebugPrivilege'; begin Result := False; if (OpenProcessToken(GetCurrentProcess(), TOKEN_ADJ
  3. 所属分类:Delphi

    • 发布日期:2011-11-28
    • 文件大小:107kb
    • 提供者:heh1818
  1. C# 获取系统路径如“我的文档”

  2. c# 获取相对路径,操作环境变量. 一、获取当前文件的路径 1. System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName 获取模块的完整路径,包括文件名。 2. System.Environment.CurrentDirectory 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。 ...... C# 如何获取某用户的“我的文档”的目录 System.Environment.GetFolderPath(En
  3. 所属分类:C#

    • 发布日期:2012-09-08
    • 文件大小:7kb
    • 提供者:fjlaowei
« 12 3 »