473,382 Members | 1,545 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Is it true that dotnet code "open"?

Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told
me that the code is not "secure" in that it is easy to decompile. Can anyone
shed some light on this regarding the two languages listed?

Thanks in advance,
Carl
Nov 22 '05 #1
8 2937
Yes, you can disassemble the Intermediate language of C#, VB.NET , etc.
ASP.NET is a technology, not a language and you can write ASP.NET apps in
both VB.NET and C# (as well as HTML and javascript).

You can use Ildsam.exe to disassemble code but I think your Java freinds
aren't telling the whole story. You can obfuscate it, there is a free tool
call .NetFuscator in VS.NET 2003 in addition to many third party tools which
are all very reasonably priced.

It's not meant to be a security risk, and the fac tyou can disassemble code
isn't some oversight on the part of MS. Also, someone has to have your DLL
or exe to disassemble it, and if they access your source .dlls on a web
server, you have a bunch of security issues.

..NET is IMHO the coolest technology to come out in a a while. I've
programmed with Java for over 3 years and I like it too, but .NET has it in
just about every category I can think of. With a little work, you can
write secure and fast apps.
"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #2
Yes, you can disassemble the Intermediate language of C#, VB.NET , etc.
ASP.NET is a technology, not a language and you can write ASP.NET apps in
both VB.NET and C# (as well as HTML and javascript).

You can use Ildsam.exe to disassemble code but I think your Java freinds
aren't telling the whole story. You can obfuscate it, there is a free tool
call .NetFuscator in VS.NET 2003 in addition to many third party tools which
are all very reasonably priced.

It's not meant to be a security risk, and the fac tyou can disassemble code
isn't some oversight on the part of MS. Also, someone has to have your DLL
or exe to disassemble it, and if they access your source .dlls on a web
server, you have a bunch of security issues.

..NET is IMHO the coolest technology to come out in a a while. I've
programmed with Java for over 3 years and I like it too, but .NET has it in
just about every category I can think of. With a little work, you can
write secure and fast apps.
"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #3
"S C A" <no*********@bellsouth.net> wrote...
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?


Carl: A bit interesting to have this come from Java developers :-) because
Java developers have the same concern. That's why Java "obfuscators" hit
the market shortly after the introduction of Java and why .Net obfuscators
exist already.

The lack of code security (relative to native code compilers) is due to the
translation into MSIL (an intermediate language) much like Java's byte-code.
You might want to look up references on MSIL for more information.

Tom

Nov 22 '05 #4
"S C A" <no*********@bellsouth.net> wrote...
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?


Carl: A bit interesting to have this come from Java developers :-) because
Java developers have the same concern. That's why Java "obfuscators" hit
the market shortly after the introduction of Java and why .Net obfuscators
exist already.

The lack of code security (relative to native code compilers) is due to the
translation into MSIL (an intermediate language) much like Java's byte-code.
You might want to look up references on MSIL for more information.

Tom

Nov 22 '05 #5
Try salamander to resource the IL.
"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #6
Try salamander to resource the IL.
"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #7
Thanks for the pointers everyone.
Carl

"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #8
Thanks for the pointers everyone.
Carl

"S C A" <no*********@bellsouth.net> wrote in message
news:pX****************@bignews4.bellsouth.net...
Dear Group:
Having spent quite some time with VB 6 and prior, I have been considering
moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure" in that it is easy to decompile. Can anyone shed some light on this regarding the two languages listed?

Thanks in advance,
Carl

Nov 22 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: S C A | last post by:
Dear Group: Having spent quite some time with VB 6 and prior, I have been considering moving to VB.Net and ASP.Net. However, some developers here (Java) have told me that the code is not "secure"...
0
by: Michael | last post by:
I have a problem forcing files to download. If I select Save the document is saved with no problems. If I select "Open" the document is empty or I get a "File not found" error from the application...
2
by: Jason Morehouse | last post by:
Hello, Anyone know if it's possible to speak with the server via xmlhttp.open while the browser is doing a post -- file upload in this case: <form enctype="multipart/form-data"...
6
by: John Baker | last post by:
Hi: Does "On Open" code execute before or after related data is loaded? I want to test before the form appears on the screen to see if there is any data in the queryresult, and if there is not...
7
by: Aaron G via AccessMonster.com | last post by:
Wanted to share a solution to something which I didn't find on the net: EVERY form in my Microsoft Access 2002 database gave an error any time any code was to be called: form OnOpen, button...
3
by: ITP | last post by:
Hello, I'm seeing this with the ADO.NET SQLClient provider: When I check the connection's open status after it has been opened AND has been broken (I simulate this by disconnecting the cable...
4
by: MLH | last post by:
Is it good programming practice to delete existing file before running Open "c:\MyFile.txt" For Output As #1 ??? IE, I already have a file c:\MyFile.txt on disk and I launch Open "c:\MyFile.txt"...
8
by: Seth Darr | last post by:
I'm working on migrating an Classic ASP/VB6 COM application from an NT Server with IIS<6 to an virtual machine running Windows Server 2003 and IIS 6. I've worked through most of the obvious...
1
by: Charlie | last post by:
I am trying to make an XMLHttpRequest which violates the default "same- origin"policy in Firefox. I checked the archives and found a method that should work but it does not. Below is the test code...
1
gcoaster
by: gcoaster | last post by:
Hello, Access is accessing my patience! how does one filter just one form with a single combo box selection? I have a combo box named "cboCallStatus" unbound Row source type = Value...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.