Newbie: How safe is source code?

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Newbie: How safe is source code?

    Hi

    I am a complete newbie and am contemplating moving to asp.net from asp. How
    protected is an asp.net web site source code should it be delivered to a
    client?

    Thanks

    Regards


    John Guest

  2. Similar Questions and Discussions

    1. Why doesn't the Code Completion occur in FlexBuilder IDEwhen source code is in an external file?
      I am seperating my .as from the MXML by using the following in my file.mxml: <mx:Script source="file.as"> When I edit file.as, the code...
    2. Perl build script woes doing Source Safe get
      I have a Perl script that I have been using to perform builds. This script uses the source safe command line to fetch files into the workspace...
    3. Debug ASP.Net / Source Safe Question
      If you have the appropriate permissions, you should be able to use the Attach to Process function to attach to the ASPNET process on the remove...
    4. Source Safe and expansion variables with Dreamweaver and Allaire Studio.
      Hello, I have been unable to get expansion variables to update source headers in my Cold Fusion projects to work when using Dreamweaver with...
    5. SCO, Open Source and the Un*x source code
      On Sat, Jul 19, 2003 at 04:51:08PM +0000, tony@aplawrence.com wrote: .... Isn't SCO claiming that they own all the Unix IP in the world :-). ...
  3. #2

    Default Re: Newbie: How safe is source code?

    My opinion:

    If your concern is about protecting access to the code itself, then ASP.NET
    source is much safer than classic ASP, because the deliverable is actually a
    set of compiled .dll's, rather than a set of vbscript files.

    However, you should be aware that it is notoriously easy to decompile a .NET
    assembly into very clean source code. If this worries you, you should
    consider using an obfuscator to "scramble" the dll code so that decompiling
    either doesn't work or doesn't work very well.

    -Michael



    "John" <john@nospam.infovis.co.uk> wrote in message
    news:Oo1BKKIpDHA.2732@TK2MSFTNGP11.phx.gbl...
    > Hi
    >
    > I am a complete newbie and am contemplating moving to asp.net from asp.
    How
    > protected is an asp.net web site source code should it be delivered to a
    > client?
    >
    > Thanks
    >
    > Regards
    >
    >

    Michael Ames Guest

  4. #3

    Default Re : Newbie: How safe is source code?

    You can compile the code behind files and deliver them
    as .dll files however the caveat with this is they can be
    decompiled. To prevent decompiling use obfuscators

    The following link has one such obfuscator
    [url]http://www.programmersheaven.com/zone28/cat1016/25607.htm[/url]

    - Gopi
    >-----Original Message-----
    >Hi
    >
    >I am a complete newbie and am contemplating moving to
    asp.net from asp. How
    >protected is an asp.net web site source code should it
    be delivered to a
    >client?
    >
    >Thanks
    >
    >Regards
    >
    >
    >.
    >
    S Gopikrishna Guest

  5. #4

    Default Re: Newbie: How safe is source code?

    Hi John,

    You should obfuscate your ASP.NET with Dotfuscator (a .NET
    obfuscator).
    A lite version is included inside VS.NET 2003 under the tools menu.
    This will make reverse engineered code harder to understand.

    If you want more protection that significantly hinders reverse
    engineering by crashing or stopping decompilers and support look at
    Dotfuscator Professional Edition.

    For more info: [url]www.preemptive.com/dotfuscator[/url]

    Best Regards,
    Dotfuscator Team

    > "John" <john@nospam.infovis.co.uk>
    > > Hi
    > >
    > > I am a complete newbie and am contemplating moving to asp.net from asp.
    > How
    > > protected is an asp.net web site source code should it be delivered to a
    > > client?
    > >
    PreTech Guest

  6. #5

    Default Re: Newbie: How safe is source code?

    I agree. But what about 'Whidbey' (new VS 2004)? I think we going
    back to ‘no code-behind'.

    --------------------------------------------------------------------------
    [url]http://www.naptaxes.com/AAJ/[/url]
    [AllAmericanJobs - Searching jobs from your desktop and automatically
    sends resume.]
    jon Guest

  7. #6

    Default Re: Newbie: How safe is source code?

    Even with 'no code behind' isn't the result still .NET code which can be decompiled?

    > I agree. But what about 'Whidbey' (new VS 2004)? I think we going
    > back to ?no code-behind'.
    PreTech Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139