passwords

remember passowrd works in ff but not in ie and chrome

Hi, It seems that my html login form supports "remember password" in ff but not in ie and chrome. Can anybody tell me why? Here's the code: <form name="login_form" id="login_form" action="" method="POST"> <div class="login_line">name<input name="user_name" id="user_name_id" size="16" maxlength="16" value="" type="text"></div> <...

How can I securely bookmark user logins in a desktop app?

I'm currently writing a simple FTP client (using C# and .NET). It's important that users be able to "bookmark" their previous FTP connections--including authorization information, so they don't have to type the password again every time. Is there any way I can do this securely? How do other programs, like Filezilla and Firefox, manage ...

iPhone SDK: Storing username and password in the code.

Hi, In my app, user can upload files to a ftp server. To open the connection and write to the server, I need to use username and password. Having FTP username and password in the code looks like a security issue. Can someone please tell me how can I securely store this in my code and use it to connect to the server? Thanks a lot! ...

Determine the maximum password age in Active Directory

I want to expire users' passwords on an individual basis in Microsoft Active directory at different times. I understand that each user within AD does not have it's own password expry time. Instead there is a Maximum Password Age associated with the domain, and a LastPasswordSet date associated with the user. I intend to set the LastPas...

How do I move the cursor from the first textarea to a second textarea, without using tab or the mouse ?

I'm building a password box that holds three text areas. Each text area has one character. After I type the first character of the password, I have to press tab or use the mouse to get to the second text area to type the second character of the password. I would like to make this happen automatically (cursor movement) just right after I ...

MembershipUser class CreateUser password paramter

I'm using the ASP.NET Configuration for my users and their roles. I'm also using the MembershipUser class with its function CreateUser. I have it working, but was curious about something. When I add a new user and pass this function its password parameter (which in this case is coming from a textbox on the page). It seems like it only ...

how to use hashed password in impersonate of ASP.NET

I have an ASP.NET application that requires impersonation as an administrator user. In web.config: <identity impersonate="true" userName="administrator" password="password"/> The customer complained about saving the password in clear text format. Is there a way to save the password here as hashed? ...

C# - Password Database

So I want to make a program that allows you to store and search for user names/passwords for online sites there signed up to. I know C# has some database options but I don't know much about it. I also heard that it can read/write excel files. Whats do you think is best for storing the data? ALSO do databases need to be stored online o...

Is it possible to export saved passwords from Toad

I'm looking for a way to export saved usernames/passwords from Toad for Oracle (9.5.0.31). It doesn't have to be in a usable format for importing - even a plaintext format would be fine. I believe the passwords are stored encrypted in CONNECTIONPWDS.INI, but from what I've read, that file doesn't transfer from one machine to another. ...

C Privilege Escalation (With Password)

Hey everyone, I need to write a C program that will allow me to read/write files that are owned by root. However, I can only run the code under another user. I have the root password, but there are no "sudo" or "su" commands on the system, so I have no way of accessing the root account (there are practically no shell commands whatsoever...

Is it possible to remove a Password from a PDF file using PHP?

Hello, I would like to ask if it's possible to use PHP in removing a password from a password-protected PDF file in which I already know the password? I've seen this page which provides many options but using bash script. :( I was required to use PHP as much as possible. Any suggestions appreciated! ...

convert password encryption from java to php

I'm trying to create a PHP version of an existing JSP program, however I'm stuck at the password encryption part. Could you please tell me how to convert this one? I know it tries to get the md5() but after that, I don't get it. I get lost in the Stringbuffer and for() parts. Can you help me out? public static String encryptPassword(...

MySQL Accept Any Password

Suppose that I have a test server with a large group of test accounts. The test accounts have unknown passwords which are hard-coded into the application's reports and are stored encrypted in the mysql.users table. Is there any option or hack which can be used to make mysql accept any text as the "correct" password for an account? For e...

how to store passwords in database?

I use jsp and servlets in my web application. i need to store passwords in the database. I found that hashing will be the best way to do that. I used this code to do it. <%@page import="com.jSurvey.entity.*" %> <%@page import="java.security.MessageDigest" %> <%@page import="java.security.NoSuchAlgorithmExcepti...

How to hash a password and store for later verification with another digest

I am using gsoap's wsseapi plugin and would like to store hashed sha1 passwords rather than plain text. I have spent a rediculous amount of time experimenting with various methods of hashing the plain text password for storage. Can anyone suggest a way to hash a password so it can be later verified against a username token digest sent b...

How digg retrieve password from facebook? (at Facebook connect)

When I logged into Digg using Facebook account, Digg asked me to create it's own account. I agreed, antered usernae only(!). And after that i have possibility to login into the Digg without Facebook connect. So question is - How Digg Knows My Password? ...

Qt - Password field

Is there any Qt-built-in method to warn user (with pop-up window) that CapsLock is switched on while password field is active? I am using for passford field QLineEdit (is it good?) with setEchoMode(QLineEdit::Password). ...

can WTForms check two password is or not same when someone register .

WTForms is a forms validation and rendering library for python web development and i write this code to check two password is or not same : from wtforms import Form, BooleanField, TextField, validators class SignUpForm(Form): username = TextField('Username', [validators.Length(min=4, max=25)]) email = TextField('Email', [...

Working password encyption methods for user password managment needed ?

Possible Duplicate: Password encryption/ decryption code in .NET Can someone provide working code to encrypt a password and store it in the database.Anything simple would do,some "salt" would be nice. public void Encrypt(string password) { } public void Verify(string password) { } ...

Can you figure out the password hashing scheme?

I have two passwords and two resulting hashes. I can't figure out how the hash is derived from the password. I don't know if salting is used. I don't know if the password is hashed as a integer value or as a string (possibly Unicode). Password: 6770 Hash: c12114b91a3841c143bbeb121693e80b Password: 9591 Hash: 25238d578b6a61c2c54bfe55742...