Web Forms :: Protect DLL From Decompile

May 7, 2015

I want to protect and put a password to block any decompiling possibilities (for example using decompile software) of all C# codebehind files.

Is it possible to achieve this and still be able to run the website as normaly?

I am using Visual studio to precompile the files, but I guess it is still possible for someone to decompile them.

View 1 Replies


Similar Messages:

Security :: Protect Dlls To Decompile It?

Dec 30, 2010

May i know how to protect the bin folder dll's compiled from the Visual Studio 2005. I am doing the project in Asp.net & c#. One of My friend decompiled all the dll's and show me. Is there any procedure to make my code standard or any free third party tools to prevent from others.

View 4 Replies

Web Forms :: How To Decompile And Get Code From A Published Website

Apr 21, 2014

I have a site which some one designed for me .. after i decompiled my dll files i got *.cs files that i can edit ... when i am trying to edit these pages i can only find the titles of pages but i can't see the rest of text in the site

how can i get all pages's text !?

View 1 Replies

How To Decompile Published Website

Jun 21, 2010

I am working on a project. Client provided me source code, but I found that source code provided to me is not latest code. I need to make some changes to live site. I downloaded code of live site which is published code. Is there any way to decompile that and then make changes to that.

I found Reflector tool good to some extent. But it is decompiling only dlls. It is difficult to make changes to .aspx.cs pages. I am confused what to do.

View 3 Replies

How To Compile The Dll Back After Decompile C# Dll

Mar 23, 2010

I use reflector to decompile a asp.net dll, after that I find the bug and fixed it, now I want to compile it back to a dll, then I can deploy, but it seems that I can't how can I do this ?

View 2 Replies

Decompile Precompiled Source Code .NET

Jan 5, 2011

we have an application in production and the code is in Pre-Compiled form. The developer who developed that application left the company and we don't have any backup of source code. the only access we have is Pre Compiled code in the server. We need to fix the issues in the application now.Is there any way to Decompile (extract to actual source code) the PreCompiled code ?

View 3 Replies

Configuration :: Decompile The Kcp.dll Located In The Bin Folder?

Oct 6, 2010

i have being asked to debug some asp pages.. when i received the folder, i only saw .ascx files.. i found that i need to decompile the kcp.dll located in the bin folder to do my work.. i have VS 2010 and .Net Reflector.. but when i open the dll with the reflector i can only view the codes but i cannot edit it.. any1 able to assist me on this? Summary: 1) Decompile kcp.dll 2) edit the codes and compile it back.

View 2 Replies

Installation :: Decompile The Xenocode Postbuild 2009 For .NET .exe File?

May 3, 2010

I have one .exe file, that was created using Xenocode Postbuild 2009 for .NET Obfuscator.

i need to decompile and need to do reverse engineering. i tried using .Net reflector, but it didn't worked for me. does it possible to decompile the same .exe file, with other any decompiler.

View 7 Replies

Web Forms :: How To Protect Textfile From Viewing

Jul 27, 2010

I have a process where I ftp a textfile to a webserver and then process the file (load it into a database). The textfile is then deleted. How do I protect the textfile from being viewed/ accessed by a user while it exists? I'm using ASP.Net 2.0

View 3 Replies

Web Forms :: How To Protect Website From Hackers

Nov 29, 2012

How to protect our website from Hackers. I have developed a website. This is still on a demo url. This is not on the original url but i see that some people in USA and other countries are accessing the page with my old urls. I get the mail of error report with IP address of the user.some user try with wrong url like [URL]. How i will protect my website from these types of users and also from Hackers.

View 1 Replies

Web Forms :: Protect FileUpload Control Against Virus Files

Jul 28, 2013

I have a webpage where by user can upload jpg file through browse control on my server. Functionality working fine.

I have concern that if any one create virus and assemble it in a form of jpg and upload it on my server which can crash the hard disk or any otherĀ  disaster.

View 1 Replies

Web Forms :: How To Protect Page And Images From Print Screen

Aug 23, 2012

I have images on my page. I want to protect them. so, i want to protect my page and images from print screen. How i will do it.

View 1 Replies

C# - How To Protect The Webpage

Aug 8, 2010

web pages running on the localhost, if i copy the web page link (address link), then copy to the another tab or browser, it should not open, it should display a Login Page.

For example, web pages are

Login.aspx
Account.aspx

