Quote:

I think you misunderstood most of what I wrote. I don't care about the CHR() and I understand that you are trying to obfuscate the string.

The prob is with missing " and +

+/PASSWORD:"+Chr(77) + Chr(111) + Chr(114) + Chr(35)
and
" /PASSWORD:"+Chr(112) + Chr(97) + Chr(115) + Chr(115)

should be:
+"/PASSWORD:"+Chr(77) + Chr(111) + Chr(114) + Chr(35)
The quotes seem to be off

+" /PASSWORD:"+Chr(112) + Chr(97) + Chr(115) + Chr(115)

not sure about the spaces though

As for NoVarsInStrings, turn it on and see for yourself. You would be better off to do it in a smaller concept scriptlet first. There are discussions on that topic both here and on kforg.




I just checked my master scritps and the the " and + are in the script this was an oversight by me when I modified the CHR's for this post.
_________________________
I haven't failed. I just found another way that did not work.