Questions tagged [code-security]

40 questions
0
votes
1 answer

.NET framework : Are all System.* dlls not intellectual property?

All .NET dlls can be reverse engineered easily, hence .NET can be considered as an intellectual property as opposed to C++. Recently I found that using some tool, all System.* dlls used in .NET project can also be peeped into. Question here is why…
Tejas Sutar
  • 747
  • 2
  • 11
  • 33
0
votes
0 answers

How to provide security for a jar file from decompiling the classes present in it using a manifest file

Is there any attribute that is there in the manifest file to provide security to the jar file. [update] I am working on a java swing App which will be deployed on user machine. Need to make sure that my code/app can't be tweaked or reproduced.…
user3534517
  • 121
  • 1
  • 2
  • 8
0
votes
0 answers

How to verify that library assemblies originate from a given Web site?

How would the following solution be implemented? Would you need to put this code in each library assembly or just in the main assembly that is determining whether it is safe to call the library assembly based on whether or not it originates from a…
0
votes
1 answer

Verify javascript code at server

I have a text area in my web where user can add java script code. I need to check if this code contains any malicious code or not. What are the options at Client end Server end Or where can I find a good material for checking for malicious code.
user2780901
0
votes
1 answer

How can i protect my dll from decompiler?

I want to protect my dll from decompile for that i have created dll in release mode and also remove .pub feature at dll creating time. I have also read about obfuscator tool but i am not able to protect my dll. Is there any one know how to protect…
Shirish
  • 1,252
  • 11
  • 20
0
votes
1 answer

How to lock MATLAB files keeping them executable

How to lock MATLAB files keeping them executable. I am writing code to create GUI where third party should run the .fig file but should be unable to read the code written. Main GUI editor file contains user defined functions also, where they should…
0
votes
2 answers

IBM WorkLight android source security

I am using IBM workLight 4.0 version, currently i am developing a simple insurance applicatoin, everything is done well. After Android setup has taken, from the .APK (android setup file) i can extract the HTML5 and javascript source. I felt it is…
Joy
  • 1
0
votes
2 answers

Which would be fastest and most secure among FastCGI, ASP.NET MVC and Web forms for Server Applications

I have to build an Automated Chat Application which will have it's front end as a widget on the website and back-end logic at server. It's main purpose will be to provide an interface to the customers to solve their queries with a chat personnel…
user1573144
-1
votes
1 answer

Could performing a .NET "security check" lead to security errors?

i have a snippet of code: public void MyMethod() { DirectoryEntry de; ... de.AuthenticationType = AuthenticationTypes.Secure; ... } that FxCop chokes on: CA2122: Do not indirectly expose methods with link demands Resolution:…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
-1
votes
1 answer

Issue regarding code security

I have an existing ruby on rails application and one of our client want to set our application on premise using a server. Now I am bit worried about the code security and anti-theft issues. Is there any way out so that the application code will…
Abhradip
  • 393
  • 5
  • 27
1 2
3