Skip to content
Sign UpLog In
Profile icon

TextCoder

@TextCoder
Repls
Community
TextCoder
TextCoder
published an Update
1 year ago
0
PIN cracker V2.0
PIN cracker V2.0
Pin cracker
So, this is a shot at making a password cracker. It’s crude but effective. Hope you like it!
#python
TextCoder
TextCoder
shared a Post
2 years ago
This basically soves any PIN
Python PIN brute force cracker
Python
6JAppleby
6JAppleby
Very cool!2 years ago
MrVoo
MrVoo
It's very simple, try making a password cracker next!2 years ago
TextCoder
TextCoder
shared a Post
2 years ago
I don't know why this doesn't work. I'm also a beginner, so please don't criticise any stupid mistakes.
OldWizard209
OldWizard209
The problem is on line 24. Remove the colons from this: if(c == 1) ;{ cout<<"Answer:\n"; cout<<a*b<<endl; }else if(c == 2) ;{ cout<<"Answer:\n"; cout<<a/b<<endl; } } to this: if(c == 1){ cout<<"Answer:\n"; cout<<a*b<<endl; }else if(c == 2){ cout<<"Answer:\n"; cout<<a/b<<endl; } } `2 years ago
TextCoder
TextCoder
shared a Post
2 years ago
a brute force PIN cracker idk what to put here
Yimmee
Yimmee
Typo: type ia a pin ->Type in a pin2 years ago
Yimmee
Yimmee
Wait, Ubuntu is blue and white?2 years ago
DynamicSquid
DynamicSquid
For visual mode, I think one thing that's slowing you down is you're using endl. Try using \n instead, and it should be a little faster (in theory)2 years ago