Jump to content

w0uter

Active Members
  • Posts

    2,204
  • Joined

  • Last visited

Everything posted by w0uter

  1. You shouldnt not call it MultiThreading as that is a lie. Its more like MultiProcessing [edit @ Busti] Yep. but atleast its called CoRoutine [/edit]
  2. $ftpsession is an array IIRC. (maby im wrong and have not released those yet) [edit] oh i see GENERIC_WRITE and such should be a binary constant not a string [/edit]
  3. search the board for _RunSTD() it should give you an idee how to do it.
  4. http://www.symantec.com/avcenter/venc/data...lchia.worm.html http://www3.ca.com/securityadvisor/virusin...s.aspx?ID=35519 http://securityresponse.symantec.com/avcen....assarm@mm.html if you dont belive that you are stupid.
  5. get the beta.
  6. i see that exe2aut is also included. any reason for this ? [edit @ jpm] i never noticed that [/edit]
  7. what if you have a virus named svchost.exe ...
  8. AFAIK you can either: A) recode the batches to autoit (lots of work) just use WinSetState(,@SW_HIDE) after you have run the batch. thats about all i can think of, i would go for B.
  9. why not just patch the nag with a debugger
  10. well seeing as how it calls catalina.bat also post the contents of that one please
  11. what is the contents of startup.bat ?
  12. I AM NOT AN AUTOIT DEVELOPER I DONT KNOW HOW AUTOIT WORKS IT CAN BE UNSTABLE IT CAN CRASH I AM NOT RESPONSIBLE FOR ANYTHING THAT HAPENS TO YOUR SCRIPT OR OTHER DATA THIS IS FOR LEARNING PURPOSE ONLY USE IT AT YOUR OWN RISK There ... now for the people that still want to listen after i shouted at them Well i had some fun and made binaries undecompilable by exe2aut. HOW: <Removed> NOTES: <Removed> also you might need to change RegRead('HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt', 'InstallDir') i dont use a seperate beta and dont know where the beta autoit goes. (i remember something about \beta\) PS. If someone still has trouble with this code after that huge disclaimer and "Dont click here" feel free to send me a pm and ill remove it. <Removed> [edit] removed an U in Browse [/edit]
  13. take a look at @COMSPEC.
  14. Global Const $ERROR_FILE_NOT_FOUND = '2L' ;ERROR_FILE_NOT_FOUND The specified file was not found. Global Const $ERROR_PATH_NOT_FOUND = '3L' ;ERROR_PATH_NOT_FOUND The specified path was not found. Global Const $ERROR_BAD_FORMAT = '11L' ;ERROR_BAD_FORMAT The .exe file is invalid (non-Microsoft Win32 .exe or error in .exe image). L just means its a LONG. There is no need for that in autoit. Also arent the @SW_* the same as your $SW_* ?
  15. 1. why do you use "" if you already use ' 2. you can run it in @comspec & ' /c ' OR use Std*
  16. check this out. http://ant0x.udap.jp/tips/tips_fileSummaryInfo.htm
  17. instead of a struct why not just use int_ptr ? Global $enc_status[9] = ["FILE_ENCRYPTABLE","FILE_IS_ENCRYPTED", "FILE_SYSTEM_ATTR", "FILE_ROOT_DIR", _ "FILE_SYSTEM_DIR", "FILE_UNKNOWN", "FILE_SYSTEM_NOT_SUPPORT", "FILE_USER_DISALLOWED", "FILE_READ_ONLY"] $message = "choose a file." $var = FileOpenDialog($message, ".", "All (*.*)", 1 + 2) If @error Then MsgBox(4096, "", "No File(s) chosen") Else $Result = DllCall("Advapi32.dll", "int", "FileEncryptionStatus", "str", $var, "int_ptr", 0) If $Result[0] = 0 Then _GetLastErrorMessage("Error") Else MsgBox(0, "test", $enc_status[$Result[2]]) EndIf EndIf
  18. you cant #include a3x instead you could use an hash.
  19. tsk tsk. cl_righthand "1" real cs players use "0"
  20. why not just set it off in the powermanagement window ?
  21. msdn has most that you will ever use.
  22. "Func _LogKeyPress($what2log)" looks so familiar. Wansnt this made by ezzetabi or something ? [edit]it was gosu in a thread made by ezzetabi[/edit]
  23. why not just use Send() ?
  24. $pcn = @ComputerName $op = 'output.txt' $log = 'report.ini' $Ftpp = _FtpPutFile($Conn, $path & "output.txt", '/dev/' & $pcn & '-' & $op) $Ftpp = _FtpPutFile($Conn, $path & "report.ini", '/dev/' & $pcn & '-' & $log)
×
×
  • Create New...