406 Topics

Member Avatar for
Member Avatar for Christopher_12

I want to encrypt and decrypt the password and username of my login table I already populate my login table with 5 rows Can anyone suggest some Encryption and decryption algorithms for Password protection? here is my current code Option Strict On Imports System.Data.SqlClient Public Class Frmlogin Private strCon As …

Member Avatar for Reverend Jim
0
313
Member Avatar for Aeonix

I needn't even explain it, look it up. You needn't to click anything, just zoom-in 10%, then zoom out as far as you can, and notice how table cell and a div, go full on agression. View website itself under `5millionpixels-##.comlu.com`, (no I'm not a bot, but files are PHP, …

Member Avatar for Aeonix
0
167
Member Avatar for savedlema

Greetings everyone! I have some codes in my application which makes a backup of mysql database and save the backup .sql file to a location on the hard disk. I made the code in like 2013/early 2014, I think I was then using a now older version of mysql, it …

Member Avatar for savedlema
0
345
Member Avatar for Ahmed91za

hello i'm trying to figure out how to write a program in c++ that check when i insert a password and force me to add at least 2 capital letters and 2 numbers in the password (you've seen this before right? when signing up for new account and checks for …

Member Avatar for ravenous
0
281
Member Avatar for vegaseat

Just a simple password creator using Python code. The length of the password can be set and the characterset could be changed if you so desire.

0
564
Member Avatar for QuasaurNC

I've received DaniWeb updates for quite some time, but today when i tried to retrieve my password, i never got the email (dev@clmitchell.net)...so i created a new profile with my linkedin acct (proit@clmitchell.net) and now write this post with a renewed resolution to be more participatory!

Member Avatar for QuasaurNC
0
5K
Member Avatar for lithium112

For my angular controller I have: app.controller('AdminCtrl', function ($scope, $http) { $scope.data = { Name: '', Password: '' }, $scope.login = function (data) { $http({ method: 'POST', url: '/login/postlogin', data: JSON.stringify({ data: $scope.data }), contentType: "application/json", dataType: "json" }).success(function (data) { alert('success!'); }).error(function (error) { alert(error.message); }) } }); For …

Member Avatar for lithium112
0
214
Member Avatar for Ian_7

My goal is to populate my HTML table with SQL results that I pull from the below PHP code that I have written. Keep in mind that in reality my hostname, username and password variables do have string data in them. The first block is my PHP where I am …

Member Avatar for diafol
0
2K
Member Avatar for johnny80

We have a Windows NT 4.0 Workstation which we forgott the admin password. The admin is the only user assigned to the machine. I want to know, is there any free software out there that will let me reset or change the password of the administrator? or how can I …

Member Avatar for y0f4n
0
3K
Member Avatar for leoduchaine

Hi, Installed login script. Now get...Access denied for user 'root'@'10.24.3.4' (using password: NO) Can/should I delete the script/reinstall or try another script? Thanks!

Member Avatar for pritaeas
0
75
Member Avatar for jmensah

below is a code which new password entered and compare with the confirmed password. At run time, it doesn't show error but when input password diferent that of the confirmation, it doesn't give any matching error. please below why the system allow me to move to the next. [code] Private …

Member Avatar for Mr.M
0
5K
Member Avatar for BenWard

Hello, I'm having some trouble with CURL. I'm trying to use a web service to get a customer's name and address but it fails to send my post data when I use NTLM proxy authentication. $xmlToSend = "<?xml version=\"1.0\" ?> <soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:dat=\"$this->service\"> <soapenv:Header /> <soapenv:Body> <dat:CustomerDataRequest> <dat:SystemAuthentication> <dat:username>$this->user</dat:username> <dat:password>$this->pass</dat:password> …

Member Avatar for BenWard
0
971
Member Avatar for DanielJohns

The disk C was formatted. By means of R-Studio pulled out from it the ntuser.dat and Outlook.pst files. Through regedit I exported from ntuser.dat all branch [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem] to the .reg the file. I placed in the virtual disk the received file of the register and base with …

Member Avatar for DanielJohns
1
380
Member Avatar for habermax

Hi, I am Sergio and I am creating a website at the moment. You can Register and Login there. Now to my question: Witch maxlength values should I take for the different input fields, for example: - First Name - Last Name - Password - Email - Username I don't …

Member Avatar for diafol
0
193
Member Avatar for mohammed_22

haii....i had lot of different school datas and when i want to login into the data i want to get only the specified data according to the username and password..username and password is different for different schools can you please help me thanks in advance and iam waiting for your …

Member Avatar for mohammed_22
0
176
Member Avatar for Stefano Mtangoo

I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change. I was looking at Default Register/Login that comes with MVC5 sample and found that its table have fields that are problematic to my app. Specifically, my users …

Member Avatar for Stefano Mtangoo
0
2K
Member Avatar for Chanda_1

Hi, I'm using PHP, I am trying to develop: 1. a login page in HTML, once user enter the correct username and password, this will be directed to the User page. 2. In User page, there will be some text fields of the user (eg. name and address), all these …

Member Avatar for Lau_1
0
181
Member Avatar for koster25

I need help with creating a "user account" website (i.e. Facebook, Twitter, etc). I have a home page set up, i just need to have the it jump to the "user's profile page" once they login their credentials (username, password). I know it has something to do with MySQL/PHP. Can …

Member Avatar for almostbob
0
549
Member Avatar for nadiam

hello, I am having a problem opening my database. Before this I could directly go to phpmyadmin after logging in to cpanel without entering username/password. Today, I was directed to a page to enter username/password before going to the database so I did but I got this warning: Warning in …

Member Avatar for diafol
0
2K
Member Avatar for gganeriwal

Hi All, I am looking to build a dynamic web page for a website I am working on. Let me give a little background here and please give your suggestion how can I get started on this, useful links, etc. I am not a pro but I learn and work …

Member Avatar for jkon
0
160
Member Avatar for Leigh3
Member Avatar for happygeek
0
71
Member Avatar for pavithra madda

i have a doubt that is i have login form like user name and password and after that doing some selections the page show an body of email like this and my question is how to send that body of email to all users in a database using php and …

Member Avatar for Gideon_1
0
258
Member Avatar for Mike Askew

I have the following $subUsername = trim($_POST["user"]); $sql = "SELECT userID, username, password FROM user WHERE username = ':user')"; $q = $conn->prepare($sql); $q->bindParam(':user', $subUsername); $q->execute(); $result = $q->fetch(PDO::FETCHASSOC); print_r($result); echo "</p>"; print_r($subUsername); echo "</p>"; print_r($subPassword); However `$result` is always just an empty array, if I run the SQL on the …

Member Avatar for Mike Askew
0
356
Member Avatar for sam_7

my confirm button action listener is not printing the username and password even though I added a Actionlistener for it. please help thanks. Codes LoginDialog.java import java.awt.BorderLayout; import java.awt.FlowLayout; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JPasswordField; import javax.swing.JTextField; @SuppressWarnings("serial") …

Member Avatar for sam_7
0
297
Member Avatar for nadiam

$username = $_POST['username']; $password = $_POST['pass']; $query = "SELECT id,name,username,password,status FROM users WHERE username = " . $dbh->quote($username); $result = $dbh->query($query); $userData = $result->fetch(PDO::FETCH_ASSOC); $userName = $userData['username']; $hash = $userData['password']; $status = $userData['status']; if($username == $userName) { if(password_verify($password, $hash)) { if($status == 'Request') { echo "<script>alert(\"You have not been activated. …

Member Avatar for diafol
0
282
Member Avatar for gcardonav

Hey everyone, First of all I am a one-week self taught when it comes to web service so pardon if this is a duh! question. I was given a sample Web Service and aske dto re-create it a new one from scratch. I have been able to understand and apply …

Member Avatar for tobyITguy
0
257
Member Avatar for Tinnin

Hi All, I'm trying to setup ssh key authentication on a git server and remove the password authentication. The server and any clients are all local at the moment. The clients are running Windows 7. I've got the ssh key part set up but I'm having trouble preventing the password …

Member Avatar for Tinnin
0
463
Member Avatar for TObannion

Okay, here I am again. I searched the forum and found the posts that I need to solve this password validator, but I'm not putting it together in my head correctly for some reason. I haven't started the isUpper, isLower, and isDigit functions, but I'm going to do those next. …

Member Avatar for ROMEO VINEET
0
3K
Member Avatar for sam1

hi, I am creating a form for user to update their details which is saved in the database. So far i can show their details in the form where i have a submit button but the updating part doesnt work(it doesnt update at all). here is the code: [CODE] <html> …

Member Avatar for diafol
0
3K
Member Avatar for Asira18

#include <iostream> #include <conio.h> #include <string> #include <windows.h> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { char bname[97],number[34],code[22], name[10],bcate[10],pass,book,author,ID,school,course ; char type, address[5],x,department,quantity,choice,date[10],aname[20],btitle[50], bcode[9] ; int getch(); int num1,num2,num3,num4,num5,num6,num7,num8,op,a, ph[20],num,i=0; int …

Member Avatar for Asira18
0
370

The End.