Ask a Question related to ASP.NET Security, Design and Development.
-
vadim #1
obfuscation question
Hi,
Will obfuscation help in securing hard coded key in asp.net application?
Thank you
Vadim
vadim Guest
-
Email obfuscation extension
I have tried to write my own extension to perform this task in DW8 but it doesn't seem to work properly, so I tried some of the ones posted on... -
Good morning or good evening depending upon your location. I want to ask you the most important question of your life. Your joy or sorrow for all eternity depends upon your answer. The question is: Are you saved? It is not a question of how good you
<RonGrossi382872@yahoo.com> wrote in message news:1114393703.900419.199790@f14g2000cwb.googlegroups.com... This is the most important question of... -
WJ #2
Re: obfuscation question
No. Obfuscation tool only understands compiler syntax and symbols, not the
data. Example: If you name a variable as string
ComputerIpAddress="127.0.0.1", obfuscator only renames or scrambles the
variable name "ComputerIpAddress", not its value.
As for your concern about hardcoding your secret key inside your program can
be done in a number of ways. For example: if your secret key is something
like "123#AbcXzqOK*&76", then do not code as string sKey="the value", store
the data in array of bits, this make it harder for any tool to disassemble
the code. This is just a thought.
John
"vadim" <vadim@dontsend> wrote in message
news:Oyi5cogOEHA.3624@TK2MSFTNGP10.phx.gbl...> Hi,
>
> Will obfuscation help in securing hard coded key in asp.net application?
>
> Thank you
>
> Vadim
>
>
WJ Guest
-
Alek Davis #3
Re: obfuscation question
Vadim,
Some obfuscators provide a "string encryption" feature, which uses an
embedded "encryption" algorithm to change application string values. This is
not a bullet-proof option though. And in general, storing secrets in the
application source code (of .NET/Java applications) is not a good idea.
Check this article, it can give you some ideas (it also contains references
to other resources, such as articles about obfuscation, which you may find
helpful): "Safeguard Database Connection Strings and Other Sensitive
Settings in Your Code" at
[url]http://msdn.microsoft.com/msdnmag/issues/03/11/ProtectYourData/[/url].
Alek
"vadim" <vadim@dontsend> wrote in message
news:Oyi5cogOEHA.3624@TK2MSFTNGP10.phx.gbl...> Hi,
>
> Will obfuscation help in securing hard coded key in asp.net application?
>
> Thank you
>
> Vadim
>
>
Alek Davis Guest



Reply With Quote

