|
|
Em đã xem qua OllyDbg mà chả hiểu gì hết. Mấy sư huynh có chương trình gì khác dễ hiểu hơn ko, hoặc ai đó bít về Ollydbg thì chỉ em nha, plz
|
|
|
Em chưa hiểu lắm, em gửi file exe cho mấy đứa bạn, tụi nó thử (kể cả em cũng thử) thì nó chạy hoài ko ngừng, em ko bít up file lên thế nào, gửi mail cho em : duykhang91@gmail.com , em sẽ gửi file cho các anh thử. Nó chạy hoài, tạo ra wá trời item trên taskbar luôn. Em hổng bít cách dừng !!
|
|
|
Em sửa 1 code từ phần example của autoIT xong tự nhiên nó chạy ko ngừng nên bị ngộ nhận là 1 virus, em cũng ko bit cách làm sao cho nó dừng nữa, giúp em với . Sau đây là đoạn code, giải thích cho em nha :
;
; AutoIt Version: 3.0
; Language: English
; Platform: Win9x/NT
; Author: Jonathan Bennett (jon@hiddensoft.com)
;
; Script Function:
; Opens Notepad, types in some text and then quits.
;
; Run Notepad
Run("notepad.exe")
; Wait for the Notepad become active - it is titled "Untitled - Notepad" on English systems
WinWaitActive("Untitled - Notepad")
; Now that the Notepad window is active type some text
Send("Thu nghiem chuong trinh moi.{ENTER}Vui ve chut di bo teo{ENTER}")
Sleep(500)
Send("+{UP 2}")
Sleep(500)
; Now quit by pressing Alt-f and then x (File menu -> Exit)
Send("!f")
Send("x")
; Now a screen will pop up and ask to save the changes, the window is called
; "Notepad" and has some text "Yes" and "No"
WinWaitActive("Notepad", "No")
Send("n")
; Now wait for Notepad to close before continuing
WinWaitClose("Untitled - Notepad")
; Finished!
Tác giả nên sủa lại tiêu đề. Có gì chưa rõ xem lại "Nôi quy" diễn đàn
|
|
|
|
|
|
|