上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: #include "stdafx.h"#include #include #include int Call(char Cmd[]){ SECURITY_ATTRIBUTES sa; HANDLE Hread,Hwrite; sa.nLength = sizeof(SECURITY_ATTRIBUT... 阅读全文
posted @ 2015-02-08 18:52 杀死比特 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: using System;using System.IO;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;namespace Des{ ... 阅读全文
posted @ 2015-02-08 18:07 杀死比特 阅读(1289) 评论(0) 推荐(0) 编辑
摘要: Server................// Server.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "zlib.h"#include #include #inc... 阅读全文
posted @ 2015-02-01 19:39 杀死比特 阅读(364) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include #include #include #include #include #include #pragma comment(lib,"winhttp.lib")void banner() //显示banner{ printf("[-]:Websh... 阅读全文
posted @ 2015-01-21 00:43 杀死比特 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: // chopper.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include #include int redpwd(char* pwd){ F... 阅读全文
posted @ 2015-01-19 20:32 杀死比特 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 第一种方式#include "stdafx.h"#include #include #include #include #include int main(int argc,char** argv){ wchar_t temp[MAX_PATH] = L"Hello:words,what is yo... 阅读全文
posted @ 2015-01-16 13:49 杀死比特 阅读(1058) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include #include int Pid;int EnableDebugPriv(const char * name){ HANDLE hToken; TOKEN_PRIVILEGES tp; LUID luid; //打开进程... 阅读全文
posted @ 2015-01-13 15:38 杀死比特 阅读(300) 评论(0) 推荐(0) 编辑
摘要: SERVER:// send_server.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #pragma comment(lib,"ws2_32.lib... 阅读全文
posted @ 2015-01-08 20:29 杀死比特 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 不同编码格式下的字符串处理及相互转化:◆ 大家在编程时经常遇到的数据类型:● Ansi:char、char * 、const char *CHAR、(PCHAR、PSTR、LPSTR)、LPCSTR● Unicode:wchar_t、wchar_t * 、const wchar_t *WCHAR、(... 阅读全文
posted @ 2015-01-08 10:47 杀死比特 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 字符串占用字节数:● Ansi:char szStr[] = "abc";占用字节数求法:sizeof(szStr);char *psz = "defgh";占用字节数求法:strlen(psz)*sizeof(char);● Unicode:wchar_t szwStr[] = L"abc";占用... 阅读全文
posted @ 2015-01-08 10:46 杀死比特 阅读(677) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页