Jump to content

RunAs security solution please


ant2ne
 Share

Recommended Posts

I would like to use AutoIT to kick of installers via the RunAs function. I'd like to distribute these InstallerKickOff.exe to employees so that if they require a program they can basically install it them selves.

Of course, I'm concerned about security and having my little kick off installers decompiled and the password extracted.

I've done some googling but haven't come across anything definitive. I'm wondering if any of you who may have used autoit for something like this. And how you compensated for this possible security flaw. Or if AutoIT's current version support some sort of internal encryption.

Thanks

Link to comment
Share on other sites

I would like to use AutoIT to kick of installers via the RunAs function. I'd like to distribute these InstallerKickOff.exe to employees so that if they require a program they can basically install it them selves.

Of course, I'm concerned about security and having my little kick off installers decompiled and the password extracted.

I've done some googling but haven't come across anything definitive. I'm wondering if any of you who may have used autoit for something like this. And how you compensated for this possible security flaw. Or if AutoIT's current version support some sort of internal encryption.

Thanks

There is a limited encryption, but it should not be trusted with admin passwords. Login credentials do not belong inside a script.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

There is a limited encryption, but it should not be trusted with admin passwords. Login credentials do not belong inside a script.

Please linky me to information about this encryption and how it is used.

Like I said though, "I'm wondering if any of you who may have used autoit for something like this. And how you compensated for this possible security flaw."

Link to comment
Share on other sites

Please linky me to information about this encryption and how it is used.

Like I said though, "I'm wondering if any of you who may have used autoit for something like this. And how you compensated for this possible security flaw."

Whatever encryption is used must be reversible, and therefore the keys required to reverse it must be stored along with the data. While you can make it a little difficult to decompile your script with Obfuscator, it will NOT be impossible. Even if you encrypt the password with _StringEncrypt() or something of your own design, the method to decrypt it must be there too (reversible again), and will be traceable if the .exe is decompiled.

Passwords do not belong in your scripts.

I have no link for you, as this is based on principles, not AutoIt policy.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

  • Developers

\Like I said though, "I'm wondering if any of you who may have used autoit for something like this. And how you compensated for this possible security flaw."

I have build many scripts that had to run installers using adminitrator credentials.

We always used a Local PC account that had these credentials to mitigate the risk of exposing the AD.

On top of that we ran a login script that wouyld report any user that would login with admin scredentials.

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

I have build many scripts that had to run installers using adminitrator credentials.

We always used a Local PC account that had these credentials to mitigate the risk of exposing the AD.

On top of that we ran a login script that wouyld report any user that would login with admin scredentials.

Jos

I like the idea of a login script to report usage of the account. But unless the script is custom compiled for different credentials on each machine, cracking it once (by hypothetically decompiling the .exe) would give usable access to every machine on the network with that account. And using those credentials for remote penetration, privilege elevation, or creation of a new privileged account would not trigger any login script-based reporting.

I still don't like it personally, but then I work around a bunch of paranoids anyway.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Like I said before.

Run the script from the logonscript with admin privileges.

Then point the script to a password file on a network share that only that admin account can see and read.

This way there should be NO way anyone can hack something to see the password.

(Except if the admin pwd is the same as the local admin pwd. Cause local passwords are ALLWAYS EASILY hackable)

My active project(s): A-maze-ing generator (generates a maze)

My archived project(s): Pong3 (Multi-pinger)

Link to comment
Share on other sites

Like I said before.

Run the script from the logonscript with admin privileges.

Then point the script to a password file on a network share that only that admin account can see and read.

This way there should be NO way anyone can hack something to see the password.

(Except if the admin pwd is the same as the local admin pwd. Cause local passwords are ALLWAYS EASILY hackable)

That, and many other methods, are viable if the Admin is initiating the process.

I think the crux of this issue is that a non-privileged user is initiating the script. In that scenario, credentials providing elevated privilege have to come from somewhere, and would have to be gotten before accessing something like an admin-only share.

I don't believe there is a "secure" way to do it unless at some point the user has to request action from an admin. Once the admin is involved, there are a thousand ways to go, one of which you pointed out.

:P

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Ok as someone pointed out to me via pm, everything is hackable.

My statement was meant to be 'unhackable' for local files reading and reverse engineering autoit-exe's.

It is hackable via sniffing or other methode's I didn't think of.

I am still, however, of opinion that that is the easiest way of doing what you want the safest way I can think of now. Ofcourse you still should encrypt the password so thats it's at least not plain text readable via sniffing.

Edit:

I'd like to distribute these InstallerKickOff.exe to employees

I think this sentence made me think the admin with his mighty rights distributed it via some automated distribution system. Edited by Triblade

My active project(s): A-maze-ing generator (generates a maze)

My archived project(s): Pong3 (Multi-pinger)

Link to comment
Share on other sites

  • Developers

I like the idea of a login script to report usage of the account. But unless the script is custom compiled for different credentials on each machine, cracking it once (by hypothetically decompiling the .exe) would give usable access to every machine on the network with that account. And using those credentials for remote penetration, privilege elevation, or creation of a new privileged account would not trigger any login script-based reporting.

I still don't like it personally, but then I work around a bunch of paranoids anyway.

:P

Its simple to hack any PC's admin account with standard software available so cannot see why that would be a worry.

So, if somebody screws around with the PC and get caught then its a violation and gets reported.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Edit:

I think this sentence made me think the admin with his mighty rights distributed it via some automated distribution system.

Yeah, the rest of that sentence was what I was on about:

...if they require a program they can basically install it them selves.

So the user would have access to and run the script.

:P

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...