Obsufactor - Web Application

  • Thread starter Thread starter Sylvia A.
  • Start date Start date
S

Sylvia A.

Hello,

I wanna use obsufactor for my web app, as u know, my web app consists of
DLL's and ASPX's,

What are the steps of obsf...ing a web app ?

As u know again, My ASPX files holds some information about references in
code behind, such as event names, component names etc... Obsfuctor changes
these refs in DLLS, it must change these in ASPX s ?

Thank you
 
Obfuscating DLLs is a matter of using the obfusctor on the DLLs. Be careful
of any publicly exposed property, as obfuscation here causes a blow up.

The easiest way to obfuscate is to completely divorce the UI (web pages in
this case) from the business code by placing all business code into class
libaries. You can then obfuscate the libraries and not worry about the web
site, as it contains nothing proprietary.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*********************************************
Think outside the box!
*********************************************
 
Back
Top