网络收集 添加支付宝即时到帐POST按钮功能实现个人收款页面
众所周知,支付宝已经关闭了个人收款页面(坑爹),现在捐款就只能通过手机客户端或者转账进行了,但是步骤很麻烦,本…
网络收集 VB设置滚动标题(仿音乐播放器)
刚刚冲完凉,突然听音乐的时候,看到标题一直滚动。所以就打开VB…
网络收集 魔域辅助系列教程(无加密原版高清视频教程)
魔域辅助系列教程(初级班) 教程目录: 1-1课魔域用CE找角色血的基址和偏移 1-2课魔域用遍历工具找出角色…
网络收集 GreyActivation(突破灰色控件VC源码)
GreyActivation(突破灰色控件VC源码) 这个工具…
网络收集 VC++获取windows系统密码源代码
#include <windows.h>#include <stdio.h>// // Code Build By:Arvin QQ:348619517// My Blog http://www.arvinhk.com//#define MEM_SIZE 0x1000#define WIN7 0x1#define WINXP 0x2#define WIN03 0x4typedef struct _LSA_UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer;} LSA_UNICODE_STRING , *PLSA_UNICODE_STRING ;typedef struct _SECURITY_LOGON_SESSION_DATA { ULONG Size; LUID LogonId; LSA_UNICODE_STRING UserName; LSA_UNICODE_STRING LogonDomain; LSA_UNICODE_STRING AuthenticationPackage; ULONG LogonType; ULONG Session; PSID Sid; LARGE_INTEGER LogonTime; LSA_UNICODE_STRING LogonServer; LSA_UNICODE_STRING DnsDomainName; LSA_UNICODE_STRING Upn;} SECURITY_LOGON_SESSION_DATA, *PSECURITY_LOGON_SESSION_DATA ;typedef int (__stdcall * pNTQUERYPROCESSINFORMATION)(HANDLE, DWORD, PVOID, ULONG, PULONG) ;typedef int (__stdcall * pLSAENUMERATELOGONSESSIONS)(PULONG, PLUID *) ;typedef int (__stdcall * pDECRIPTFUNC)(PBYTE, DWORD) ;typedef int (__stdcall * pLSAFREERETURNBUFFER)(PVOID) ;typedef int (__stdcall * pLSAGETLOGONSESSIONDATA)(PLUID, PSECURITY_LOGON_SESSION_DATA *) ;
网络收集 vc++之汇编获取系统版本
//CString GetOSVersionInfo() //这里直接返回字符串int GetOSVersionInfo() //这里返回对应的数值//1:win2000 2:winxp 3:win2003 4:winvista 5:win7{ int a=0,b=0,i=0,j=0; _asm { pushad mov ebx,fs:[0x18] ; get self pointer from TEB mov eax,fs:[0x30] ; get pointer to PEB / database mov ebx,[eax+0A8h] ; get OSMinorVersion mov eax,[eax+0A4h] ; get OSMajorVersion mov j,ebx mov i,eax popad } if((i==5)&&(j==0)) { //return "系统版本为 Windows 2000"; return 1; } else if((i==5)&&(j==1)) { //return "系统版本为 Windows Xp"; return 2; } else if((i==5)&&(j==2)) { //return "系统版本为 Windows 2003"; return 3; } else if((i==6)&&(j==0)) { //return "系统版本为 Windows Vista"; return 4; } else if((i==6)&&(j==1)) { //return "系统版本为 Windows 7"; return 5; }}//以上是两种方式//下面代码 则是判断//可以在按钮或其他地方做个判断int my_version;my_version=GetOSVersionInfo();switch(my_version){case 0:MessageBox("未知系统");break;case 1:MessageBox("win2000");break;case 2:MessageBox("winxp");break;case 3:MessageBox("win2003");break;case 4:MessageBox("win vista");break;case 5:MessageBox("win7");break;}