CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 内存 加载

搜索资源列表

  1. load_user_list

    0下载:
  2. * load_user_list * 模型: 把users表加载到内存 * 命令行编译 gcc load_user_list.c -L D:\c\lib\ -lmysql -llibmysql * 五千多行的东西,从读取到保存文件,只需一瞬间 * mysql_options(&mysql,MYSQL_SET_CHARSET_NAME,"utf8") * 这句要加在mysql_real_connect之前 * * Arcadia 20
  3. 所属分类:MySQL

    • 发布日期:2017-11-16
    • 文件大小:1804
    • 提供者:bapeccw
  1. remote-inject

    1下载:
  2. 远程线程注入木马c++代码。远程线程插入(注入)技术指的是通过在另一个进程中创建远程线程的方法进入目标进程的内存地址空间。将木马程序以DLL的形式实现后,需要使用插入到目标进程中的远程线程将该木马DLL插入到目标进程的地址空间,即利用该线程通过调用Windows API LoadLibrary函数来加载木马DLL,从而实现木马对系统的侵害。 -Remote thread injecting Trojan c++ code. Remote thread injection ( injectio
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-14
    • 文件大小:45927
    • 提供者:陈嘉
  1. dllzhuru

    0下载:
  2. DLL的远程注入技术 - DLL的远程注入技术是目前Win32病毒广泛使用的一种技术。使用这种技术的病毒体通常位于一个DLL中,在系统启动的时候,一个EXE程序会将这个DLL加载至某些系统进程(如Explorer.exe)中运行。这样一来,普通的进程管理器就很难发现这种病毒了,而且即使发现了也很难清除,因为只要病毒寄生的进程不终止运行,那么这个DLL就不会在内存中卸载,用户也就无法在资源管理器中删除这个DLL文件,真可谓一箭双雕哉。 -The remote DLL injection tec
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-18
    • 文件大小:45098
    • 提供者:刘洋
  1. sharedatawithmultip

    0下载:
  2. 对于同一个进程,多次加载时,会创建其多个实例,如第一个实例A的进程地址空间(4GB),第二个实例B的进程地址空间(4GB),每个进程实例的地址空间中都有多个代码页面和 多个数据页面, 首次A加载时,它们会被映射到虚拟内存中,当出出数据页面被修改时,系统会首先截获,接着为应用程序A试图写入的内存页面分配一块新的内存,然后复制页面内容,最后让应用程序写入刚分配的内存块.此时,应用程序A的数据页面已经指向的新的地方.这里主要运用了页面的写时复制特性. -For the same proc
  3. 所属分类:Communication

    • 发布日期:2017-12-03
    • 文件大小:2882215
    • 提供者:kk
  1. DodoWaterFall

    0下载:
  2. 瀑布流仿蘑菇街的简单实现异步加载图片解决内存溢出问题-Simple implementation of the waterfall flow imitation mushrooms Street asynchronous load images to solve memory overflow problem
  3. 所属分类:android

    • 发布日期:2017-11-15
    • 文件大小:18746
    • 提供者:尤权
  1. chmkit

    0下载:
  2. 彻底解决delphi加载chm文件的文件,有了它你就可以直接从内存中或者从资源中加载chm文件。- This Kit contains two Delphi Units to give you access to the HTML Help API via Delphi 3 or 4. o HH.PAS ........ Constants and interface to MS Html Help API.
  3. 所属分类:Delphi VCL

    • 发布日期:2017-11-20
    • 文件大小:45605
    • 提供者:李枫
  1. Drive-memory

    0下载:
  2. 加载驱动后利用驱动通信直接读写指定内存!让你过掉游戏内存读写保护!-Load the driver driven communication directly read and write to the specified memory! You had lost the game memory read and write protection!
  3. 所属分类:ELanguage

    • 发布日期:2017-11-27
    • 文件大小:13419
    • 提供者:李雷雷
  1. Memory-Load-DLL

    0下载:
  2. Windows平台提供的加载library的API(LoadLibarary, LoadLibraryEx)只能加载文件系统中的Library. 没有体哦那个从内存中加载Dll的功能。但是,有些情况下又需要这样的功能。譬如,你不想在发布包中包含很多文件,又或者你想给那些逆向工作者一些苦头吃。这时一个常见的做法是先把dll文件写到一个临时文件中,然后从临时文件中导入它。当程序终止时把临时文件删除。-The Windows platform load library the API (LoadLib
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-08
    • 文件大小:21694
    • 提供者:鸟人
  1. RemoteThreadDll

    0下载:
  2. DLL注入之远线程方式 每个进程都有自己的虚拟地址空间,对32位进程来说,这个地址空间的大小为4GB。因为每个进程都有自己专有的地址空间,当进程的各个线程运行的时候,它们只能够访问属于自己进程的内存。这样做的一个好处是维护系统的安全,防止进程的私有空间被入侵。世界上有了矛就有了盾,windows也撕开了一个小口,提供了一些函数来让其它进程对另一个进程进行操作,当然亦邪亦正,全在于你。大名鼎鼎的CreateRemoteThread就是属于这样的函数。 远线程注入的基本原理就是通过在另一个
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-06
    • 文件大小:3013851
    • 提供者:ljh
  1. 20121008

    0下载:
  2. 双缓冲画图,位图加载已经内存读取,dc,crect的创建-Double-buffered drawing, bitmap loaded memory read, dc, CRect create
  3. 所属分类:GUI Develop

    • 发布日期:2017-12-10
    • 文件大小:9246051
    • 提供者:马军辉
  1. XListView-Android-master

    0下载:
  2. 分页加载,上拉和下拉刷行,listview内存优化-The paging loaded, pull-up and pull-down brush line
  3. 所属分类:android

    • 发布日期:2017-11-01
    • 文件大小:487940
    • 提供者:张志强
  1. linuxtiaoshi

    0下载:
  2. Linux下检测应用程序的内存管理问题:泄漏,越界、未初始化等等 可以检查程序运行时的内存泄漏问题 不需要和被测试软件一起编译,但要用valgrind加载被调试的程序 -Linux is detected the application' s memory management problems: leaks, cross-border, so you can check the program uninitialized runtime memory leak problem
  3. 所属分类:Other systems

    • 发布日期:2017-11-18
    • 文件大小:4710
    • 提供者:cqj
  1. ModuleRun

    0下载:
  2. 运行程序脱离文件映射困扰,程序运行后可对程序做任意操作,包括删除程序,内存中保留代码. 用rundll32.exe加载dll,然后在dll中重新加载自身并FreeLibrary原先加载的那份脱离隐射-Run the program from the file mapping problems, after running the program can do any action, including the deletion of the program, the memory reser
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-23
    • 文件大小:79726
    • 提供者:jha334201553
  1. HideDll.RAR

    0下载:
  2. DLL加载后,释放,驻留内存中,继续可以使用-DLL loading, release, resident in memory and continue to be used
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-10
    • 文件大小:784522
    • 提供者:lukarl
  1. AystnPicture

    0下载:
  2. 一个异步加载图片的例子,演示怎样异步加载图片,防止内存溢出-An asynchronous load images examples demonstrate how to load images asynchronously to prevent memory overflow
  3. 所属分类:android

    • 发布日期:2017-11-18
    • 文件大小:52508
    • 提供者:wangyongli
  1. WaterfallDemo

    0下载:
  2. 实现瀑布流形似并异步加载图片及对内存的控制。-Waterfall stream to achieve the shape and asynchronous load images and the memory control.
  3. 所属分类:Picture Viewer

    • 发布日期:2017-04-06
    • 文件大小:54256
    • 提供者:骆一一
  1. TopTenWords

    0下载:
  2. 在大数据文件中,找出现次数前十的单词。这个文件不能一次加载如内存,其中用到了自己写的快排函数。-In a large data file, find the top ten the number of occurrences of the word. This file can not be loaded once, such as memory, which uses a fast row to write their own functions.
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:696314
    • 提供者:邓俊兴
  1. led

    0下载:
  2. OK6410的led裸机程序 注:烧写bootloader 的目的是让开发板上电时对PLL,DDR RAM 进行初始化。以便把程序加 载到内存中进行调-Note: The purpose is to allow programming the bootloader development board is powered on PLL, DDR RAM is initialized. So that the program is loaded into memory for tone
  3. 所属分类:ARM-PowerPC-ColdFire-MIPS

    • 发布日期:2017-04-16
    • 文件大小:144788
    • 提供者:zxl
  1. vsFakeLeakTest

    0下载:
  2. 使用vc开发mfc程序时,在调用了win32 dll(即不使用mfc的dll)时,mfc90.dll后于win32dll加载,在退出程序时mfc90.dll先释放,这时它会将win32dll中的全局变量,函数static变量视为内存泄露,而实际上随后win32dll卸载时会正常释放,导致内存泄露误报。 本程序演示了win32dll中的std::string的全局变量和函数内static变量的内存泄露误报-Using vc development mfc program, the call t
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:163202
    • 提供者:nwao
  1. VBmemory

    0下载:
  2. vb读写内存,可以改了做外挂,其实VB也是可以做外挂的(无DLL,VB加载.sys文件)-Vb to read and write memory, can be changed to do plugins, vb is actually can do plugins (No DLL,VB Loading Sys)
  3. 所属分类:Editor

    • 发布日期:2017-04-02
    • 文件大小:10211
    • 提供者:曹云皓
« 1 2 ... 4 5 6 7 8 910 11 12 »
搜珍网 www.dssz.com