Jump to content

Recommended Posts

Posted
  • Is this possible to make program works like in diagram?
  • There is so much encryption methods and UDFs are they give security?
  • If the $Address will be crypted with some encryption algorithm could be possible to get the value of $Address in easy way? Of course We know its easy too look into autoit code and get value of variable and so We dont want to anyone see $Address value - there are functions
  • Could func1.au3, func2.au3.. be for example func1.php or other type of file? As we know .php files are unnable to see. For example func1 would be read by FileRead() and then Execute()

Is this generally possible to do?

Will it give secure?

What do you think about? Maybe there is something wrong in this concept or missed.

autoit.jpg

Posted (edited)

You can download the script as a compiled exe or script via some ftp function.  There are also ways to execute au3 files via the command line...search command line in the helpfile.

 

_FTP* functions.

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Posted (edited)

Could this work?

#include <File.au3>
$file_url = "http://nirsoft.net/utils/regfromapp-x64.zip"
$download_result = InetGet($file_url, @scriptdir & "\regfromapp-x64.zip", 3)
if $download_result <> 0 Then
   MsgBox(64, 'Result', 'No Errors')
Else
    MsgBox(64, 'Result', 'Error')   
endif
InetClose()

I mean if it's a not pw protected ftp.

Edited by careca
  Reveal hidden contents

IUIAutomation - Topic with framework and examples

Au3Record.exe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...