001.
<JOB>
002.
<SCRIPT language=
"VBScript"
>
003.
004.
005.
006.
Set
objHTTP = Wscript.CreateObject(
"Msxml2.ServerXMLHTTP"
)
007.
lResolve = 60 * 1000
008.
lConnect = 60 * 1000
009.
lSend = 60 * 1000
010.
lReceive = 60 * 1000
011.
012.
013.
014.
015.
Set
Stream = Wscript.CreateObject(
"ADODB.Stream"
)
016.
Set
Stream2 = Wscript.CreateObject(
"ADODB.Stream"
)
017.
018.
019.
020.
Set
StreamBin = Wscript.CreateObject(
"ADODB.Stream"
)
021.
022.
023.
024.
Set
Fs = CreateObject(
"Scripting.FileSystemObject"
)
025.
026.
027.
028.
Set
regEx =
New
RegExp
029.
030.
Wscript.Echo
"開始します。しばらくお待ち下さい"
031.
032.
033.
Call
objHTTP.Open(
"GET"
,
"https://ssl.seesaa.jp/auth"
,
False
)
034.
Call
objHTTP.setTimeouts(lResolve, lConnect, lSend, lReceive)
035.
Call
objHTTP.Send()
036.
037.
038.
strPage = objHTTP.responseText
039.
040.
041.
regEx.IgnoreCase =
True
042.
regEx.Global =
True
043.
regEx.Pattern =
"authpost"
"><input value="
"([^"
"]+)"
""
044.
Set
Matches = regEx.Execute( strPage )
045.
For
Each
Match in Matches
046.
strPostKey = Match.SubMatches(0)
047.
Exit
For
048.
Next
049.
050.
051.
052.
053.
054.
055.
emailData = Wscript.Arguments(0)
056.
057.
passData = Wscript.Arguments(1)
058.
059.
blogData = Wscript.Arguments(2)
060.
061.
062.
063.
064.
065.
Call
objHTTP.Open(
"POST"
,
"https://ssl.seesaa.jp/auth"
,
False
)
066.
067.
Call
objHTTP.setRequestHeader(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
068.
strData =
""
069.
strData = strData &
"aXt="
& strPostKey
070.
strData = strData &
"&email="
& emailData
071.
strData = strData &
"&password="
& passData
072.
strData = strData &
"&return_to=http%3A%2F%2Fblog.seesaa.jp%2F"
073.
Call
objHTTP.SetRequestHeader(
"Content-Length"
,Len(strData))
074.
Call
objHTTP.Send(strData)
075.
076.
077.
078.
079.
080.
081.
082.
Call
objHTTP.Open(
"GET"
,
"http://blog.seesaa.jp/cms/home/switch?blog_id="
&blogData&
"&goto=/cms/article/regist/input"
,
False
)
083.
Call
objHTTP.setTimeouts(lResolve, lConnect, lSend, lReceive)
084.
Call
objHTTP.Send()
085.
086.
087.
088.
089.
090.
091.
092.
093.
094.
095.
Call
objHTTP.Open(
"GET"
,
"http://blog.seesaa.jp/cms/ignore_words/regist/input"
,
False
)
096.
Call
objHTTP.setTimeouts(lResolve, lConnect, lSend, lReceive)
097.
Call
objHTTP.Send()
098.
099.
100.
strPage = objHTTP.responseText
101.
regEx.Pattern =
"method="
"POST"
"><input value="
"([^"
"]+)"
""
102.
Set
Matches = regEx.Execute( strPage )
103.
For
Each
Match in Matches
104.
strPostKey = Match.SubMatches(0)
105.
Exit
For
106.
Next
107.
108.
Wscript.Sleep(2000)
109.
110.
111.
112.
113.
Set
InObj = Fs.OpenTextFile(
"禁止WORD.txt"
, 1 )
114.
115.
nCnt = 0
116.
strData =
"aXt="
& strPostKey
117.
Do
While
not InObj.AtEndOfStream
118.
Buffer = InObj.ReadLine
119.
nCnt = nCnt + 1
120.
121.
if strData <>
""
then
122.
strData = strData &
"&"
123.
end if
124.
125.
strData = strData &
"ignore_words="
& URLEncode( Buffer )
126.
127.
if nCnt = 5 then
128.
129.
Call
objHTTP.Open(
"POST"
,
"http://blog.seesaa.jp/cms/ignore_words/regist/input"
,
False
)
130.
Call
objHTTP.setRequestHeader(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
131.
Call
objHTTP.SetRequestHeader(
"Content-Length"
,Len(strData))
132.
Call
objHTTP.Send(strData)
133.
nCnt = 0
134.
strData =
"aXt="
& strPostKey
135.
Wscript.Sleep(2000)
136.
end if
137.
Loop
138.
139.
if nCnt <> 0 then
140.
Call
objHTTP.Open(
"POST"
,
"http://blog.seesaa.jp/cms/ignore_words/regist/input"
,
False
)
141.
Call
objHTTP.setRequestHeader(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
142.
Call
objHTTP.SetRequestHeader(
"Content-Length"
,Len(strData))
143.
Call
objHTTP.Send(strData)
144.
end if
145.
146.
InObj.Close
147.
148.
Wscript.Echo
"終了しました"
149.
150.
151.
152.
153.
154.
Function
URLEncode(str)
155.
156.
Stream.Open
157.
Stream.Charset =
"shift_jis"
158.
159.
Stream.WriteText str
160.
161.
Stream.Position = 0
162.
163.
Stream2.Open
164.
Stream2.Charset =
"utf-8"
165.
166.
Stream.CopyTo Stream2
167.
Stream.Close
168.
169.
170.
Stream2.Position = 0
171.
172.
173.
StreamBin.Open
174.
StreamBin.Type = 1
175.
176.
177.
Stream2.CopyTo StreamBin
178.
Stream2.Close
179.
180.
181.
StreamBin.Position = 0
182.
183.
Buffer =
""
184.
185.
StreamBin.Read(3)
186.
Do
while not StreamBin.EOS
187.
LineBuffer = StreamBin.Read(16)
188.
189.
For
i = 1 to LenB( LineBuffer )
190.
CWork = MidB(LineBuffer,i,1)
191.
Cwork = AscB(Cwork)
192.
Cwork = Hex(Cwork)
193.
Cwork = Ucase(Cwork)
194.
if Len(Cwork) = 1 then
195.
Buffer = Buffer &
"%0"
& Cwork
196.
else
197.
Buffer = Buffer &
"%"
& Cwork
198.
end if
199.
Next
200.
201.
Loop
202.
203.
StreamBin.Close
204.
205.
URLEncode = Buffer
206.
207.
End
Function
208.
</SCRIPT>
209.
</JOB>