Comments on: myAutToExe and Ruby for the win! https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article How can a crappy site with boring games waste more space? Tue, 11 Feb 2025 18:19:12 +0000 hourly 1 https://wordpress.org/?v=4.9.6 By: 6sKaizen https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-27899 Fri, 21 May 2021 19:34:52 +0000 http://blog.nerdbucket.com/?p=86#comment-27899 WayBack (archive.org) has hope… Files here require username and password.

http://web.archive.org/web/20190827041614/https://files.planet-dl.org/cw2k/MyAutToExe/myAutToExe215src.7z

]]>
By: Nerdmaster https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5574 Fri, 31 Dec 2010 08:05:05 +0000 http://blog.nerdbucket.com/?p=86#comment-5574 This may help – the new forum is at http://board.deioncube.in/showthread.php?tid=29

No new links, but I’m betting angelfire only very recently killed the site, so that’s the forum to watch for updated info.

]]>
By: Nerdmaster https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5573 Fri, 31 Dec 2010 07:44:24 +0000 http://blog.nerdbucket.com/?p=86#comment-5573 Argh! I’m still hosting the old version 2.2 (see http://blog.nerdbucket.com/autoit-fans-rejoice-new-version-of-myauttoexe-available/article for the link) – but I have no idea how outdated that is at this point. It was the latest version two years ago, so it’s likely pretty bad. It will definitely not have the Regex renamer function mentioned by cw2k.

The only good news I can think of is that it was an open-source app, so surely anybody with some time and energy could bring it up to date and repost it. I’ll keep my version up if it helps, but I’m not even sure if it supports the latest versions of AutoIt.

]]>
By: max https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5572 Thu, 30 Dec 2010 12:48:44 +0000 http://blog.nerdbucket.com/?p=86#comment-5572 http://myauttoexe.tk – site unavailable due to TOS violation

we neeed a working mirror, please :-)

]]>
By: Nerdmaster https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5553 Mon, 15 Nov 2010 23:35:55 +0000 http://blog.nerdbucket.com/?p=86#comment-5553 Grendahl, the output in the myAutToExe log window is limited to 65k, but as I recall it creates a decompiled file no matter the size. It should end up putting the file in the same place as the original exe.

]]>
By: Grendahl https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5552 Mon, 15 Nov 2010 17:04:01 +0000 http://blog.nerdbucket.com/?p=86#comment-5552 Great program!

The only complaint that I have is that I’m trying to decompile a rather large script, and myAutToExe stops at 65535 bytes.

Is there a way to get it to decompile a larger file, or am I simply looking in the wrong place for the output?

]]>
By: cw2k https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5388 Wed, 15 Apr 2009 11:39:57 +0000 http://blog.nerdbucket.com/?p=86#comment-5388 Yeah I also had this idea and finally released it in the latest myAutToExe build(104) -> http://myauttoexe.tk I call that tool ‘RegEx Renamer’ – you can access it with myAutToExe with F11

Let’s say you have an obfuscated source like this Global $OO0O0O0O00O0OO00OO0 = False Global $000O0O0O0OOOOOO000O = False Global $00OOOO0O0O00OO00O0O = False Global $0O0O0O0O00O0OOO000O = True

you can rename the vars to some more friendly names by entering this: “\$[O0]{19}\b” -> “$gENABLE” ; Replaces $OO0O0O0O00O0OO00OO0 with with $gENABLE0001…

Global $gENABLE0001 = False Global $gENABLE0002 = False Global $gENABLE0003 = False

]]>
By: Nerdmaster https://blog.nerdbucket.com/myauttoexe-and-ruby-for-the-win/article/comment-page-1#comment-5386 Thu, 09 Apr 2009 01:24:05 +0000 http://blog.nerdbucket.com/?p=86#comment-5386 Also note that the “unknown” variables are names in a very set format: $g_xxxxxx_ for globals and $v_xxxxxx_ for locals. This is to help facilitate other scripting to do more interesting things with a guaranteed pattern.

]]>