You last visited: Today at 20:36
Advertisement
Shadows Obfuscator (mit Sourcecode)
Discussion on Shadows Obfuscator (mit Sourcecode) within the AutoIt forum part of the Coders Den category.
10/30/2012, 23:17
#196
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
spymare
all this script contains is:
shellexecute("notepad.exe")
I tried to encrypt it 2 times:
2 times obfuscating is not possible. And it will make your scripts not safer.
11/05/2012, 11:31
#197
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
it would be nice if you could write ex, a comment for a line of code:
fileinstall(blahblahblah) ;DONT-ENCRYPT
so all lines with ";DONT-ENCRYPT" wouldn't be encrypted
that would be pretty awesome
11/05/2012, 11:33
#198
elite*gold: 528
Join Date: Jan 2012
Posts: 2,127
Received Thanks: 2,403
Quote:
Originally Posted by
legend90
it would be nice if you could write ex, a comment for a line of code:
fileinstall(blahblahblah) ;DONT-ENCRYPT
so all lines with ";DONT-ENCRYPT" wouldn't be encrypted
that would be pretty awesome
^this
Code:
#region dont-encrypt
;...
#endregion
would be useful, too.
Rgds | MfG
11/05/2012, 14:25
#199
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
yeah, exactly something like that :P
11/05/2012, 22:35
#200
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
Achat
^this
Code:
#region dont-encrypt
;...
#endregion
would be useful, too.
Rgds | MfG
Nice idea will try it some time later.
11/13/2012, 15:29
#201
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
it got some problems obfuscating funcs, sometimes obfuscating funcs does not work
11/13/2012, 19:16
#202
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
legend90
it got some problems obfuscating funcs, sometimes obfuscating funcs does not work
You should say with what obfuscator.
Better do not use AutoIt-Obfuscator becuase this one is outdated, use C++-Obrfuscator.
11/21/2012, 19:17
#203
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
it's the c++. did you ever manage to make something like this
:
#region dont-encrypt
;...
#endregion
would really be awesome to have ^^
another suggestion: make the obfuscator support drag n drop:
so you can execute a cmd like this: obfuscator.exe test.au3
11/24/2012, 11:48
#204
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
legend90
it's the c++. did you ever manage to make something like this
:
#region dont-encrypt
;...
#endregion
would really be awesome to have ^^
another suggestion: make the obfuscator support drag n drop:
so you can execute a cmd like this: obfuscator.exe test.au3
Quote:
#region dont-encrypt
;...
#endregion
Not yet. I do not really have got enough time at the moment but i will try it some day.
Quote:
another suggestion: make the obfuscator support drag n drop:
so you can execute a cmd like this: obfuscator.exe test.au3
Hmm maybe i will make this also some day.
11/25/2012, 15:36
#205
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
Would be great to able able to use it with a cmd script like this:
@echo off
cd c:\
obfuscator.exe test.au3
I tried to get a c++ editor, but im not really sure how to make it work like that
11/25/2012, 16:53
#206
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
legend90
Would be great to able able to use it with a cmd script like this:
@echo off
cd c:\
obfuscator.exe test.au3
I tried to get a c++ editor, but im not really sure how to make it work like that
I will add this soon.
I have got updated to 1.1.3 now the problem with Call you had have should not occur again.
11/25/2012, 17:57
#207
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
ok nice thanks
11/27/2012, 00:17
#208
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
In the source I tried to do this:
cout<<"Pfad Zur Datei (Doppelte \\\\ statt Einfachen \\ Bsp. C:\\\\Dek\\\\test.au3)\nMit Enter bestaetigen:\n";
str3="run.au3";
it will work, but something it wont obfuscate it right If i do this, it will give errors like this:
but if I just use it as it is, without modifying the source, it works just fine, wonder what is wrong
Please let me know as soon as you make it able to run from a cmd script, would be so nice
also how would i get rid of "obfuscator_file.s92"
In this case I don't want to use a external file
11/27/2012, 18:49
#209
elite*gold: 77
Join Date: May 2008
Posts: 5,430
Received Thanks: 5,876
Quote:
Originally Posted by
legend90
In the source I tried to do this:
cout<<"Pfad Zur Datei (Doppelte \\\\ statt Einfachen \\ Bsp. C:\\\\Dek\\\\test.au3)\nMit Enter bestaetigen:\n";
str3="run.au3";
it will work, but something it wont obfuscate it right If i do this, it will give errors like this:
but if I just use it as it is, without modifying the source, it works just fine, wonder what is wrong
Please let me know as soon as you make it able to run from a cmd script, would be so nice
also how would i get rid of "obfuscator_file.s92"
In this case I don't want to use a external file
To Disable creating external file you have to comment this out:
ReplaceStringByArray();
And i think you have to comment out this too:
code[11]
until
code[15]
around line 222.
Then it should work, but disabling this will make your scripts much less safe, you should really just remove it if security is not that important.
11/27/2012, 22:44
#210
elite*gold: 0
Join Date: Oct 2012
Posts: 10
Received Thanks: 1
I tried, yeah, i see it will lose much security doing that, when do you think you will get time for making it being able to be used in a script, like being used from cmd
?
Similar Threads
AutoIt Obfuscator - Verschlüsselung
09/06/2009 - AutoIt - 7 Replies
Hey,
Bin dank einem guten Freund, der mich darauf hingewiesen hat, auf diesen nützlichen Tool gestoßen:
AutoIt Obfuscator
Was macht er:
English:
Obfuscator doesn't make your source safe!
Suche v1.0.24.14 vom Obfuscator von Autoit
09/17/2008 - Guild Wars - 2 Replies
Hi,
hat die vielleicht noch jemand oder habt ihr auch alle nur die neue version ??
Falls jemand noch die alte hat würde ich mich freuen wenn man die hie hochladen oder mir schicken könnte
Mfg
emtec
All times are GMT +2. The time now is 20:37 .