Jump to content

Nikolle9203

Active Members
  • Posts

    31
  • Joined

  • Last visited

Recent Profile Visitors

89 profile views

Nikolle9203's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. It was server side yeah Nod32 antivirus was blocking the web traffic and corrupting the files without saying anything.Tried all settings and they all work.Thank you guys
  2. Actually i just did the test and it worked loooooooooool.thank you soo much.im gonna try it on the server now to see if its downloading all files correctly <333
  3. Ive already googled it and tried all possible options that i found.This one i tested already and its only downloading the MZ!..... part.Like 1KB and thats it.But thanks anyway for your effort
  4. Yeah its very frustrating.I have to use some kind of InetGet alternative now and i cant seem to find any
  5. Hello.I have very interesting problem.Im using inetget function to download files from internet.Everything works fine as long as the files are not autoit scripts.The problem is sometimes downloaded files get corrupted.Ive looked at the with hex and i see that some parts of the exe are mising.They are always at the end of the file.I think the overlay is it. My download function : Func Example($DownloadLink) ; Save the downloaded file to the temporary folder. Local $sFilePath = @TempDir & "\" & Randff() & ".exe" ; Download the file in the background with the selected option of 'force a reload from the remote site.' Local $hDownload = InetGet($DownloadLink, $sFilePath, $INET_FORCERELOAD, $INET_DOWNLOADBACKGROUND) ; Wait for the download to complete by monitoring when the 2nd index value of InetGetInfo returns True. Do Sleep(250) Until InetGetInfo($hDownload, $INET_DOWNLOADCOMPLETE) ; Retrieve the number of total bytes received and the filesize. Local $iBytesSize = InetGetInfo($hDownload, $INET_DOWNLOADREAD) Local $iFileSize = FileGetSize($sFilePath) ; Close the handle returned by InetGet. InetClose($hDownload) ; Display details about the total number of bytes read and the filesize. ; Delete the file. return $sFilePath EndFunc ;==>Example This also happens 100% of the times if the file is .a3x.
  6. Yeah thanks for the tip FileReadLine should do the trick.I will try it tommorow and leave a feedback
  7. Yes i did research but i couldnt find anything related to my desires.Maybe because i dont know wich keywords to use.Can you tell me some keywords?
  8. Hello.I want to extract all strings datas in a single autoit script file.The reason is i want to create a very simple and basic obfuscator but i dont have any idea from where i should begin.I want to use RC4 as an encryption.Example : The script file contains this. $justthing = "okaosgakogaosg" $Expec = Filewrite($stuff,$stuffs) $Mac = 23123 $anotherone = StringSplit($arrayeg[0]) and after obfuscation : $justthing = BinaryToString(RC4("@!F@FFAFASFAFAGAG",1234)) $Expec = BinaryToString(RC4("@!SAFASFSFASFASFASF",1234)) $Mac = BinaryToString(RC4("@!SFAFASFAF",1234)) $anotherone = BinaryToString(RC4("@!ASFASFAFASFSAFASF",1234)) I know how to do the encryption part and everything else but i dont know how to make a function that can searh for string data .Is it there already a UDF for that or i have to make it somehow.
  9. Alright , Thanks
  10. Is it possible to @SW_HIDE any chield proces started by run() or other execution func? Also is it possible to @SW_HIDE an process before its even existing? Thanks
  11. EDIT : How can i make it to write every new data to the first line ? I tried _FileWriteToLine ($batch,1,@CRLF&$caca & $dadato&@CRLF) but doesnt work :/.
  12. Problem is solved.The problem was that $dada = "" no need to change it. The problem was that compile.bat has to write backwards in roder : COPY /B "test.exe.6.part" + "test.exe.7.part" + "test.exe.8.part" + "test.exe.9.part" + "test.exe.10.part" COPY /B "test.exe.1.part" + "test.exe.2.part" + "test.exe.3.part" + "test.exe.4.part" + "test.exe.5.part" + "test.exe.6.part" the wrong one was : COPY /B "test.exe.1.part" + "test.exe.2.part" + "test.exe.3.part" + "test.exe.4.part" + "test.exe.5.part" + "test.exe.6.part" COPY /B "test.exe.6.part" + "test.exe.7.part" + "test.exe.8.part" + "test.exe.9.part" + "test.exe.10.part" Thanks again for the support
  13. Nope thats not he problem.The problem is Compile.bat doesnt start the new line with previus part name. IE: COPY /B "test.exe.1.part" + "test.exe.2.part" + "test.exe.3.part" + "test.exe.4.part" + "test.exe.5.part" + "test.exe.6.part" COPY /B "test.exe.7.part" + "test.exe.8.part" + "test.exe.9.part" + "test.exe.10.part" It should be : COPY /B "test.exe.1.part" + "test.exe.2.part" + "test.exe.3.part" + "test.exe.4.part" + "test.exe.5.part" + "test.exe.6.part" COPY /B "test.exe.6.part" + "test.exe.7.part" + "test.exe.8.part" + "test.exe.9.part" + "test.exe.10.part"
  14. Still doesnt work but we are almost done ! . Now the results are : test.exe.1.part is 100 KB , test.exe.200.part is 101 KB , test.exe.400.part is 101 KB and so on until test.exe.1000.part. Somewhere the chain is lost . The compiler have to combine all parts to test.exe.1.part so test.exe.1.part will be 635 KB. The output compile.bat is : http://pastebin.com/xaP23VyK. Exactly what i wanted from compile.bat Once again Thank you
×
×
  • Create New...