406 Topics

Member Avatar for
Member Avatar for Whoaa512

search and didnt find anything that was close to this. so my assignment is to simulate a simple authentication, where the user enters their original pin or password(numbers only). it must use arrays to assign the password a pseudo-random assignment of 1-3 for digits 0-9. after that the program clears …

Member Avatar for Whoaa512
0
345
Member Avatar for kolibrizas

[CODE]SqlCommand command = new SqlCommand("SELECT Id FROM users WHERE Username=@Username AND Password=HASHBYTES('MD5', @Password)"); command.Parameters.AddWithValue("@Username", pieces[1]); command.Parameters.AddWithValue("@Password", pieces[2]);[/CODE] doesn't return correct result [CODE]SqlCommand command = new SqlCommand("SELECT Id FROM users WHERE Username=@Username AND Password=@Password"); command.Parameters.AddWithValue("@Username", pieces[1]); command.Parameters.AddWithValue("@Password", pieces[2]);[/CODE] returns correct result, however the data in mssql database has to be not …

Member Avatar for kolibrizas
0
181
Member Avatar for ryklon

Hello! Is there a way to hide the password of your database inside the source code? [CODE=vb.net]"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Application.StartupPath & "\Database.accdb; Jet OLEDB:Database Password = [B]MyPassword[/B]"[/CODE] As you can see the password is exposed, increasing the risk for the database to be compromise. Is there anything you can suggest …

Member Avatar for Reverend Jim
0
270
Member Avatar for BenzZz

Hi, I've already created registration and login scripts for my application, however i now want to include an option for registered users to reset their password if they have forgotten it and cannot log in. As currently, passwords stored in my database are encrypted, they cannot just be emailed to …

Member Avatar for BenzZz
0
188
Member Avatar for MKGMVP

We are currently using KeePass at our office, but multiple people cannot have the file open at the same time and update it. I need a password manager that isn't web based, is compatible with Mac OS, and can be accessed by multiple people at the same time. Anyone have …

Member Avatar for harinath_2007
0
225
Member Avatar for shapam
Member Avatar for ggeoff

Hi I do not know whether Outook, in this case 2007 running under Vista Home Premium, is the cause of this message. Email has worked, but now displays a Enter Network Password pop up. I would like to know whether this is a Microsoft Windows issue or one due to …

Member Avatar for ggeoff
0
287
Member Avatar for martin11ph

I've noticed a problem in entering passwords in some sites. For example, my password is [QUOTE] abc123DEF* [/QUOTE] If I type it directly in the text box, it will tell me there is an error. If I type it in notepad/address bar and Copy+Paste it, it works fine. What is …

0
191
Member Avatar for goedel

WinXP Startup Password Dialog big problem! My laptop W/XP presented a password dialog on startup or return from hibernation. It asked for a password (pw). I do not use a pw. I always hit enter, and W/XP began; no problems. Then I thought to improve things by checking the forums. …

Member Avatar for gerbil
0
252
Member Avatar for nikita.

I have finally written this code, but the prob with this is that when it is prompting for password it doesnt send any password to the ftp machine, we have to do it manually, but after typing it manually, it take the password line as command and shows that that …

Member Avatar for nikita.
0
203
Member Avatar for Anas Shahid

[code] # include<stdio.h> # include<stdio.h> # include<process.h> # include<stdlib.h> # include<ctype.h> # include<conio.h> # include<mem.h> unsigned char huge Data[100001]; unsigned char keystream[1001]; int Rpoint[300]; void main(int argc,char *argv[]){ FILE *fd; int i,j; int size; char ch; char *name; int cracked; int sizemask; int maxr; int rsz; int pos; int Rall[300]; …

Member Avatar for WaltP
0
230
Member Avatar for georgeoshardo

So I sent off my netbook to be repaired, and because of the crappy warrenty Asus offers it too 6 months to get back, my this time I've forgotten my HDD password. I changed the master and the user password in the BIOS when I was using it before it …

Member Avatar for caperjack
0
1K
Member Avatar for 1greatdeal

I bought a computer from a school auction.When it comes up a box pops up with a school user agreement.When you accept it goes to a user name and password screen.Is there any thing I an do to use this computer. thanks

Member Avatar for happygeek
0
221
Member Avatar for Cupidvogel

Hi, I installed MySQL from the MySQL site. The setup procedure required me to set an username and password, which I set as X and Y respectively (say). Then when I opened the mySQL command line client, it asked for password, and after providing Y, I was allowed in. Once …

Member Avatar for cereal
0
2K
Member Avatar for TrustyTony

