Jump to content

AU3Stripper - SendTo


Simpel
 Share

Recommended Posts

Hi Jos

I have som code for sample! Can you help me add support option on Au3stripper!!!

;Beforce  use Au3stripper
$sValue = "abc"
$sValue = "bcz"
While 1
    ;do some work
MsgBox(0,"test","Do som work " & $sValue)
WEnd

;Affter use Au3stripper without scrypted
Global $array[4] = ["abc","bcz","test","Do som work "]
$sValue = $array[0]
$sValue = $array[1]
While 1
    ;do some work
MsgBox(0,$array[2],$array[3] & $sValue)
WEnd

;Or affter uses Au3stripper with scrypted
#include <Crypt.au3>
$vData = "rtertertertefdgdfgdfgfdt?trterterterterterter"
$string = _Crypt_DecryptData($vData,$vKey,$vALgID)
$splitString = "[@]"
Global $array = StringSplit($string,$splitString,2)
$sValue = $array[0]
$sValue = $array[1]
While 1
    ;do some work
MsgBox(0,$array[2],$array[3] & $sValue)
WEnd

 

Link to comment
Share on other sites

  • Developers

This is not something I am going to work on.
The first part I really see no benefit for making those changes.
The second part feels like you are looking for Obfuscation, which is something AU3Stripper was before I stopped supporting that and changed it to mainly a Code Stripper with the main purpose of making the source code file much smaller.

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

2 hours ago, Jos said:

This is not something I am going to work on.
The first part I really see no benefit for making those changes.
The second part feels like you are looking for Obfuscation, which is something AU3Stripper was before I stopped supporting that and changed it to mainly a Code Stripper with the main purpose of making the source code file much smaller.

Jos

Hi @Jos

I thinks  this option have some benefit so:

+Reduce som string repeat many times

+it repare data before some active for later do well (not declare)

+may be if scrypted string for purpose hide some content not follow see direct to code if you decompli

that so spent some RAM more than normal

my app has build as this method and au3stripper, it faster than when it active, only this is later when start up 

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

×
×
  • Create New...