VS 2008 Make Database Setting Secure?

Oct 9, 2011

i have a program that connects to mysql database to check username/password.I have a line like this in the project:

conn = New MySqlConnection("server=myserver.info;Port=3306; user id=dbusername; password=dbpassword; database=dbname")Anyways, a user managed to get this info from the program

How can i make it so they can NOT grab this info from the program ?

View 12 Replies


ADVERTISEMENT

VS 2008 Datagridview Connect To A Secure Database

Aug 1, 2010

Busy to connect a secure access 2003 database (with a mdw file) to a datagridview but we don't know where we have to place the mdw file in the (advanced) properties

View 3 Replies

Made A Web Browser In VB Express Edition 2008 - Make It Safe And Secure?

Jul 30, 2009

i recently made a web browser in visual basic express edition 2008 for my family computer use purposes only. Id like to make sure that using my web browser and entering personal information on it will be safe. How can i make it safe and secure? Additionally i was wondering if id have to develop my own addons or if its compatible with Firefox addons.

View 1 Replies

Make Applications More Secure?

Feb 23, 2011

I don't want my programs to be cracked. I have this simple authorization system that prompts my users to enter their forum credentials (I have a forum and the users must be registered members to use the programs).So I made a php script that will take in 3 strings sent in by my applications and it will check against the database if that user exists and is of the proper group and it will display a message on the page and my application then looks for the response in the page source which says if this particular user is allowed to use the program or not.

View 4 Replies

Make.net Function Secure On Web?

Apr 6, 2011

I have a VB.Net exe application that has a function in it that contains my encryption method that is used through out my application. This function is used to generate all my encrypted passwords and files etc. therefore for obvious reasons I do not want this to be visible to end users. In my application this is fine as it is compiled as a .exe. However I want to now create a ASP.Net web based version of my application.

Now here comes the question, if I was to create a web version of my application then this function would be visible to the end users along with a large number of other functions that if edited could bypass security and license control.I would like to know what is the best way to keep my ASP.Net webbased version secure from tampering, or is ASP.Net not the best for this?

View 3 Replies

Make More Secure Connection To A Site Through Webclient?

Sep 8, 2010

I am making a program with a very good HWID system, but so far it uses a standard WebClient control, I want to know how to make it more secure, like possibly encrypting the connection to a site (Uses PHP), or making sure the connection isnt being tampered with. are their any tools/pieces of code to do these checks/encryption?[code]...

View 1 Replies

Secure Passwords To Database?

Jun 26, 2010

I recently made a small app for a friend and then made it a public app, in doing so I forgot that it connects to my MS SQL DB and checks for values. Someone used Red Gate .Net Reflector to get my password and destroy it all. I've contacted their ISP and they are looking into it, apparently this person has a static ip with them.So this is a lesson learned at a heavy price for me. How can I prevent this from happening again? How can I get away from the unsafe connection string they were able to use?

View 5 Replies

VS 2008 - Setting Database Path From Form?

May 18, 2009

I have an application that's going to be portable so it's likely the path of the database itself (access mdb file) will change so hard wiring the path in the app.config isn't practical. I would like to create a 'Settings' form for the user to enter the path (browse for would be ideal but I can figure that out later) of the database file and save it for future use with the same app. I've found a few things out there talking about creating a new app.config file alongside the original with a 'key' defined but I'm not sure how that relates to the original app.config and how it would call the new variable to make the connection.

View 3 Replies

C# - Secure Login From ASP.NET 3.5/4.0 Page To SQL Database?

Nov 3, 2011

What is the most secure way to create an ASP.NET 3.5/4.0 login page connection to an SQL database.

View 2 Replies

Secure The Database Structure After Deployment In Sqlserver2008?

Apr 28, 2009

I m working on a project using vs2008+vb+sqlserver 2008. How can i secure my database, so that user can't see the structure of my database. I mean she shld not able to see tables and fields of my database. Is it possible in sqlserver2008?

View 9 Replies

Is This A Secure Method Of Providing Service For Database Applications

May 10, 2012

WinFormsApp Login passes information to .php (server based) Login (provided credentials are correct) to DB to retrieve Decryption Key. WinFormsApp then uses Decryption key on Hardcoded encrypted connection string and renders application usable.This would then eliminate the necessity to encrypt/decrypt a connection string at runtime, virtually rendering any unauthorized person with a useless software.

View 1 Replies

VS 2008 Setting A Primary Key And Changing The Names Of Some Fields On Database File?

Aug 5, 2011

Lets say we have an Access file in a well known path (i.e. "C:MyFolderMyFile.mdb"). That file does not have a primary key set on the table we are interested in . Is it possible to set one of the fields as a primary key (for example the "ID" field , which is also an AutoNumber data) ? And one more thing : I'd like to change the name of a field on that table . For example , lets say there is a field called "My Field 1" (note the space characters) and we want it to be renamed as "My_Field_1" . If it's possible , I'd like both these changes to be permanent in the data base file itself , not just in the imported DataSet ,

View 7 Replies

VS 2008 Secure File Deletion?

Feb 26, 2010

