首页
社区
课程
招聘
[2.2][2.2][2.2][2.2][2.2]
发表于: 2007-8-30 12:19 6518

[2.2][2.2][2.2][2.2][2.2]

2007-8-30 12:19
6518
// fuckkingsoft.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "windows.h"

int main(int argc, char* argv[])
{
  PostMessage(FindWindow(NULL, "CrackMeApp"), WM_CLOSE, 0, 0);
  
        printf("Hello World!\n");
        return 0;
}

[课程]Linux pwn 探索篇!

上传的附件:
收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
2
// fuckkingsoft.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "windows.h"

int main(int argc, char* argv[])
{
  HWND hWnd = GetWindow(GetDesktopWindow(),GW_CHILD);
  CHAR x[0x200] = { 0 };

  hWnd = GetWindow(hWnd, GW_HWNDFIRST);
  while (hWnd)
  {
    GetWindowTextA(hWnd, x, 0x200);
    if (!stricmp(x, "crackmeapp"))
    {
      SendMessage(hWnd, WM_SYSCOMMAND, SC_CLOSE, 0);
      break;
    }
    hWnd = GetWindow(hWnd, GW_HWNDNEXT);
  }
  
        printf("Hello World!\n");
        return 0;
}
上传的附件:
2007-8-30 12:39
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
3
第三个。运行此vbs就OK

set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.AppActivate "CrackMeApp"
WScript.Sleep 100
WshShell.SendKeys "{ESC}"
2007-8-30 15:09
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
4
唉, 也不想玩了, 胡写10个
上传的附件:
2007-9-2 11:53
0
雪    币: 6075
活跃值: (2236)
能力值: (RANK:1060 )
在线值:
发帖
回帖
粉丝
5
no.11
上传的附件:
2007-9-2 12:00
0
游客
登录 | 注册 方可回帖
返回
//