2009년 2월 2일 월요일

원격지원용 Helper 프로그램 만들기 - 레지스트리 파일 없이 사용할 경우

UO에서 y9ht7o33님이 작성했던 소스를 일부 수정해 보았음..
주의!!! 본 프로그램 사용에 의한 책임은 사용자에게 있습니다.....(책임회피인가 ㅡ_ㅢ;;)

#RequireAdmin
#NoTrayIcon
#include <Inet.au3>
#include <Date.au3>
#include<file.au3>

DirCreate(@TempDir & "\vnc")
InetGet("WinVNC.exe 파일의 네트워크 경로", @TempDir & "\vnc\WinVNC.exe")
InetGet("VNCHOOKS.DLL 파일의 네트워크 경로", @TempDir & "\vnc\vnchooks.dll")

MsgBox(0, "원격 지원 환경 설정", "안전한 진행을 위해 일시적으로 사용자의 입력을 제한합니다.", 10)
test.au3
test.au3RegDelete("HKEY_USERS\S-1-5-21-1659004503-839522115-2144349224-1005\Software\ORL\WinVNC3")
Run(@TempDir & "\vnc\WinVNC.exe")

BlockInput(1)

If WinWait("파일 열기 - 보안 경고" ,"",5) Then Send("!N")

if WinWait("TightVNC Server: Current User Properties", "Incoming connections") Then
    ControlSetText("TightVNC Server: Current User Properties", "Incoming connections", "Edit4", "12345")
    ControlSetText("TightVNC Server: Current User Properties", "Incoming connections", "Edit5", "12345")
    ControlClick("TightVNC Server: Current User Properties", "Incoming connections", "Button55")
EndIf

BlockInput(0)


MsgBox(0, "원격 지원 환경 설정", "사용자 입력 제한이 해제되었습니다.", 10)

FileWriteLine(@TempDir&"\vnc.bat", 'ipconfig /all > ' & @TempDir & '\ipconfig.txt')
Run(@TempDir & "\vnc.bat", "", @SW_HIDE)
ProcessWait("cmd.exe")
FileDelete(@TempDir&"\vnc.bat")

$IPAddress = ''

while 1
    $read = fileread(@TempDir&"\ipconfig.txt")
    $stmp = StringSplit($read, @LF)
   
   
    for $i = 1 to $stmp[0]
        if StringInStr($stmp[$i], 'IP Address') > 0 Then
            $tmp = StringSplit($stmp[$i], ':')
            $IPAddress = $tmp[$tmp[0]]
            ExitLoop
        EndIf
    Next
   
    If $IPAddress <> '' Then
        ExitLoop
    EndIf
WEnd

FileDelete(@TempDir&'\ipconfig.txt')
   
Global $oMyError = ObjEvent("AutoIt.Error", "MyErrFunc")


$PublicIP = _GetIP()


$Date = (@YEAR & "/" & @MON & "/" & @MDAY & "  " & @HOUR & ":" & @MIN)

$s_SmtpServer = "smtp.gmail.com"
$s_FromName = @UserName
$s_FromAddress = "보낸메일주소"
$s_ToAddress = "받는메일주소"
$s_Subject = @ComputerName & '-' & @UserName & ': ' & $IPAddress

$s_AttachFiles = ""
$s_CcAddress = ""
$s_BccAddress = ""
$as_Body = $Date
$s_Username = "메일아이디"
$s_Password = "메일비밀번호"
$IPPort = 465
$ssl = 1


Global $oMyRet[2]
Global $oMyError = ObjEvent("AutoIt.Error", "MyErrFunc")
$rc = _INetSmtpMailCom($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject, $as_Body,$s_AttachFiles, $s_CcAddress, $s_BccAddress, $s_Username, $s_Password, $IPPort, $ssl)
If @error Then

    MsgBox(0, "Error sending message", "Error code:" & @error & "  Description:" & $rc)
EndIf

ProcessWaitClose("WinVNC.exe")
DirRemove(@TempDir & '\vnc', 1)
RegDelete("HKEY_USERS\S-1-5-21-1659004503-839522115-2144349224-1005\Software\ORL\WinVNC3")

Exit


