Jump to content

WhiteLion

Active Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by WhiteLion

  1. hi vlad thank you for trying to help me out.... but I think I am to dumb to get all the stuff how autoit handles the script and or I missed the new concept of the tool / or maybe autoit sucks with moving the script to resource. ... at leased I ve no Idea what I am doing wrong.... I tried various things out but nothing worked. Things I don´t understand: - When I do edit the options changes I do will be dropped: I set in A3C (for exmpl. the lines for making patches ) changes will be dropped after I leave the line. I ve no idea how to change these stuff in your tool. - is there a save button I missed !? - When I compile the script and execute it ... not my program will be started - your tool (A3C) starts .... I dont rly get this!? Maybe you can give me a full example how to stumble my compiled scriped that all the AutoIt strings are removed from the compiled exe file (I always open it up with an hex editor and still there are simple strings (like "AutoIt", "AUTOIT" "Script"), where you can recognize easily that its a autoit script). All Icons should be removed that I only have my own Icon. File Version stuff should be set. and script should be maximum scrambled. maybe you can make an example for dummies like me. thanx again for your help and sorry for my bad English what may be a reason for my problems too!
  2. hello vlad my old friend after a long IDLE time I updated autoit to v3.3.8.11.2 beta and your A3C from v62.x to v81.12 now I ve problems to use my config (au3) file (see below) for this latest versions, no patching is made and some other errors included. I dont really get all this new options you added to latest version.... maybe you can help me? thanx in advanced! Config: #cs A3C A3C_OUT=C:\Program Files\AutoIt3\AutoIT-eigenerkrams\multitool\MultiTool\P-em_x86.exe A3C_ICO=C:\Program Files\AutoIt3\AutoIT-eigenerkrams\multitool\MultiTool\pem128.ico A3C_IRI=99 A3C_RND=1337 A3C_SUB=WIN A3C_KOR=1 A3C_A2E=c:\Program Files\AutoIt3\Beta\Aut2Exe\Aut2exe.exe A3C_BIN=c:\Program Files\AutoIt3\Beta\Aut2Exe\AutoItSC.bin A3C_VRL=2057 A3C_CMP=2 A3C_NO_VERSION=1 [A3C_RES] TRAY_MNU=4}166}2057}#@BIN> INPUTBOX_DLG=5}1000}2057}#@BIN> STR_TBL=6}7}2057}#@BIN> STR_TBL=6}8}2057}#@BIN> STR_TBL=6}9}2057}#@BIN> STR_TBL=6}10}2057}#@BIN> STR_TBL=6}11}2057}#@BIN> STR_TBL=6}12}2057}#@BIN> STR_TBL=6}313}2057}#@BIN> MANIFEST=24}1}1033}#@BIN> [A3C_PBE] [A3C_VER] ProductName=P-em x86 FileVersion=2.01 CompanyName=TKserver [A3C_PAT] U=AutoIt}Jelly+}2 U=Script}KitKat}0 [] #ce ;A3C Run('"c:\Program Files\AutoIt3\Aut2Exe\A3C.exe" ' &'"'& @SCRIPTFULLPATH &'"') logfile: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Build Start ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Compiler Processing Config error c:\Program Files\AutoIt3\Aut2Exe\CFG\DRXL\c:\Program.drx Fuzzy seed: 53009198 From 1337 Compiler: 3, 3, 11, 2 Resource script detected ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Interpreter Processing Interface: Window Config error c:\Program Files\AutoIt3\Aut2Exe\CFG\DRXL\c:\Program.drx Interpreter: Not found FileVersion Warning, compiler & interpreter version strings differ! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Resources TRAY_MNU Added INPUTBOX_DLG Failed to find resource Build Aborted ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Build End
  3. I tried both scripts (used as they where posted above on Win 7 x64) but non of them removed the dead trayicons. (to make it clear: I am talking about the trayicons which are in the "out faded area" (what ever its called in english)) btw should I give special parameters to the function "_systray_clearDead" !? - Which ?
  4. Any way to refresh all trayicons to remove dead once form the tryiconarea ?
  5. I think I grabbed it from an old / other thread found by google or something like that Your OP is good my fault caused by doing everything fast fast fast ...
  6. Works fine on windows 8 64bit with latest version! thanx for your intention to help
  7. I think it was the one of the first post/first page which I downloaded about 1 week ago. I am unsure about cause I couldn´t find a version tag in it... so I attached it. WinHTTP.au3
  8. I run v3.3.8.1 and that´s the first problem I ve had running autoit on Win 8 This is my script: EDIT: cutting down the handle to int32 doesn´t work ... maybe the problem is another but crashing will be at that function _WinHttpOpenRequest. #AutoIt3Wrapper_UseX64=y #include <WinHTTP.au3> #include <base64.au3> $crypted_file = FileOpenDialog("Select crypted logfile", @ScriptDir, "Logfiles (*.*)", 1) $connect_to_server = "xxxxxserver.de" $target_URL = "upload-test.php" MsgBox(0, "ergebnis", _send_post_binary($connect_to_server, $target_URL, $crypted_file)) func _send_post_binary($connect_to_server, $target_URL, $binaryfiledata, $file_send_to_server = "binary.exe", $sBoundary = "XXX", $encodebase64 = 1 ) ;~ ; Initialize and get session handle ;~ Local $hOpenWinHttp = _WinHttpOpen() ;~ ; Get connection handle ;~ Local $hConnectWinHttp = _WinHttpConnect($hOpenWinHttp, $connect_to_server) ;~ ; Specify the reguest ;~ Local $hRequestWinHttp = _WinHttpOpenRequest($hConnectWinHttp, "POST", $target_URL) ; Initialize and get session handle Local $hOpenWinHttp = _WinHttpOpen() MsgBox(1,"$hOpenWinHttp",$hOpenWinHttp) ; Get connection handle Local $hConnectWinHttp = _WinHttpConnect($hOpenWinHttp, $connect_to_server) MsgBox(1,"$hConnectWinHttp",$hConnectWinHttp) ; Specify the reguest Local $hRequestWinHttp = _WinHttpOpenRequest($hConnectWinHttp, "POST", $target_URL) MsgBox(1,"$hRequestWinHttp",$hRequestWinHttp) ;~ -------------------------------------------------------- Local $base64Stuff, $sS $base64Stuff = Base64Encode(FileRead($binaryfiledata)) $sS = @CRLF & "--" & $sBoundary & @CRLF $sS &= 'Content-Disposition: multipart/form-data; name="userfile"; filename="' & $file_send_to_server & '"' & @CRLF $sS &= 'Content-Transfer-Encoding: base64' & @CRLF $sS &= "Content-Type: text/plain" & @CRLF & @CRLF & $base64Stuff & @CRLF $sS &= "--" & $sBoundary & "--" & @CRLF ;MsgBox(0,"SS", $sS) ; Send request Local $hSendRequestWinHttp = _WinHttpSendRequest($hRequestWinHttp, "Content-Type: multipart/form-data; boundary=" & $sBoundary & @CRLF, $sS, StringLen($sS)) ; Wait for the response _WinHttpReceiveResponse($hRequestWinHttp) Local $recieived_data = _WinHttpReadData($hRequestWinHttp) ; Close handles _WinHttpCloseHandle($hRequestWinHttp) _WinHttpCloseHandle($hConnectWinHttp) _WinHttpCloseHandle($hOpenWinHttp) ; Check if there is data available... If _WinHttpQueryDataAvailable($hRequestWinHttp) Then Return $recieived_data Else Return $recieived_data EndIf EndFunc
  9. Hi guys, I got a problem with the function on Win 8 64 bit: _WinHttpOpenRequest($hConnectWinHttp, "POST", $target_URL) When I compile 64bit and run compiled.exe it will crash the winhttp.dll if I compile/run with x86/32 bit it works fine. I found out that the parameter for $hConnectWinHttp is an 64bit int and thats what win 8 doesn´t like. so what can I do ? and why does that work in win7 64bit without that problems ? greetings
  10. push... nice job ... I ve a problem and parts of this tool include the solution... sadly I am to lame to rip out what I need. I hope someone can help me ... what I need is a function (parameter is a process) that fills me an 2D array with: 1. ips the process is connected with 2. the port 3. the type (udp/tcp) I would be glad if someone could help me. thanx in advance!
  11. oh thanx again for your fast answer everything worked will with 64bit wrapping but I think I found a bug ... when I used the batch to load my settings on 64bit I got a loop with the cmd/batchwindow ... I can send you the batch-settings by pm if you want it...
  12. hi again mobius.... I ve a short question: is there a way to use a3c for 64bit scripts ? would be great to support that. EDIT: oh I saw the post on top of this page about 64bit. but I am unsure if that means full support of 64 (I am using 64bit api calls and pointer calcuation done by script). is that supported ?
  13. its just an example to describe my problem and not the code of my program. and not a bot / cheat like request... I cant imagine that its against the rules to request a addressspace solution for _memoryread() on 64bit - is it ?
  14. Hi guys, I am sorry for my bad english but I hope you can get what I mean. I wrote a application which is reading/writing stuff from/to memory. All works fine on Win7 32bit. Today I compiled my script as 64bit application on my new Win7 64bit. Now the functions _MemoryRead/_MemoryWrite doesn´t work when I try to read something from a memoryaddress which size is bigger than 32bit addressspace. here is an example script that will not work cause of this: #include <Pointer.au3> SetPrivilege("SeDebugPrivilege", 1) $addy = '7fef9a47a80' $process = "MineSweeper.exe" $pid = ProcessExists($process) $MemOpen = _MemoryOpen($pid) $Readout = _MemoryRead("0x"&$addy, $MemOpen, "byte[10]") MsgBox(0,"result", $Readout) I hope you can help me. thanx in advance! PS: Pointer.au3 ueses the same functions as nomadmemory.au3
  15. I selected the path to aut2exe and a3c setted path to autotsc by self (GUI). after that I made exported as batch-file. thank you! - its easy to use cause it needs project-files configurated by GUI/expert mode in its commandline. thanx again !
  16. amazing fast and understandable answer!!! 1000 thanx ! this is my batch-file: @ECHO off START C:\Programme\AutoIt3\Aut2Exe\A3C.exe %0% EXIT ::AutoIt3Camo A3C_IN=C:\Programme\AutoIt3\AutoIT-eigenerkrams\multitool\IniEditor\mainTool.au3 A3C_OUT=C:\Programme\AutoIt3\AutoIT-eigenerkrams\multitool\IniEditor\Pk-em-Editor.exe A3C_ICO=C:\Programme\AutoIt3\AutoIT-eigenerkrams\multitool\IniEditor\pk-em-editor.ico A3C_IRI=99 A3C_SUB=win A3C_A2E=C:\Programme\AutoIt3\Aut2Exe\Aut2exe.exe A3C_BIN=C:\Programme\AutoIt3\Aut2Exe\AutoItSC.bin A3C_VRL=2057 [A3C_VER] ProductName=Pk em Editor FileVersion=1.00 :: ---------------------------------- ::adding this solved the GUI problems: [A3C_RES] TRAY_MNU=4}166}2057}#@BIN> INPUTBOX_DLG=5}1000}2057}#@BIN> STR_TBL=6}7}2057}#@BIN> STR_TBL=6}8}2057}#@BIN> STR_TBL=6}9}2057}#@BIN> STR_TBL=6}10}2057}#@BIN> STR_TBL=6}11}2057}#@BIN> STR_TBL=6}12}2057}#@BIN> STR_TBL=6}313}2057}#@BIN> MANIFEST=24}1}1033}#@BIN> I am using VM-protect and own a legit pro license ... and it does support command-line, sorry for wrong information. (I always used GUI) Keep up that work with amazing tool! Greetings WhiteLion
  17. @firefox thanx for your fast reply! I didnt checked the resources checkbox. I didnt change anything on the options tab. I let it by default. I tested if its the fault of the protector, but the problems are still the same without protector (if I just use AutoIt3Camo) any other ideas ? What I still not got is if I should use the protector after AutoIt3Camo or if there is a way to use before/while AutoIt3Camo. the help file confused me a little about that.
  18. amazing work! still a little buggy: after I protected my files I got this problems: - the GUI looked like the old style on XP with no rounded corners and so (its like the screenshot of 1st post/AutoIt3Camo) ... okey its not nice but I could life with that. - on "GUICtrlCreateCombo" I couldn´t see more than the first line (no selection of the other items possible) .. (I am sure this it a real bug caused by AutoIt3Camo) - for some reasons "ShellExecute" is not executed after your wrapper. (may be related to another reason... I ll check that out) I used a protector AFTER your tool so I am unsure if the bugs are rly caused by your tool, but I ll continue testing. (btw: in helpfile you wrote to protect by command-line before AutoIt3Camo will do its work ? or did I got that wrong ? - maybe you can tell me how to protect before AutoIt3Camo will do his work, cause most protectors wouldnt support command-line. Is it okey to use a protector after AutoIt3Camo or will this cause errors ? ) thx - whitelion EDIT: The bugs still appear if I leave the app unprotected.
  19. DecToHex does wrong check this out in calculator: dec: 76561198720815197 windwows calulator does it good: 11000012D55105D DecToHex is wrong: 11000012D551060 Any solution for that ? thanx
  20. dont get me wrong...the protection is very nice but if the result got false positives is useless (i my case). maybe you cant imagine that I code appz which uses +6.500 people ... can you imagine whats up when I just 10% got virus alters ? I ve to leave my tool totally unprotected whats the fault of script language not yours. so I asked for help but if thats all you wanna offer me if I am crying for help... ok
  21. the obfuscater is very nice... but it allways produce a file that gives 4/42 warings if you upload to virustotal.com thats not takeable so the obfuscator is worthless or is there a solution ?
  22. hi guys, I am from germany and my english is poor (sry 4 that) but I hope you will understand and can give me help with my problem. I use the following line to send a string + enter to a console every 30 seconds: ControlSend("Console", "", "[CLASSNN:Edit1]", $randomstatus &"{Enter}") That works but it causes bad lags in the game für 1-2 seconds. Its not acceptable specially while in multiplayer. I tried a UDF called "ssend" and another string: _GUICtrlEdit_AppendText(ControlGetHandle("Console", "", "[CLASSNN:Edit1]"), $randomstatus & @CRLF) but I dont know if these alternaives will help cause both of where not able to send the "pressed enter key" to the editfield... the string is in the field but not sended cause of the missing enter/return pressed key! can someone help !? thanx for your time!
  23. I don´t wanna dropp around files ond harddrive ! - thats really lame! I don´t see the problem !? EDIT: but if ya wanna know what I want do: I am trying to integrate a view smaler applications into exe-file couse of useing it as portable all-in-one soulution 4 my USB-device...
  24. hi, I would like to know how I can built in my raw (hex) code into my project? I want to execute this data without dropping it to disk... is that possible? thanx 4 answers !
×
×
  • Create New...