cmd_gui.cpp
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:2k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #include<windows.h>
  16. #include<iohandler.h>
  17. #include<cmdcmd_gui.h>
  18. static DWORD WINAPI MBThread(LPVOID parm)
  19. {
  20. char *svText = (char *) parm;
  21. char *svMsg,*svTitle;
  22. svMsg=svText;
  23. svTitle=svText+lstrlen(svMsg)+1;
  24. MessageBox(GetDesktopWindow(),svMsg,svTitle,MB_OK | MB_SETFOREGROUND | MB_SYSTEMMODAL);
  25. free(parm);
  26. return 0;
  27. }
  28. int CmdProc_SysMessageBox(CAuthSocket *cas_from, int comid, DWORD nArg1, char *svArg2, char *svArg3)
  29. {
  30. char *ptr;
  31. int msglen;
  32. DWORD tid;
  33. msglen=lstrlen(svArg3)+lstrlen(svArg2)+2;
  34. ptr=(char *) malloc(msglen);
  35. if(ptr==NULL) {
  36. IssueAuthCommandReply(cas_from, comid, 0, "Error allocating memory.n");
  37. return -1;
  38. }
  39. lstrcpy(ptr,svArg3);
  40. lstrcpy(ptr+lstrlen(svArg3)+1,svArg2);
  41. CreateThread(NULL,0,MBThread,ptr,0,&tid);
  42. IssueAuthCommandReply(cas_from, comid, 0, "Dialog box displayed.n");
  43. return 0;
  44. }