Once Login, account page will open, then copy the address link, then try to open in another tab or browser. It is directly account page is display.

Account page directly should not open without login page.

How to protect the web pages.

View 8 Replies

Protect (vb & Cs) Files?

May 22, 2010

I am new at asp sites, and just started to use visual studio...

So every page i make, there is another one (source file) linked to it.

Example...default.aspx and with that the default.aspx.vb or default.aspv.cs. I know what those files are for, but how do i protect them from being downloaded from users... Anyone can just type the url, and get my hard work :-/

View 3 Replies

How To Protect The Connectionstring In Web.config

Oct 26, 2010

I have a website about to go live. I'm wondering what I should be doing about the connectionstring in the web.config. Do I obfuscate it and it so how?

View 3 Replies

How To Protect VideoFile Link

Mar 13, 2011

I know there is a server software named media server protects video link to direct accessing.But adobe's.

Is there a way to protect video link? or progressive video stream loading and preventing video direct link.in aspnet ? so no jdownloader or any link gather programme can detect it.

View 2 Replies

C# - Protect Application To Run Only On Specified Domain?

Mar 9, 2011

I'm going to publish an asp.net pre-compiled web site on shared hosting account but I don't want my code to be copied and able to run on another domain. I need to check domain and if not example.com or www.example.com redirect to error page or show error as response.

EDIT: Here is my solution based on given answers

void Application_BeginRequest(object sender, EventArgs e)
{
string[] safeDomains = new string[] { "localhost",
"example.com", "www.example.com" };
if (!((IList)safeDomains).Contains(Request.ServerVariables["SERVER_NAME"]))
{
Response.Write("Domain not allowed!");
Response.End();
}
}

View 3 Replies

Protect File For Download?

Jan 18, 2011

I have a page which includes video player (flash or silverlight). How I can protect videofile for direct download?

View 2 Replies

VS 2010 - Protect From SQL Injection Where If A Is Put In End Of URL

Jul 22, 2011

How to protect from sql injection where if a ' is put in the end of the URL there is an error ?

View 12 Replies

How To Protect A MySQL Database With A Password

Dec 4, 2010

Code:
Sub btnLogin_OnClick(Src As Object, E As EventArgs)
Dim myConnection As OleDbConnection
Dim myCommand As OleDbCommand
[code]....

I found this code for user authentication. How secure is this? Can this be bypassed? Can I protect a MySQL database with a password? Can people see a MySQL database's data if it's not protected?

View 19 Replies

Security :: Way To Protect Files From Download

Dec 17, 2010

I'm working on a website that streams audio files for the user from a directory on the server machine. How do I protect the audio files from users being able to navigate to the folder and just downloading them locally, but still provide them access to stream them? If I set permissions on the folder via IIS, is there a level that I can set so that the server can stream but not allow anonymous access?I'm sure there is a tutorial or other thread about this out there, it's just hard to search for this specific issue. Any help or a simple link to another thread/tutorial

View 3 Replies

Security :: How To Protect Word Document

Aug 19, 2010

User downloads a document from a specified site, saves to the local disk and fills in confidential details. When other users logs on to this computer and if they try to access the file, the document should not be accessible. Also consider that the document can be saved to a common server too, in which case, no one else other than the person who downloaded and filled the document should be able to open the document.

some options to protect this document.

View 6 Replies

Security :: How To Protect Contact Form

Apr 23, 2010

I have contact form and offten using this form my web site is under attck... someone install some code who try to connect using java scriptand all java scripts that I'm using in my web site are infected...

How to protect my contact form?

View 4 Replies

Security - Password Protect Application?

Sep 18, 2010

I have built an ASP.NET application that needs to be password protected. This application will be installed on multiple offline computers, and we need to make sure that when being installed it requires a password. But even if it requires a password, someone can easily copy the database and the published folder and duplicate the application on their system right?

I need a way to prevent this. It should only work on laptops that we have installed it on.

View 1 Replies

Protect Link For Public Downloads?

Jul 28, 2010

I've got SL application where i should implement file managment subsystem. I've got hierarchical structure of filesfolders(just description). Also each filefolder has its own permissions to usersgroups. I would like implement that one user who has permission to download file couldn't give it to another user, who hasn't this permission. So if user has download permission he get link [URL] and download it. But he could give this link to another person without permission.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved