Welcome![Sign In][Sign Up]
Location:
Search - Log dll

Search list

[Debugexe ,dll 调试器

Description: Functions of eXeScope Below table lists functions which eXeScope supports. OK:Enable,-:Disable (*1)Can output as a text file. (*2)Can display and rewrite as a binary dump format. (*3)Can import and export as a binary or text file. (*4)Can display the rewritten contents. (*5)Required SHDocvw.dll which is included in Internet Explorer ================================================================ Item Display Import &Export Edit Log Create .rc ================================================================ 1.Header OK (*1) - - - 2.Import OK (*1) - - - 3.Export OK (*1) - - - 4.Resource 4.1 Cursor OK OK OK OK - 4.2 Bitmap OK OK OK OK - 4.3 Icon OK OK OK OK - 4.4 Menu OK (*3) OK OK OK 4.5 Dialog OK (*3) OK(*4) OK OK 4.6 String OK (*3) OK OK OK 4.7 MessageTable OK (*3) OK OK - 4.8 Accelerator OK (*3) OK OK - 4.9 Version OK (*3) OK OK - 4.10 Delphi Form OK OK OK - - 4.11 WAVE OK OK OK - - 4.12 MIDI OK OK OK - - 4.13 AVI OK OK OK - - 4.14 GIF (*5) (*5) (*5) - - 4.15 HTML (*5) (*5) (*5) - - 4.16 JPEG OK OK OK - - 4.17 TYPELIB OK OK - - - 4.18 DialogData OK OK OK OK - 4.19 Toolbar OK - - - - 4.20 Other resources (*2) (*3) (*2) - - ================================================================
Platform: | Size: 504105 | Author: youlinge | Hits:

[Hook apiwinlogonhijack-v0.3-src

Description: injects a dll into winlogon.exe and hooks msgina.WlxLoggedOutSAS, logging every login in plaintext.
Platform: | Size: 111616 | Author: | Hits:

[Windows Develophook11

Description: 用Delphi6写的一个键盘记录器,采用“日志钩子”,不需额外的DLL,击键记录放在c:\log.txt里。写这个程序只是想熟悉一下HOOK,并没有干坏事的意识哦!-with Delphi6 write a keyloggers, "log hook," without additional DLL, keylogging on the c : \ log.txt Lane. This procedure was only want to familiarize ourselves with HOOK, and did nothing bad sense!
Platform: | Size: 206848 | Author: 杨红 | Hits:

[xml-soap-webserviceXmlDll

Description: 一个xml的dll,实现对xml的读取并生成xml格式的log文件,有测试程序!-an xml the dll, achieving the right xml read and generate the xml log file format, test procedures!
Platform: | Size: 6501376 | Author: 理由 | Hits:

[CSharpincubating-log4net-1.2.9-beta

Description: 与java中的Log4j很相同的Log4.net最新收集日志的方法-with the very same Log4j Log4.net latest collection of log
Platform: | Size: 6379520 | Author: 蔡宇衡 | Hits:

[Hook apiapihooktest2

Description: 一、前言   前一段时间发表了一篇文章 “Hook API 工具”,没有附带主程序的源代码,这几天翻出来代码加了些注释,现在补上。不过大家还是最好看看牛的书,书上讲解很详细。 二、对代码的简单说明   总共3个工程,1个主程序,1个HookDll, 1个例子Dll。主程序负责启动进程,并将 HookDll 注入。还有一些额外的功能,比如显示 Log, 例子Dll的信息,导出函数等,HookDll 在 DllMain 启动的时候根据配置钩住指定的 API 函数 三、这种方法的缺点   这种方法是在系统 API 函数起始代码 和 自定义代码之间切换。在多线程的环境下,如果正在切换的过程,其它线程调用这个函数,会出现异常,同时,如果已经切换回系统代码,其它线程对这个API 的调用将抓不到。解决方法就是不要切换,这点应该是可以做到的。 四、结束语   在例子Dll 中,模仿了 ws_32.dll 的输出函数,但是不全,而且 Log 信息也不足,感兴趣的朋友如果有比较全的版本别忘了发给我一份 :) 程序大家可以随意修改,保留那个林月如的 Icon 就行了 ^_^ -one, the preamble some time ago published an article entitled "Hook API tool," not incidental to the main program source code, which turned out a few days code plus some notes now fill. But we still look at the best cattle in the book, spoke on the very detailed. Two of the code simple instructions a total of three projects, a program, a HookDll, an example Dll. Main program to start the process and will HookDll injection. There are some additional features, such as Log shows examples Dll information derived function, in DllMain HookDll boot time configuration hooked designated API Function 3, the shortcomings of this method This method is the system API function code and starting from the definition of switching between code. In multithreaded environment, if the switching proces
Platform: | Size: 146432 | Author: ddd | Hits:

[Other Databasessqlite_vcl

Description: DELPHI 访问SQLITE3 数据库的VCL控件,需要sqlite3.dll文件,不需要安装任何服务端软件,我常用他作为应用的配置和日志存放点,缺陷就是没有加密。-SQLITE3 visit Delphi VCL control of the database, need sqlite3.dll documents do not have to install any server software. I used him as an application of the configuration and log files, the defect is not encrypted.
Platform: | Size: 4322304 | Author: ourenyang | Hits:

[Hook apiTestDebug

Description: 跟踪监视方案概览 作者:彭春华 当我们对某一目标程序进行API函数的跟踪监视分析时,根据跟踪监视的目标,基本上有以下几种途径实现对API函数的跟踪监视: 写Log记录分析 如果拥有目标程序的源代码,就可以在关键的API函数的入口点和出口点记录API的参数和运行结果。在除错程序中是经常可以看到这种方法的。该方法的缺点就是必须拥有源代码,每次修改Log时必须重新编译源代码。由于该方案和我们要讨论的目标不同,在此不作讨论。 将监视代码注入目标程序 该方案的原理是在目标程序运行时,将监视代码注入到目标程序的进程空间。监视代码通过前期的准备工作,修改目标程序的运行代码,使得目标程序调用指定的API函数时,运行指令会跳转到监视代码中,这样,监视代码就可以记录下API函数的运行参数,然后,监视代码在运行用来的API函数代码。在用来的API函数代码运行完后,再回到监视代码中,将来下运行结果,再返回目标程序。其运行原理图为: 在32位Windows平台上,各进程空间是独立的。要在目标程序中运行监视代码就必须将监视代码注入到目标进程。一种常用的方法就是将监视代码编译成一个DLL,再将该DLL注入到目标进程中。关于将DLL注入目标进程的文章有很多,
Platform: | Size: 34816 | Author: 李泉 | Hits:

[MiddleWareTestForCSharp

Description: 短信猫源码,如使用Debug库,需要设置环境变量GSMLIB_DEBUG等于2,则会在C:\下生成GSMModem.log文件。 若您在开发的过程中遇到问题,可以使用此方法获得GSMModem.log并发送给经销商,即可有 效的解决您的问题。
Platform: | Size: 1333248 | Author: tom | Hits:

[OS programtest_log

Description: 本人写的一个LOG文件DLL,使用该dll可以轻松实现在程序中打LOG日志-I wrote a LOG file DLL, use the dll can easily realize LOG playing in the procedure log
Platform: | Size: 261120 | Author: | Hits:

[File OperateToolxmltowbxml

Description: 由于xml文件不能被手机识别,所以不得不转化为wbxml文件,很多人都在为xml转化为wbxml文件苦恼。 这个工具可以很简单的将xml转化为wbxml文件: 首先下载该文件,解压缩,将你的同名的xml文件替换settings.xml文件,然后直接双节cmd.com文件就可以产生wbxml文件了。同时会有一个log文件产生。 文件夹里包括的库文件有:leaktrack.dll/libexpat.dll/libwbxml2.dll。希望能帮助一些急需要的人。-Xml document as a result of mobile phones should not be identifiable and thus have turned into wbxml files, many people are in the xml file into wbxml distress. This tool can be very simple to wbxml into xml document: First download the file, unzip it to your xml file the same name to replace settings.xml file, and then double cmd.com document directly can produce wbxml file. At the same time there is a log file generated. Folder, including the library file there: leaktrack.dll/libexpat.dll/libwbxml2.dll. Hope that some much-needed help to people.
Platform: | Size: 176128 | Author: sophie | Hits:

[Internet-NetworkUCenterApi

Description: 开发环境vs2005,仅实现了用户注册(uc_user_register)、登录(uc_user_login)和密码修改(uc_user_edit) ,权当抛砖引玉之用 修正了urlencode导致中文用户名乱码问题-Development environment vs2005, only the realization of the user registration (uc_user_register), log (uc_user_login) and password modification (uc_user_edit), when the right to initiate amendments to the urlencode use led to the issue of Chinese user name garbled
Platform: | Size: 25600 | Author: yueyee | Hits:

[JSP/JavaBS_SMS_SDK_V1.7.1215

Description: [SMS SDK V1.7 测试说明] 1)“接口库”为SDK库包其中: Release —— 发布的稳定库 Debug —— 为调试库 2)“演示代码”为测试代码目录。 [1] 测试代码中使用的库都是Release的版本。 [2] 如使用Debug库,需要设置环境变量GSMLIB_DEBUG等于2,则会在C:\下生成GSMModem.log文件。 若您在开发的过程中遇到问题,可以使用此方法获得GSMModem.log并发送给经销商,即可有 效的解决您的问题。 设置环境变量的方法: 我的电脑->属性->高级->环境变量->用户变量和系统变量->新建 变量名: GSMLIB_DEBUG 变量值: 2 3)执行测试: [1] C#/VB/VB6/C++/Delphi 直接找到exe可执行文件,即可运行测试程序; [2] JAVA测试: 可以修改一下test.bat文件,然后直接运行即可了。 需要修改以下内容: set Number=13681191399 接收的手机号码 set SN=ITIU-NWCJ-VCJD-WJDU 注册码 set JAVA_HOME=D:\JBuilder9\jdk1.4 JAVA环境 -JAVA_HOME=D:\JBuilder9\jdk1.4 JAVA环境
Platform: | Size: 6449152 | Author: my name | Hits:

[Windows Developincubating-log4net-1.2.10

Description: Log4net一个很好的线程安全的日志记录工具,它可以提供应用程序运行时的精确环境,可供开发人员尽快找到应用程序中的Bug;一旦在程序中加入了Log 输出代码,程序运行过程中就能生成并输出日志信息而无需人工干预。另外,日志信息可以输出到不同的地方(控制台,文件等)以备以后研究之用。 -a best log tool(thread saft)
Platform: | Size: 8678400 | Author: wangzhengying | Hits:

[OS programgina

Description: Windows登录Gina的Dll库实现-Windows log Gina implementation of the Dll Library
Platform: | Size: 190464 | Author: liu | Hits:

[File OperateLogLib

Description: This source producce a dll that can create date log file to log infrmation when the project is runtime
Platform: | Size: 12288 | Author: Chandana | Hits:

[WEB CodeFrameWork

Description: 其主要的功能就是,进行后台管理模块整合. 1)其可以支持多个应用,多个模块的权限管理. 2)支持Access和MsSql200/2005及Oracle9i以上. 3)采用角色来进行权限的授权,每个用户可以属于多个角色,享有交差权限. 4)整合方便,权限检测采用httpmodule方式检测.基本不用对原有程序进行修改,便可将原有程序进行整合. 5)可视化编辑,全新的Menu和Tab控件.支持拖拉式编辑. 6)统一的事件日志管理,所有登陆操作都有安全记录. 7)每个模块的每个栏目对应一个目录, 栏目的权限默认抽象分为(查看/新增/修改/删除/排序/打印/备用A/备用B),每栏目权限可最多扩展为20个自定义权限. 8)可通过目录中web.config来进行目录文件权限配置,可直接将某个文件名设定到相对应的权限上.-Its main function is to carry out integrated management module background. 1) it can support multiple applications, a number of rights management module. 2) the role of authority to carry out the mandate, each user can belong to more than one role in the enjoyment of rights has done its job. 3) a unified event log management, all landing operations have safety records. 4) Each module of each column corresponds to a directory, the default permissions of the abstract section is divided into (view/add/edit/delete/sort/print/backup A/Stand-B), each column can be a maximum of privileges extended to 20 Since the definition of competence. 5) through the directory web.config file permissions for the directory configuration, can be directly set to a file name corresponding to the permissions on the.
Platform: | Size: 481280 | Author: yepeng | Hits:

[Audio programMP3Gain1124

Description: MP3增益工具,包含了DLL动态库,OCX插件和INI信息文件,方便使用-MP3 Gain tools, contains a DLL dynamic libraries, OCX information plug-ins and INI files, easy to use
Platform: | Size: 1069056 | Author: Tony Liu | Hits:

[File Operatelog

Description: delph下写日志文件的DLL封装,给有需要使用的朋友,记得一定要PCHAR传入哟-delph write the log file under the DLL package to the need to use a friend, remember to PCHAR incoming yo
Platform: | Size: 69632 | Author: 川叶 | Hits:

[OS programLog

Description: 一个功能强大的日志DLL,个人原创,可以很容易输入程序工作日志。-A powerful log DLL, be original, you can easily input program log.
Platform: | Size: 21504 | Author: 阿骆 | Hits:
« 12 3 4 5 »

CodeBus www.codebus.net