I was looking online for a application that can delete a file more secure then. Kill(C: est.txt")Then i had a thought.Maybe i can make my own.Is it possible to make a secure file deleter in vb.net or should i look into C++

View 5 Replies

VS 2008 Secure Upload Of A File To FTP?

Nov 30, 2009

What would be the best way to input the password when uploading a file to FTP? The file gets uploaded behind the scenes without the user inputting any details (the username + password gets used)

So far I've used the network.upload method but the password is in plain text and obviously readable. I need to upload the file without anyone obtaining the password when doing so, would obtaining the password from a mysql database or some sort of encryption be better?

View 5 Replies

Disable UAC Win7 & Vista - Make Software As A Secure Software For Windows?

Apr 10, 2012

I already build an Antivirus but the problem is When the windows start show the UAC message for Users, so that let them aware from it.So how can I turn it off on bith windows Vista and win 7? or make my software as a secure software for Windows?

View 1 Replies

Sending SMS To Mobile Using Secure Gateway From .net 2008 C#?

Oct 13, 2009

I am developing a desktop application in VS2008 with C#. How can I send an SMS using a secure gateway?

View 3 Replies

VS 2008 - Making Secure Login System With PHP

Oct 11, 2010

I have making login system using with php. Now I want to hide the link by using strongest MD5 hash, but the one I have got is uncrackable. I want to decrypt them in the runtime, but I couldn't.

Here's the
Public Class Form1
Function MD5Hash(ByVal strToHash As String) As String
Dim md5Obj As New Security.Cryptography.MD5CryptoServiceProvider
Dim bytes() As Byte = System.Text.Encoding.ASCII.GetBytes(strToHash)
bytes = md5Obj.ComputeHash(bytes)
[Code] .....

The GetMD5Hash's method is using for to decrypt the MD5 hash to turns into the actual strings and MD5Hash's method is using for encrypt the strings into md5... However, the connection strings can be sniff the packets sent out. How to decrypt the MD5 hash and how to blocked the connection strings in the packets sent out??

View 12 Replies

VS 2008 - Secure Password Protection For Info?

May 11, 2009

I am making an program that stores most of my text files in it. So I need a secure password protection to protect my information's. I was told that MD5 will get the job done, so I used an MD5 protection to see if it'll be good. I gave the test program to a guy I know and he manage to get my password within a minute. (I am still a bit new to VB so which encryption to use...)

View 21 Replies

VS 2008 How To Download File From Secure Website With Progress Bar

May 6, 2011

This is the Download file code which is 100% working when i will give directlink of file

And in this case progress bar is not working anymore and program hangs too let me know what is the problem with above code and how i will correct it

View 5 Replies

VS 2008 Sending Signed & Secure Email With Attachments

Jun 11, 2010

Newbie here I need to send a email with and attached file (a *.xls file) The condition is that the e-mail need to be signed and crypted. I already got a digital certificate sign (provided by Verisign). I also read something about X509Certificate2 Class on MSDN, and something about Outlook interop Model. My idea was use the Outlook Interop Model Class (from Outlook 2007) but i have no idea how to do this.

View 1 Replies

How To Make Database On VB 2008

Feb 13, 2009

how can i make database on vb 2008

View 1 Replies

Make Database In .net 2008 With Access?

Feb 15, 2011

I have make database in vb.net 2008 with access database is data grid i need to calculate total but i dont

View 4 Replies

VS 2008 Md5 - Make A Database Of MD5 Hashes

Jun 26, 2010

I'm trying to make a database of MD5 hashes (just for myself). I save the MD5 + Passwords in a .text file. But how can I if the two MD5' are the same, load the password out the .txt file? To read the .txt file I had something like this :

[Code]...

View 8 Replies

Make Module To Net 2008 And Using Mysql Database?

Jun 22, 2010

How to make module to vb.net 2008 and using mysql database

View 1 Replies

VS 2008 Make An Application Using Ms Access Database?

Feb 24, 2010

i'm trying to make an application using ms access database. This application is for our class, simply to enter students data and institutions details. However, i got stuck with combo; here is my question and the application background?

I have a database named "StudentData" with table "StudentDetails" with "RECNO" which is Auto Numbered (and is Primary key) and a number of different fields which accepts Students Name, class, accedemic year and so on.

What i want to do with the RECNO is, i want to make a combobox which will be filled with the record number of the students, when i click on any number from the dropdown list, i want the other fields like the txtName (for students name), txtClass, txtACYear etc to be field with each RECNO they belonged to.

View 6 Replies

How To Make Persistent Application Setting

Dec 7, 2009

I have an application that has two states based on the value of a Boolean variable: a read_only=true state and read_only=false state. The value of this state is stored in an external settings file. My application has a feature called deploy that generates a copy of itself in the same folder with the read_only=true state. But, the read_only variable value is stored in an external file so now both files will be in the read_only=true state. What I want to do is make one of them(the original one) always be read_only = false and the other read_only=true

View 3 Replies

Make A Database To Upload To Hosting Space And Use It With 2008 App?

Dec 26, 2009

I'm new to database design and am using Visual Basic 2008 Express.

View 5 Replies

VS 2008 How To Make SetUp For Program With Local Database(

Sep 3, 2010

How I make SetUp for program in vb.net with local database(data base which include in visual studio.net 2008) to make it work in other computers which not have the visual studio 2008?

View 7 Replies

VS 2008 Make .net Prog Connect To An Access Database

Apr 27, 2010

Been trying to make my .net prog connect to an access database. I cant figure out why I keep getting this generic error message. A first chance exception of type 'System.Data.OleDb.OleDbException' occurred in System.Data.dll Heres my code.This is my class to create the connection to the database:

[code]...

View 13 Replies

Set Keyboard Not To Make 2 '' After Each Other The Socalled Word Setting?

Aug 8, 2011

set keyboard not to make 2 '' after each other the socalled word setting?

View 7 Replies







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