Jump to content
Advert

Darkbanner

Active Members
  • Posts

    25
  • Joined

  • Last visited

Darkbanner's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hey guys, I tried to use /AutoIt3ExecuteScript on my compiled script today, as described in the AutoIt documentation (see below). I basically tried to execute an 2nd script with it: my1stscript.exe /AutoIt3ExecuteScript my2ndscript.au3 This executed the code of my1stscript.exe and not the code from my2ndscript.au3 Did I miss something or is this a bug?
  2. I hope you don't mind if I bring my thread back up, I really would appreciate some help with this.
  3. Hello, I am stuck with something. I create process (using CreateProcessW) of a native application. Now I need to load the CRL into that process (using ICLRRuntimeHost?). Is this possible and if so is there an example how to do so in AutoIt? or is it possible to Call CorBindToRuntimeEx and pass on the CLR to the process? Thanks in advance guys!
  4. Hey guys, i wan't to start a little project. I have the idea for now and before i want to do anything, i want to go sure. Is it possible to manipulate text in other windows (i mean labels or other stuff in other windows)? Regards
  5. Hey guys, today a guy offered me to secure my autoit .exe (i have a kinda big product written in autoit). As everybody would do, i first didn't believe he could get around all that decompilers. I never have seen something that can protect a file from being decompiled with Exe2Aut and exactly that i what i also told this guy. He offered me to protect an .exe for me for free, so i made new autoit .exe and send it to him. After a few minutes he send it back to me. And i couldn't believe what i see. I drag+dropped that file into Exe2Aut and the only result Exe2Aut has shown was "nice try cracker". The .exe still did run normal. I can't think of something that could do that, do you guys do?
  6. <- the download is down. _IEFormSubmit($oForm) <- don't work bro sry
  7. There is only one problem, i can't find a WinHTTP.au3 download o.O
  8. #include <IE.au3> Local $oIE = _IECreate("http://razorhosting.de/imgspy/") Local $oForm = _IEFormGetObjByName($oIE, "form") Local $oText = _IEFormElementGetObjByName($oForm, "file") Local $oSub = _IEFormGetObjByName($oIE, "submit") _IEFormElementSetValue($oText, "Hey! This works!") Sleep(100) _IEFormSubmit($oForm) This inserts the "hey! this works!" text but the submit don't work
  9. Sorry i really don't understand! I pay 2$ paypal for someone make me this.
  10. Hmm i don't understand the html stuff could someone make this for me?
  11. Hi have a page with this content: <html> <body> <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <br /> <input type="submit" name="submit" value="Submit" /> </form> </body> </html> I want auto it to fill in the filepath with the var $file and then submit the form. How to do? Regards Darkbanner
  12. The code only contains a gui with a embedded IE, wich navigates to a youtubevideo and a button "Play!". ...
  13. Hm my code simply navigates to a YT page now. Not more not less. It's embedded IE And on the page it dosn't starts to play the video automaticly. I want the that the youtube API make the video play. I think it have to be injected in the page or smth like that. I actually have no idea how to do this
  14. Hmm i can't find a way making the video played with the api there sorry.
×
×
  • Create New...