Func _INetSmtpMailCom($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject = "", $as_Body = "",$s_AttachFiles = "", $s_CcAddress = "", $s_BccAddress = "", $s_Username = "", $s_Password = "", $IPPort = 25,$ssl = 0)
    $objEmail = ObjCreate("CDO.Message")
    $objEmail.From = '"' & $s_FromName & '" <' & $s_FromAddress & '>'
    $objEmail.To = $s_ToAddress
    Local $i_Error = 0
    Local $i_Error_desciption = ""
    If $s_CcAddress <> "" Then $objEmail.Cc = $s_CcAddress
    If $s_BccAddress <> "" Then $objEmail.Bcc = $s_BccAddress
    $objEmail.Subject = $s_Subject
    If StringInStr($as_Body, "<") And StringInStr($as_Body, ">") Then
        $objEmail.HTMLBody = $as_Body
    Else
        $objEmail.Textbody = $as_Body & @CRLF
    EndIf
    If $s_AttachFiles <> "" Then
        Local $S_Files2Attach = StringSplit($s_AttachFiles, ";")
        For $x = 1 To $S_Files2Attach[0]
            $S_Files2Attach[$x] = _PathFull($S_Files2Attach[$x])
            If FileExists($S_Files2Attach[$x]) Then
                $objEmail.AddAttachment($S_Files2Attach[$x])
            Else
                $i_Error_desciption = $i_Error_desciption & @LF & 'File not found to attach: ' &$S_Files2Attach[$x]
                SetError(1)
                Return 0
            EndIf
        Next
    EndIf
    $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") =$s_SmtpServer
    $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") =$IPPort

    If $s_Username <> "" Then
        $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") =1
        $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") =$s_Username
        $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") =$s_Password
    EndIf
    If $ssl Then
        $objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
    EndIf

    $objEmail.Configuration.Fields.Update

    $objEmail.Send
    If @error Then
        SetError(2)
        Return $oMyRet[1]
    EndIf
EndFunc   ;==>_INetSmtpMailCom



Func MyErrFunc()
    $HexNumber = Hex($oMyError.number, 8)
    $oMyRet[0] = $HexNumber
    $oMyRet[1] = StringStripWS($oMyError.description, 3)
    ConsoleWrite("### COM Error !  Number: " & $HexNumber & "   ScriptLine: " & $oMyError.scriptline & "   Description:" & $oMyRet[1] & @LF)
    SetError(1)
    Return
EndFunc   ;==>MyErrFunc



---- Cut Here 2009.02.01--------------------------
BlockInput()함수에 의한 키입력 오류로 빠질 수 있는 위험을 좀더 줄여 보려고 아래와 같이 일부 코드를 개선해 봅니다.

#CS 부터 #CE까지가 본래의 소스입니다.

test.au3#CS-----------------------------------
BlockInput(1)

RegDelete("HKEY_USERS\S-1-5-21-1659004503-839522115-2144349224-1005\Software\ORL\WinVNC3")
Run(@TempDir & "\vnc\WinVNC.exe")

If WinWait("파일 열기 - 보안 경고" ,"",5) Then Send("!N")

WinWait("TightVNC Server: Current User Properties", "Incoming connections")

if not WinActive("TightVNC Server: Current User Properties", "Incoming connections") Then
    WinWaitActive("TightVNC Server: Current User Properties", "Incoming connections")
EndIf

WinWaitActive("TightVNC Server: Current User Properties", "Incoming connections")
send("VNC비밀번호")
send("{TAB}")
send("VNC비밀번호")
Send("!O")

BlockInput(0)
#CE-----------------------------------

RegDelete("HKEY_USERS\S-1-5-21-1659004503-839522115-2144349224-1005\Software\ORL\WinVNC3")
Run(@TempDir & "\vnc\WinVNC.exe")

If WinWait("파일 열기 - 보안 경고" ,"",3) Then
    BlockInput(1)
    Send("!N")
    BlockInput(0)
EndIf

if WinWait("TightVNC Server: Current User Properties", "Incoming connections", 2) then

    BlockInput(1)
    send("VNC비밀번호{TAB}VNC비밀번호")
    Send("!O")
    BlockInput(0)
EndIf


---- Cut Here 2009.02.02--------------------------
수정하고 보니... BlockInput()함수의 의미가 너무 약해집니다.
첫번째 WinWait()함수에 제한시간이 없다면 관계없겠지만..
진심으로 클릭 한 번만하면 되는 것을 바라는 것이라 딜레이가 의미를 퇴색시키는 군요..
원점으로 돌리면서 Send()함수 대신 좀더 안정적으로 사용하고자 ControlClick()과 ControlSetText()로 변경해 봅니다.

수정한 내용은 아래와 같습니다.

test.au3RegDelete("HKEY_USERS\S-1-5-21-1659004503-839522115-2144349224-1005\Software\ORL\WinVNC3")
Run(@TempDir & "\vnc\WinVNC.exe")

BlockInput(1)

If WinWait("파일 열기 - 보안 경고" ,"",5) Then Send("!N")

if WinWait("TightVNC Server: Current User Properties", "Incoming connections") Then
    ControlSetText("TightVNC Server: Current User Properties", "Incoming connections", "Edit4", "12345")
    ControlSetText("TightVNC Server: Current User Properties", "Incoming connections", "Edit5", "12345")
    ControlClick("TightVNC Server: Current User Properties", "Incoming connections", "Button55")
EndIf

BlockInput(0)

댓글 2개:

  1. 잘못하면 강제종료해야겠군요..ㅋㅋ

    답글삭제
  2. @Jelly君 - 2009/02/01 21:25
    좀 위험한 방법이긴 하죠 ^^



    [blue]WinWait()[/blue]함수만 좀 잘 손대주면 그리 위험하지는 않을 거에요 ^^;

    글구 [b]Ctrl + Alt + Del[/b] 눌러주면 마우스 키보드 사용 가능해 집니다 ^^

    답글삭제