原创 如何查看backtrack的版本

root@bt:# lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 10.0

原创 Julia分形算法VC++實現

void DrawJulia(float cx,float cy) { initgraph(640,480); //setorigin(getwidth() / 2, getheight() / 2); float zx,zy;

原创 從RtlInitUnicodeString函數彙編代碼理解UnicodeString結構

RtlInitUnicodeString 函數的原型是: <pre name="code" class="cpp">VOID WINAPI RtlInitUnicodeString( _Inout_ PUNICODE_STRING

原创 linux 終端控制輸出

Bash Prompt HOWTO: Prev Chapter 6. ANSI Escape Sequences: Colours and Cursor Movement Next 6.2. Cursor Movement

原创 驅動開發用到的派遣函數序號(wdm.h)

// // Define the major function codes for IRPs. // #define IRP_MJ_CREATE                   0x00 #defin

原创 用vc++實現IFS分形算法畫一棵樹

void IFS() { double a[][8]={ 0,0.195,-0.488 ,0.344 ,0.433 ,0.4431 ,0.2452 ,0.25 ,\ 0,0.462 ,0.414 ,-0.252 ,0.361 ,

原创 vim窗口的一些命令

You can open vim with the names of the two files. :buffers will list the buffers :files will list the

原创 ShadowSocket多用戶配置

config配置文件: [root@vultr shadowsocks-python]# vi config.json { "servev":"0.0.0.0", "local_address":"127.0.0

原创 驅動開發實現修改導入表注入dll

導入表注入dll其實就是給程序的導入表添加一個dll和相應函數,程序在被載入時,系統會自動加載該dll,從而實現dll注入。 我在驅動實現修改導入表的方法就是使用PsSetLoadImageNotifyRoutine函數創建回調,在回調中