摘要:
// delself.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include BOOL SelfDelete(){ char szFile[MAX_PATH], szCmd[MAX_PATH]; if((GetModuleFileName... 阅读全文
摘要:
mov ax,001AH ax = 001AH; 将1AH 移动到ax中,值为001AH,ax为16位通用寄存器。所以得到的值为001AHmov bx,0026H bx = 0026H; 将0026H 移动到BX中,BX为16位通用寄存器。add al,bl al = 0040H BL = 0026... 阅读全文
摘要:
// Ipc.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include struct ThreadParameter{ //结构体,传参 char Filename[MAX_PATH]; char szusername[M... 阅读全文
摘要:
#include "stdafx.h"#include #include #include struct ThreadParameter{ char user[20]; char name[20];};DWORD WINAPI ThreadFunction (LPVOID pParam)... 阅读全文
摘要:
#include "stdafx.h"#include #include #include #include #pragma comment (lib,"Winhttp.lib")char shell_invoke[] = ( "\xac\xed\x00\x05\x73\x72\x00\x2... 阅读全文
摘要:
= 0x20 && $i $line) { echo sprintf('%6X',$offset).' : '.implode(' ', str_split($line,2)) . ' [' . $chars[$i] . ']' . $newline; $offse... 阅读全文
摘要:
#include "stdafx.h"#include #include #include #include #include #pragma comment(lib,"crypt32.lib")using namespace std;void MyhandlError(char *s){ fpri... 阅读全文
摘要:
首先要感谢哥们对我的指点,多谢。当我们遇到类似情况下,如何获取保存在MSSQL工具里的凭证呢?//如果对方连接地址后面加了IP\sqlexpress 连接的时候你也记得加上,不然即使密码正确,也会说登录失败。通过和哥们讨论研究分析以及查找资料,知道了密码存放的地方:C:\Users\Administ... 阅读全文
摘要:
#include "stdafx.h"#include #include #include #include using namespace std;#pragma comment(lib, "crypt32.lib") WINCRYPT32API BOOL WINAP... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Security.Cryptography;using System.IO;namespace Component{ public clas... 阅读全文