Save Password Of Gmail?
Jan 15, 2012
In one of my open source apps, I have to work with gmail atom feeds.
Right now, I am using AES to encrypt the gmail password and store it. (the key is the MAC address of the system along with some hard-coded string.)
the security is highly compromised here.if anyone has access to the machine(thus the MAC address) and my source code(its open source), then he can get the gmail password.[code]...
actually my app will monitor the gmail account for mails over a period of time, so if I don't save the password the I'll have to ask the user to enter the password every time the program starts.
View 1 Replies
ADVERTISEMENT
Dec 25, 2011
how to save data (for example some text that user type [as password etc]) and save that password on same location where is application. After saving I want to have also Load option so we can load saved data.
View 7 Replies
May 12, 2011
Check Email if gmail and valid password length.
Screenshot:
Public Class Form1
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
[Code].....
This code might be useful for validating email address, and for simple email sender/bomber.
View 2 Replies
Mar 12, 2011
Question I: How do I make a username and password save to a .txt and if it the txt exits, then it will fill the information in the login box again?
Question II:Can I encrypt it easily and decrypt it easily or will that require some advanced coding?
View 1 Replies
Dec 14, 2011
I am a beginner, i have used two text boxes (for username, password) and a button. The password should be encrypted and saved in database when I click submit button.
View 3 Replies
Jan 14, 2012
I have a register.aspx and a login function and i am using vb.net
in my register.aspx...i have a user name textbox and a password text and a submit button. IF the user click on the submit button, the password will be hash and store with the username in the database table called "Customer"
1st Qn: i have a problem is that i never try before hashing, so i not sure how to code it , hopefully if someone got a sample or example to teach me it will be nice
2nd Qn: besides that, in my login function, how am i going to compare the hash value for password that is store in database with the password in the textbox to allow to login?
View 2 Replies
Apr 2, 2011
at the Moment in my code I have the words("C:PrivateWords"). and that is where the Username & Password is Stored/kept, But is there a way to store the Username & Password into the Programe. ect... in a form that only the owner of the programe can see. And what would you use on that form ie: listbox, textBox multiline, TableLayout Panel, that if it is possible to create a Form.
and would the code be something like The Altered code Below the code Below:
Public Class CreateUser
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
[Code].....
View 1 Replies
Sep 15, 2011
i am having a mysql database that is having a password. so i am using it to login to the program. Is there a way to save the password (md5 encrypted i can do this) on a flash drive so i can access it from the program but the user can't access it.
View 17 Replies
Jan 15, 2012
I'm trying to create a password change form for my company's vendors. There are a couple of scenarios I could encounter doing this:
1 - User enters invalid current password
2 - New passwords do not match
3 - User's account is locked
4 - User cannot authenticate because password is expired
It's case 4 that I'm struggling with, because their is no way for me to take the password the user entered and verify it against active directory without getting an error.
View 5 Replies
Jun 1, 2011
I am implementing a system where the user can Reset their password if they have forgotten it.Once it is reset I want to give them the option of changing the password so that it will be something more memorable to them.The password is hashed and if i enter in the correct old password and new password the password does change.If I enter in the wrong old password and new password the password doesnt change.Is there a way to match the old password with the old password field in code behind so I can throw up an error to the user to tell them what is wrong? [code]
View 1 Replies
Feb 10, 2009
How do you get a textbox being using for password entry to display the black circle that you often see in web forms, on the iphone etc etc?
I can change the PasswordChar property to an asterisk no problem and even copying and pasting symbols inserted into Word seemed to work - just couldn't find a symbol that looked like a bullet point!
Can this actually be achieved for a standalone exe, or is it something unique to web forms? Surely copying and pasting symbols from Word isn't actually the answer?
View 6 Replies
Jul 25, 2011
I read and write the cells from excell sheet sucessfully. now please i need a advise on the following
1. Where i save the file? at the time of project publishing it include also with the project?
2. how i check file exits or not?
3. How i pass the password if excell sheet have password and enable macro?
View 1 Replies
Apr 21, 2010
I'm currently working on a CRM project in vb.net. I want the program to start with a prompt that asks for a password and if the user enters the correct password then the main form loads.Im having some problems wrapping my mind around this...
View 10 Replies
Jul 15, 2009
I am looking to create a simple password box that will ask the user for a username and pass, if the user is validated against the usernames and passwords in an .ini file the login box will close and launch a program also stated in the .ini file. I would also like to be able to launch different programs for different users.
View 16 Replies
May 1, 2009
I'm trying to send an email with the SMTPClient through a GMail account, but I'm having the problem that once I press the Send Button, the app freezes and I'm not getting any email.[code]...
View 7 Replies
Dec 2, 2009
Is there a way to inerlock letters in a password. EX: lets say my password is 1234567password, is their a way to interlock or inject random letters/numbers /symbols/etc into the password? Ok so our password is = 1234567password is their a way to make it like this = g1i2h3h4q5d6g7rp4a7s;?s`w6o+r/d5
View 3 Replies
Jan 15, 2012
how to reset the existing password(topsecret)with a new password by using the "replace" keyword
in the below code shown
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]....
View 6 Replies
Apr 10, 2010
I have a button on my Form called EditingButton that will have a DialogBox appear asking for a password. How can I have "*" show instead of the Password it-self when the user enters the password?[URL]...
View 1 Replies
Mar 21, 2011
I have developed a task Using VB.net (windows Application). I want to create a Login window for the Current user only allowed to use my application.So In my Login window UserNAme textbox I have showed the curent Login UserNAme like,
txtUserName.Text=Environment.UserDomainName & "" & Environment.UserName
And I have set txtUserName.Readonly =True.
Now the User to type the Password in my application password textbox.
[code]......
View 1 Replies
Mar 30, 2012
why this wont send...ive checked email address and password numerous times...
Imports System.Net.Mail
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim Mail As New MailMessage
Mail.From = New MailAddress("myemail@googlemail.com")
[code]...
View 3 Replies
Dec 30, 2011
I have tried to write a program to get emails from my gmail account but no luck. Can you provide me with some code get all my emails from my account or a single one.
View 2 Replies
Mar 13, 2011
How can I reseive or open my gmail messages by vb.net2008 code ???
View 4 Replies
Jan 4, 2010
I want to build an application for reading mails from gmail account using vb.net how do i
start?
View 5 Replies
May 29, 2012
I have made a program that send emails but know im trying t receive them. I have looked on google and things but i cant get it.
View 8 Replies
Jul 26, 2009
I have a problem sending an email using gmail.. the code I use is the following :
[Code]...
View 5 Replies
Jun 4, 2009
Can't connect to server is what I get out of this: Public Sub SendEmail()
Dim client As New SmtpClient()
Dim sendTo As MailAddress = New MailAddress(TextBox1.Text)
Dim from As MailAddress = New MailAddress(User(SendFrom) & "@gmail.com")
Dim message As New MailMessage(from, sendTo)
[Code]...
View 6 Replies
Jan 10, 2011
How can I, download attached files from unread received mail , by VB code.
View 1 Replies
Oct 7, 2009
how do i access my inbox and find emails that were sent from a specific person and send a reply to them?i have a list of people with whom i keep in touch with from school and since i have not replied to them in a while, i would like to feed a list of email addresses into the program that would then find emails from those people and it would reply to those emails?
View 1 Replies
Jan 6, 2011
I am trying to send an email through following code
CODE
Dim MyMailMessage As New MailMessage()
'From requires an instance of the MailAddress type
MyMailMessage.From = New MailAddress("a@gmail.com")
[Code]....
NOTE : I have tried SMTPServer.Port = 587 too but still its not working
View 1 Replies
Dec 21, 2011
Im tyring to do an application like outlook to send and receive e-mails.
View 1 Replies