Inspired by password entry discussions, I did this simple entry. You must of course find safe way to store the passwords, for example hashlib ([url]http://stackoverflow.com/questions/4820043/basics-of-python-encryption-w-hashlib-sha1[/url]) or [URL="https://www.dlitz.net/software/pycrypto/"]PyCrypto[/URL] and replace the simplistic example match for real life usage. The print at line 23 is just to check the attempts and to …

Member Avatar for Enalicho
0
10K
Member Avatar for The Bl

I have been trying to create a program that asks for a username and password, and if the user gets it right exits the program, if they get it wrong asks again, and if they get it wrong again logs out of the system. TWO QUESTIONS: 1: is this possible? …

Member Avatar for TrustyTony
0
330
Member Avatar for venky2ece

hi friends, gud evening. I have one doubt to be clarified. I work in somewhere, there we have local network resource(file server). We all have domain user names and, we have to enter our credentials to access files in n/w resource. so i entered and checked in the check box …

Member Avatar for caperjack
0
127
Member Avatar for Virangya

hi.. i'm going to host my project and on clients site, a user always have to login to view what he can view. So the user has a user name and a password. Is there a way i can enable a user to login automatically without just entering user name …

Member Avatar for Virangya
0
200
Member Avatar for JoshuaBurleson

I was just wondering if anybody has any ideas on how I could allow a users input to be disguised on the screen when they're entering their passwords (such as the case about everywhere on the internet) i.e. gmail's black dots in place of the actual text of a password. …

Member Avatar for Gribouillis
0
244
Member Avatar for vibhaJ

Hello All, I wand Firefox to remember my password when i login in phpmyadmin. But Firefox doesn't ask me to 'Remember password'. When i inspect phpmyadmin form using developer tool, i done see any trick. Secondly i also want in my website coding that when user log in Firefox don't …

Member Avatar for vibhaJ
0
1K
Member Avatar for anonymousi

i wanted know the vb.net code that checks the password strength on the basis of length ,special characters ,both combined ,numeric,alpha-numeric.... >>contents of form may include: >textbox for password >label or progress bar or trackbar to tell the user the strength(good ,very >good,excellent,poor) >button to execute commands...

Member Avatar for Netcode
0
4K
Member Avatar for kindofsudden

First time poster here... My VB.NET program compacts and repairs my DB, but somewhere in the process unsets the database password. No problem, just reset it through VB, right? Ummm... not sure how to go about that task. So I either need to know how to compact it without losing …

Member Avatar for kindofsudden
0
282
Member Avatar for Scicluna

Hello! I am trying to create a simple register/log in menu which allows users to enter the system using that username and password. I have already created the 'Register' section but I have difficulty linking it with the Username and Password in the 'Log in' section. Do I have to …

Member Avatar for Tellalca
0
439
Member Avatar for webdi

I'm no sure if this is the best forum to ask this question. It doesn't seem to fit in any of the categories. I've set up a password protected directory using htaccess. The client now is asking for customizable error messages if the user enters the wrong user name or …

Member Avatar for webdi
0
109
Member Avatar for tmparisi

I have an application that currently operates based on a static password that is hard coded into the application. I would like to somehow have the application look in a text file, say: C:\passtest.txt for a password. The text file will have nothing but the 1 password in it, it …

Member Avatar for djjavo
0
1K
Member Avatar for newprogramer

It works for the first time but when it loop nothing is stored wondering whats wrong could someone help me out please? [CODE]void main () { char buffer[256] = {0}; char password[] = "test"; char c,i=0; int pos = 0; do { buffer[0]='\0'; printf("%s", "Enter password: "); do { c …

Member Avatar for WaltP
0
152
Member Avatar for saideepak89
Member Avatar for MagicMedia
0
93
Member Avatar for webdi

Hi, I've not been successful looking for a solution to my problem. What I need is to password protect a directory. I could use htaccess, but the user doesn't want a pop-up login window. He wants to start on a page with a form with the username and password fields. …

Member Avatar for Stefano Mtangoo
0
200
Member Avatar for klemme

Hi, I am using sha1 for a registration form like this: [CODE] if($_POST['pass1']==$_POST['pass2']){ $password = sha1(mysqli_real_escape_string($connection, $_POST['pass1'])); } // This inserts an encrypted row in the DB, and works fine [/CODE] When i want to log in, well I cant login..This is the script: [CODE] $email = mysqli_real_escape_string($connection, $_POST['email']); $password …

Member Avatar for migcosta
0
626
Member Avatar for judithSampathwa

hi i am creating a login page in C#.net windows application and i have a remember me checkbox in the login interface. can some one give me a tutorial to code the remember me check box in the C# windows application thank you

Member Avatar for C#Jaap
0
2K

The End.