C++ :: Masking And Attempts On Password
Sep 9, 2013
Ive been working on a program that can mask the password and has 3 attempts. So far I can't do both at the same time. Here is my work. How can I do both?
#include<iostream>
#include<string.h>
#include<conio.h>
using namespace std;
int main() {
string _pass;
char input;
[Code] .....
View 3 Replies
ADVERTISEMENT
Feb 24, 2015
What if I want to let the user know the number of trials left...? Like "2 attempts left", "1 attempt left"?...
View 1 Replies
View Related
Mar 6, 2015
I'm trying to write this c++ programe:
Write a password prompt that gives a user only a certain number of password entry attempts, so that the user cannot easily write a password cracker.
Using FOR Loop. I know this can be easily done using while loop. But I want to know how to do it with for loop aswell.
Here is what I have so far:
Code:
#include <iostream>
#include <string>
using namespace std;
int main ()
[Code] ....
I don't see where the problem is.. The program just executes and does nothing.
View 9 Replies
View Related
Mar 2, 2015
I have an assignment where I am trying to get the frac bits of a IEEE number representation. The number of exp and frac bits are given as parameters from the main, but I am unsure what bit mask to use as a one-size-fits mask.
View 5 Replies
View Related
Mar 18, 2013
My program attempts to encrypt a file using XOR operator. However, when I attempt to encrypt a file, it says "Error in reading file", (a printf function I set up if the program could not read the file, obviously). The problem is that I don't know what's causing this. Instead of encrypting the file, it just deletes all the characters in it, so I put in a fprintf to put place some text into the file. Here is the code:
Code:
#include<stdio.h>
#include<string.h>
int encryptd(FILE *);
int main(void)
{
FILE *fileptr;
int recode;
char fname[25];
[Code]...
View 7 Replies
View Related
May 17, 2014
[URL]
#include <iostream>
#include <string>
#include <conio.h>
[Code].....
the code use in above link is good but one problem i cant able to use backspace to remove mistake if user made any mistake he cant able to remove the mistaken character
View 2 Replies
View Related
Oct 7, 2013
I'm a novice with C programming and i have to solve an error in the following code. The code works like you enter a password called "uoc" and it shows as OK. But surprisely when you entered another password as "Cambridge" it works fine too.
I think that the problem is in the array declaration but i'm checking resources and no success!
Code:
#include <stdio.h>
#include <string.h>
struct {
char str[8];
char ok;
} data;
[Code] ......
View 3 Replies
View Related
Jan 10, 2015
I am trying to read a "password" from a file, the file only contains the password... Here is my code:
int i=0, ch;
char password[25];
FILE *fp = fopen("C:UsersOlintoDocumentsNetBeansProjects est.txt", "r");
if (fp == NULL)
printf("Erro ao Abrir");
[Code] ....
puts(password); When I read the string password, it outputs -> abcd123"
I don't know where it takes the (") because the password on the file is abcd123...
View 2 Replies
View Related
Jun 7, 2014
this is really important i searched an example code about "Username and Password Validation between Server and Client" through internet a LOT and i couldn't find anything..
View 3 Replies
View Related
May 30, 2014
"How to create login id and password" because i have to submit this assignment next weeks i dont know how to using passing by value or reference corectly/
For the Ouput its say this :
1>ClCompile:
1> GILA DAH!!.cpp
1>d:computer programmin ditg 1113jiwa ku sakitjiwa ku sakitGILA DAH!!.cpp(21): error C2664: 'strlen' : cannot convert parameter 1 from 'char' to 'const char *'
1> Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
1>
1>Build FAILED.
#include <iostream>
#include <string>
using namespace std; //introduces namespace std
void length(char[]);
[Code]...
View 1 Replies
View Related
Apr 20, 2014
I wanted to make an program which is sending messages to log in and password, but instead of message it gives me "System.Windows.Forms.TextBox, Text: AND HERE MY TEXT I WANTED.
View 9 Replies
View Related
Sep 14, 2014
#include<stdio.h>
#include<conio.h>
#include<string.h>
char str1[20], str2[20]="kent";
main() {
printf("Enter your Username: ");
scanf("%s",str1);
[Code] ....
View 1 Replies
View Related
Mar 6, 2015
Code:
#include <iostream>
#include <string>
using namespace std;
int main()
[Code] ....
View 6 Replies
View Related
Nov 14, 2013
How to make a program to enter password and if password right I can change the curency. I only want to change from ringgit malaysia to us dollar.The program can convert currency many times.I only want to use stdio.h
#include <stdio.h>
void main() {
int pass;
printf("Input your password");
scanf("%d",$pass);
if (pass==4782)
[Code] ....
After this what should I put to complete this program?
View 2 Replies
View Related
Dec 25, 2014
Okay, so I have a science fair project and I decided on doing a series of programs that show the simpleness behind hacking a password. Each program increases in complexity starting with a four digit password, and ending with a 10 digit letter and number combo that is case sensitive. Right now I need to figure out a way to have my program be able to convert chars into ints, so that I can do a counter and then I also need to be able to convert the ints, back into chars.
View 19 Replies
View Related
Oct 6, 2014
I am trying to create a login that accepts a user login and password. it should accept 3 tries in which when the user enters their username the system should tell whether if the username is correct if not it should display a message saying invalid username and directs the user to register like entering their dob and name. But I cannot seem to get this part run correctly.
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
void main() {
char userId[10];
char passwrd[10];
int p = 0;
[Code] .....
View 18 Replies
View Related
Jan 21, 2015
So I need to make a program that recieves a 10 letter only password, then once the password is entered, it starts off as AAAAAAAAAA...AAAAAAAAAB...AAAAAAAAAC...etc, Until it gets the correct password, which it then stops. This is for a science fair project on cyber security not for malicious purposes ...
View 2 Replies
View Related
Sep 2, 2014
void Log_In() {
system("cls");
gotoxy(30, 30);
time_t now;
time(&now);
[Code] .....
How to produce a password field with asterisk ****** .....
View 1 Replies
View Related
Dec 2, 2014
I am not sure how to do password hashing in c++ mfc dialog application. I am new to C++ programming.
View 2 Replies
View Related
Jul 28, 2014
I'm making a Project on a Travel Agency and I need to hide the password entered by the user! I am working on Xcode 5.1.1 -> Command Line Tools -> C++ on my MacBook Pro! Here is what I've tried --
string pass ="";
char ch;
cout << "Enter pass";
ch = getchar();
while(ch != 13){//character 13 is enter
[Code]...
But in the first case the display is -
//Assuming the password is Hello Hello ******
And in the second its giving me 3 errors -
1. Apple Mach-O Linker(Id) Error "_stdscr", referenced from:
2. Apple Mach-O Linker(Id) Error "_wgetch", referenced from:
3. Apple Mach-O Linker(Id) Error clang: error: linker command failed with exit code 1 (use -v to see invocation)
View 10 Replies
View Related
Feb 14, 2015
I am trying to make a program that asks for password when you try to open a file. I tried with that, obviously without success .
#include <iostream>
#include <fstream>
#include <string>
#include <windows.h>
using namespace std;
int main () {
ifstream file("test.txt");
string password;
[Code] ....
View 11 Replies
View Related
Feb 14, 2015
I am trying to make a program that asks for password when you try to open a file.
I tried with that, obviously without success...
#include <iostream>
#include <fstream>
#include <string>
#include <windows.h>
using namespace std;
int main () {
ifstream file("test.txt");
string password;
[Code] .....
View 7 Replies
View Related
Aug 23, 2014
I am trying to build a program that takes a user password (6+ characters, One uppercase, one lower case, and one number), and checks for errors. The idea is that if the user is doing something wrong (say, forgetting to use an uppercase letter), the program will tell them what the error is, and prompt them to enter the program again.
I get through the building process without errors, but whenever I run the program, I get this error: [URL] ....
Here is my code:
#include <iostream>
#include <cctype>
using namespace std;
bool checkPass(char [], int); //Password Checking Function
char convert(string);
[Code] ....
According to the box, the error appears on line 56 and 68.
View 5 Replies
View Related
Apr 17, 2015
add more code given bellow program that means (( you can input a password and the output checking the password is valid or not and also the password is hard or weak)) the program,s output show....the given password is too strong or strong or weak and also check the password is valid
View 2 Replies
View Related
Oct 14, 2014
I mainly code plugins for Cinema 4D .... I used to code in COFFEE (a javascript like language, only for Cinema 4D) and python. But, recently, I started coding in C++.
I start my development on a Mac, using Xcode. But then, to generate Windows versions of my plugins, I take my source code to Visual Studio, perform the necessary adjustments, and create Win32 and Win64 code.
Lately, I was trying to devise a scheme to protect my plugins from being pirated. Yes, I know it is virtually impossible, but if I could make it harder for hackers to crack my plugins, it would be fine.
I made it work fine in python and in C++, but only in Xcode.
In Windows it is difficult. I only need to be able to access a username/password protected folder in my server and check if there is a file there. I don't even need to read the content of the file (but it would be nice to be able to do that too).
I started out using the cURL library but it is so complicated to make it work. I need 32 and 64 bit versions. Then I also have to include three .dll files in the folder of the application (that means that I would have to ask to the people who buy my plugins to copy three additional files to the main application folder... not a good thing )
So, any way to access a username/password protected folder on the net? (the username/password is generated in my code so, of course, I know what are the username/password to provide).
Also, I would need a way for the code to be completely self-contained, meaning that the users would not have to manually add any other files (libraries), besides the folder containing my plugin.
View 14 Replies
View Related
Jan 16, 2013
Code:
#include<iostream.h>
#include<conio.h>
#include<string.h>
void main() {
clrscr();
int i=0,flag=1;
cout<<"Enter the password.";
[Code] ....
When I input the password, the Backspace and the Enter keys are not working as they should. Also, I want to know if I can press enter only once to input the password, not twice.
Compiler is Turbo C++ 3.0 on Windows 7.
View 1 Replies
View Related