Tool for Encrypting ASP File |
| |
|
|
|
New Poster Posts: 14 Topics: 9
|
|
|
March 06, 2008, 04:46:32 AM
|
|
Hey All,
I am looking for a tool that can encrypt my .asp files, but will run properly on the web server.
Can anybody sugeest me such free tools that they have used and have experience with.
Thanks in Advance!
|
|
| |
|
|
|
New Coder Posts: 16 Topics: 2
|
|
|
March 18, 2008, 02:27:03 AM
|
|
Hi universal, why do you want to encrypt the asp files?
|
|
| |
|
|
|
New Poster Posts: 14 Topics: 9
|
|
|
March 18, 2008, 03:15:56 AM
|
Yes thats correct! Do you know any tool that will help me to encrypt asp file or bunch of files? But when I upload the file on server the asp file should run without decrypting it. Is it possible?  need help!
|
|
| |
|
|
|
New Coder Posts: 16 Topics: 2
|
|
|
March 24, 2008, 01:24:55 AM
|
|
I think I know your purpose.. are you trying to sell your asp application and do not want your end user to see the source code?
how about this idea.. you can just give all your asp source code.. but you separate some of your important source code on component file. dll file is more hard to reverse.. even there are tools to reversel.. but it is hard to understand. :p
|
|
| |
|
|
|
Code Guru
Location: India
Gender:  Posts: 1387 Topics: 105
|
|
|
August 23, 2008, 10:31:43 PM
|
|
Do we really have tools throught which we can encrypt our asp coded files?
|
|
| |
|
|
|
Regular Coder Posts: 50 Topics: 15
|
|
|
September 11, 2008, 01:23:50 AM
|
|
Hey man If you really want to encrypt some files i think you can use any text encryption utility ......... There are many free softwares available for doing it which are easily available over the internet.......... SO go ahead.......
|
|
| |
|
|
|
New Coder Posts: 49 Topics: 14
|
|
|
September 16, 2008, 03:57:23 AM
|
Hi you can use teh ASPEncrypt tool to encrypt you file.AspEncrypt is an Active Server component that brings security to your application through encryption. Please use the below link to use this tool http://www.aspencrypt.com/
|
|
| |
|
|
|
New Coder Posts: 25 Topics: 16
|
|
|
December 17, 2008, 10:52:24 PM
|
|
I have used the tool html protector which also protects asp pages. It wont allow to save a html page or asp page and even encrypt content of the site on ftp too
|
|
| |
|
|
|
New Coder
Location: UK
Gender: 
Age: 26
Posts: 20 Topics: 3
|
|
|
March 08, 2009, 09:36:45 PM
|
You can use the Aspnet_regiis.exe tool to encrypt sensitive data. Below is the link to get it : http://encrypt-asp-files.qarchive.org/hope it helps you a lot
|
|
| |
|
|
|
New Poster Posts: 3 Topics: 0
|
|
|
August 06, 2010, 04:49:54 AM
|
|
Taking a clue, Microsoft has provided the capability to encrypt sensitive information in configuration files including connection strings in ASP. NET 2. 0. With this new capability you can easily encrypt sections of configuration files which makes your application secure.
This new capability brings it with performance overhead that occurs when you encrypt or decrypt sections of web. config files. So use it sparingly. That means be judgmental and judicious when you decide to encrypt data.
« Last Edit: June 04, 2011, 10:43:02 AM by Admin »
|
|
| |
|
|
|
New Poster Posts: 1 Topics: 0
|
|
|
September 08, 2010, 11:00:09 PM
|
|
You can use the Aspnet_regiis. exe tool to encrypt sensitive data. Below is the link to get it :
hope it helps you a lot
« Last Edit: March 09, 2011, 04:22:25 AM by Admin »
|
|
| |
|
|
|
New Poster Posts: 6 Topics: 0
|
|
|
December 16, 2010, 04:11:51 AM
|
|
I would like to help you, but unfortunately I am not good at it.
|
|
| |
|
|
|
New Coder Posts: 18 Topics: 0
|
|
|
March 08, 2011, 02:45:09 AM
|
|
Excellent post, keep them coming!!. .
|
|
| |
|
Small Business Management Software How are you all? Activity
|
|
New Poster Gender:  Posts: 1 Topics: 0
|
|
|
April 25, 2011, 06:41:37 AM
|
|
I think there is no tool to encrypt ASP file.
Small Business Management Software
|
|
| |
|
|
|
Professional Coder Posts: 229 Topics: 7
|
|
|
July 19, 2011, 11:41:46 PM
|
|
Yes i am also searching for encryption, but i dont know how to do that. Please anyone tell me how to do it or there are any other options.
|
|
| |
|
|
|
Regular Coder Posts: 88 Topics: 10
|
|
|
August 03, 2011, 02:17:29 AM
|
|
Hi friend do you know MemCached?
Maybe you can implement that.
Good Luck!
|
|
| |
|
|
|
Regular Coder Posts: 73 Topics: 2
|
|
|
August 04, 2011, 09:48:29 PM
|
Encrypting Sections with the aspnet_regiis tool To encrypt a section in the web configuration file, use the aspnet_regiis command-line tool.
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe
The following command encrypts the connectionStrings section of a configuration file located in a folder named MyWebApp:
aspnet_regiis -pef connectionStrings c:\Websites\MyWebApp
To use the virtual path. The following command encrypts the connectionStrings section of a configuration file located in a virtual directory named /MyApp: -app option is used to specify the application's virtual path.
aspnet_regiis -pe connectionStrings -app /MyApp
|
|
| |
|
|
|
Professional Coder Gender:  Posts: 242 Topics: 3
|
|
|
August 23, 2011, 10:05:39 AM
|
i am using this one too..
|
|
| |