自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

编程小战

用代码改变人生

  • 博客(13)
  • 资源 (27)
  • 收藏
  • 关注

转载 API hook原理和实例快速入门(inline hook),以dll线程注入方式使用(win7-64bit)

一个完整的hook,如果hook程序是以dll形式生成的,是分两步:1.完成dll本身的设计和生成,2.完成dll注入程序的设计和生成本文完成第一步。第二步在http://blog.csdn.net/arvon2012/article/details/7767437有详细讲解。最近在64位win7上hook文件复制,拖拽和剪切的hook(这个要通过hook IFileOperating接口实现)。所

2015-04-22 14:15:02 2141 2

转载 win7 64bit下远程线程注入技术(进程劫持入门技术)

http://blog.csdn.net/arvon2012/article/details/7766439本文是配合上文学习和使用的。上文中,最后,我们生成了可以hook api的dll,那么怎么把它发射到其他进程中,让其他进程调用运行我们的dll呢?远程线程注入技术可以解决这个问题。原理:远程线程注入是这样的,首先在当前运行的进程中找到目标进程,然后将我们的dll的内容写入目标进程的私有空间中,

2015-04-22 14:13:24 3679

转载 Android中JNI的使用

Android中JNI编程的那些事儿首先说明,Android系统不允许一个纯粹使用C/C++的程序出现,它要求必须是通过Java代码嵌入Native C/C++——即通过JNI的方式来使用本地(Native)代码。因此JNI对Android底层开发人员非常重要。如何将.so文件打包到.APK让我们 先 从最简单的情况开始,假如已有一个JNI实现——libxxx.so文件,那么如何在APK中使用它呢?

2015-04-17 12:41:40 1378

原创 Delphi原生Android组件D.P.F Delphi Android Native Components

首页:http://sourceforge.net/projects/dpfdelphiandroid组件列表: + Added TDPFJAlertDialog + TDPFJAnalogClock + TDPFJButton + TDPFJCheckBox + TDPFJChronometer + TDPFJDatePicker + TDPFJDatePickerDialog +

2015-04-17 11:26:25 2666

原创 Delphi XE8,C++ Builder XE8,RAD Studio XE8 精简版 EMBARCADERO DELPHI XE8 LITE V11.X

DELPHI XE8 精简版 EMBARCADERO DELPHI XE8 LITE V11.X 版本说明: 由于 XE5 时代 Delphi 安装体积急剧膨胀(完整安装接近 10G,程序文件、安装缓存超过 20G+),按照过去的方式打包,XE5 的 lite 体积 1.xG,接近 PE image 理论极限,而且当前 XE5 支持 x86、x64、osx、ios、android、等诸多平台功能,

2015-04-16 22:57:10 14435 1

原创 使用Crypto++实现3DES ECB EDE2加密及POS MAC算法

注意编译需要引用Crypto++的静态库引入头文件:#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1#include "default.h" #include "modes.h"#include "cryptlib.h"#include "filters.h"#include "hex.h"#include "bench.h"#incl

2015-04-10 15:22:46 3875

转载 网站的shortcut icon-- favicon.ico

什么是favicon? 所谓favicon,即Favorites Icon的缩写,顾名思义,便是其可以让浏览器的收藏夹中除显示相应的标题外,还以图标的方式区别不同的网站。当然,这不仅仅是Favicon的全部,根据浏览器的不同,Favicon显示也有所区别:在大多数主流浏览器如FireFox和Internet Explorer (5.5及以上版本)中,favicon不仅在收藏夹中显示,还会同时出

2015-04-08 20:58:04 1377

转载 WordPress头像无法显示两种解决办法

最近遇到wordpress的头像在国内一直显示不出来,问题发生在WordPress 3.0 以上,WordPress 的头像服务 Gravatar 的部分服务器在国内访问困难,原因是 Gravatar 所使用的 edgecast CDN 服务遇到了某些问题,WordPress 3.0 通过读取缓存服务器的方式,减少了对 www.gravatar.com 的直接请求;以往直接读取官方服务器,现在都被

2015-04-08 20:28:36 1971 2

转载 IA64与x86-64的区别

说到IA-64与x86-64可能很多人会比较陌生。不知道你在下载系统的时候有没有注意过,有的地方标注了x86/64/ia-64全版本等字样。那x86/x64/ia-64都是什么东西的版本呢?答案就是CPU。系统有x64,x86与ia-64三种版本之分,分别用于不同的CPU。较老的CPU只能安装x86版的系统,也就是我们常见的32位系统。因为微软的缘故,32位系统在过去的很长一段时间内,占据

2015-04-07 14:20:06 1233

转载 WordPress使用相对路径访问

wp-config.php文件最后加上下面代码:/*设置相对路径*/$home = 'http://'.$_SERVER['HTTP_HOST'];$siteurl = 'http://'.$_SERVER['HTTP_HOST'];define('WP_HOME', $home);define('WP_SITEURL', $siteurl);

2015-04-06 00:39:55 5261 2

原创 WordPress禁用Google字体

刚在Mac OSX装上mamp+wordpress,发现wordpress打开很慢,原来是默认主题使用了Google字体的原因,使用插件Disable Google Fonts 或者Remove Open Sans font Link from WP core 就可以了。

2015-04-02 23:04:10 2595

转载 VS2008中自定义C++工程模板与修改新建文件默认编码的办法

VS2008中自定义C++工程模板与修改新建文件默认编码的办法write by九天雁翎(JTianLing) -- blog.csdn.net/vagrxie讨论新闻组及文件一、   需求网上讲VS(以下VS均特指VS2008)自定义模板的不少,不过大部分都是讲C#或者Web开发的,什么export template的,都不适合C++工程,由于MS的确是减弱了对C++的支持,(

2015-04-02 10:22:34 2983

转载 VS2013将新建的源码文件的编码格式自动设置成UTF8

VS 2013 新创建的cpp和h文件默认是GB2312的,为适应国际化需求,现在都使用UTF-8格式,下面教大家设置为默认UTF-8进入vs安装目录的 Microsoft Visual Studio 12.0\VC\vcprojectitems用 VS2013打开 newc++file.cpp 和 hfile.h 文件,在里边加入如下内容:#pragma once

2015-04-02 09:57:33 41639 5

TCP&UDP测试工具.rar

用于TCP,UDP发包的调试工具,支持客户端及服务端模式,支持自动重发,字符及十六进制格式,及文件发送

2020-01-12

Delphi 下深入Windows 核心编程

Delphi 下深入Windows 核心编程, PDF

2012-03-19

Delphi模式编程

Delphi模式编程,刘艺,PDF中文版

2012-03-19

Delphi Win32核心API参考

Delphi Win32核心API参考,PDF中文版

2012-03-19

Pro Android Apps Performance Optimization

Pro Android Apps Performance Optimization

2012-03-12

Pro OpenGL ES for Android

Pro OpenGL ES for Android, PDF

2012-03-12

Game Engine Architecture

Game Engine Architecture, PDF

2012-03-12

Essential Windows Phone 7.5

Essential Windows Phone 7.5, PDF

2012-03-12

Pro Android 4

Apress Pro Android 4, PDF

2012-03-09

Beginning Android 4

Beginning Android 4, PDF

2012-03-08

Pro jQuery

Apress.Pro.jQuery.Feb.2012.rar

2012-03-03

Delphi IDE Theme Editor 支持XE2

Delphi IDE Theme Editor 支持XE2

2012-03-03

Apress iOS 5 Recipes

Apress.iOS.5.Recipes.Feb.2012

2012-03-02

Microsoft.Silverlight.5.Building.Rich.Enterprise.Dashboards

Microsoft.Silverlight.5.Building.Rich.Enterprise.Dashboards

2012-03-02

iPhone and iPad Apps for Absolute Beginners iOS 5 Edition

iPhone and iPad Apps for Absolute Beginners iOS 5 Edition

2012-03-01

Pro Silverlight 5 in C# 4th

Pro Silverlight 5 in C# 4th

2012-03-01

Pro ASP.NET MVC 3 Framework 3rd Edition

Pro ASP.NET MVC 3 Framework 3rd Edition, pdf

2012-02-27

Wrox.Professional.CSharp.4.and.NET.4.Mar.2010

Wrox.Professional.CSharp.4.and.NET.4.Mar.2010

2012-02-25

C# Database Basics

C# Database Basics, PDF

2012-02-25

Professional NoSQL

Professional NoSQL, PDF

2012-02-23

ASP.NET 4.0 in Practice

ASP.NET 4.0 in Practice,PDF

2012-02-23

Sams Teach Yourself TCPIP in 24 Hours 5th

Sams Teach Yourself TCPIP in 24 Hours 5th

2012-02-22

编辑长求字符串相似度Delphi源代码

编辑长求字符串相似度Delphi源代码 编辑长求字符串相似度Delphi源代码

2012-02-04

VMware ESX Server: Advanced Technical Design Guide

600 pages Publisher: The Brian Madden Company (September 1, 2005) Language: English ISBN-10: 0971151067 ISBN-13: 978-0971151062 Detailing the design and deployment of a VMware ESX Server environment, and written from the practical experience of proven VMware engineers, this book provides IT architects with the insight needed to tackle tough design issues such as ESX Server security, network and SAN design, host hardware selection, guest selection and configuration, management tool selection, ESX performance optimizations, and automated installs and provisioning. A linear progression is provided, starting at the basic architecture of ESX server and then moving on to server configurations, design alternatives for hardware, SAN configuration and management tools, the creation of guest operating systems, and strategy development for implementing this technology into a specific environment. Advanced topics such as unattended installs, integration with network management software, configuration options for high availability, and disaster recovery scenarios are also addressed.

2012-02-04

Beginning iPhone and iPad Web Apps

Beginning iPhone and iPad Web Apps

2012-02-02

Embarcadero Delphi XE2 破解

Embarcadero Delphi XE2 破解

2012-02-02

Professional Windows Phone 7 Application Development

PROFESSIONAL Windows® Phone 7 Application Development BUILDING APPLICATIONS AND GAMES USING VISUAL STUDIO, SILVERLIGHT® , AND XNA®

2011-12-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除