2013年10月25日金曜日

攻撃されてる国がわかる地図


デジタルアタックマップ
http://www.digitalattackmap.com/

2013年10月13日日曜日

rsyncを蹴るためのラッパーをwshで書いた

Option Explicit
'shellオブジェクト
Dim objWshShell
Set objWshShell = WScript.CreateObject("WScript.Shell")
'カレントディレクトリ変更
Dim objNetWork
Set objNetWork = WScript.CreateObject("WScript.Network")
Dim CYGHOME
CYGHOME="C:\cygwin\home\" & objNetWork.UserName
objWshShell.CurrentDirectory = CYGHOME
'ダウンロードパスの入力
Dim dir
dir = InputBox("ダウンロードするファイルのパスを入力してください")
If dir = "" Then
WScript.Echo "ファイルパスを入力してください"
WScript.Quit()
End If
'入力されたパスを/home/[USER]/targetdir.txtへ書き込み
Dim objFSO,objOutput
Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set objOutput = objFSO.OpenTextFile("targetdir.txt", ForWriting, True)
dir = Replace(dir,"\","/")
objOutput.WriteLine (dir)
objOutput.Close
Dim result
'dry run
Set result = objWshShell.Exec ("C:\cygwin\bin\bash.exe --login -c '~/rsync.pl -n'")
Do While result.Status = 0
WScript.Sleep 100
Loop
If result.ExitCode <> 0 Then
WScript.Echo "rsyncが異常終了しました" & vbCrLf & result.StdErr.ReadAll()
WScript.Quit()
End If
Dim yesno
yesno = MsgBox (result.StdOut.ReadAll() & vbCrLf & "続行しますか?", 4, "確認")
If yesno <> 6 Then
WScript.Quit()
End If
'run
Set result = objWshShell.Exec ("C:\cygwin\bin\bash.exe --login -c '~/rsync.pl'")
Do While result.Status = 0
WScript.Sleep 100
Loop
If result.ExitCode <> 0 Then
WScript.Echo "rsyncが異常終了しました" & vbCrLf & result.StdErr.ReadAll()
WScript.Quit()
End If
Set objWshShell = Nothing
view raw rsync.vbs hosted with ❤ by GitHub