Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
232 views

Why does OpenInviter get authenticated login on my Local Machine but not on the webserver?

I have no problem testing on my local machine and then when i upload to webserver, it is showing: Login failed. Please check the email and password you have provided and try again later ! Tips: ...
2
votes
4answers
3k views

How to delay login attempts after too many tries (PHP)

I'm working on a fairly large web site built in PHP that will potentially have a lot of users. I'm looking into a way to protect the login screen from automated attempts. I have already included a ...
1
vote
0answers
97 views

track/count unlock attemp made in pattern

I have develop a small application which can recognize when device get lock and unlock using BroadcastReceiver and filter.addAction(Intent.ACTION_SCREEN_OFF) ...
1
vote
3answers
517 views

Simple “Login Attempt” problem with MessageBox.Show

Hello I`m new with C# and I want to make a simple C# pin code program where users could only input 3 times or put in 3 times attempts of pincode and the the program will exit using Application.Exit(); ...
1
vote
1answer
93 views

Limiting login tries to protect from BFA's

I have implemented a login system where after 3 unsuccessful tries (using $_SESSION variables) a cookie is created on the user's computer which expires in 10 minutes. Now I know this is certainly not ...
1
vote
1answer
260 views

After deployment, login control stops working

In my development environment I can register and login just fine. After loging in or registering I do a redirect. Once deployed I noticed that the registering still works, but the page refreshes. ...
1
vote
3answers
436 views

how to prevent brute force attacks on ajax form submission

so suppose I have the file login.php login.php takes get (or post) parameters username and password and return true if login successful and false otherwise.... this way other pages can access it via ...
1
vote
1answer
188 views

How to change defaultUrl through in C#?

I got 2 folder, one is "Lectures" where only lecture can login, and another is "Students" where only students can login. and i use role-based authorization. but the problem is i only can assign one ...
1
vote
1answer
175 views

login problem with ajax

i have created login page which sends ajax request to a php page for login verification. On that php page i m creating session, and sending response as per login verification. if user is authenticated ...
1
vote
2answers
448 views

Track unsuccessful login attempts for ID Locking

1) A typical Login Screen of an application, ID locked for wrong passwords when more than three attempts. 2) The attempt cannot be stored in session, because user might use multiple browsers in same ...
1
vote
3answers
744 views

simple way to prevent flood of login requests?

If my website uses a POST form for login, what is a quick and easy way to prevent a rogue client from flooding my web server with POST requests trying to brute force crack my user accounts? ...
1
vote
5answers
238 views

Best method to block repeated login requests w/out a database?

I'm trying to write an improved password reset function for one of our public facing websites and in addition to a better captcha I wanted to flag a username that attempts to login w/ no success x ...
0
votes
1answer
120 views

C++ Password attempt limit

Im trying to write a program that limits the password to three incorrect attempts then exits after 3 incorrect attempts. Here is the code I have thus far. I feel like I am really close to figuring ...
0
votes
0answers
242 views

login Lockout through Active Directory in windows 2008 server R2

My login control with active directory membership provider in a Windows 2008 server R2, doesn't got locked if user fails (few times) in the login. Here is my web.config: <membership ...
0
votes
1answer
308 views

How to count login attempts in CakePHP

I'm developing application with CakePHP 1.3 and using its Auth component. Is it possible to count login fails in order to deactivate users account after a few unsuccessfull attempts? Is there anything ...
0
votes
4answers
382 views

Asp.net - When I run my website on IIS, Database login fails

In my website I am accessing my sqlserver database using "windows authencation mode". Everything works fine when I run my website using visual studio. but when I hosted my website on IIS, everytime an ...
0
votes
1answer
761 views

How do I change the max failed login attempts to lock out the user in Weblogic 10.0?

We have a requirement to set the number of login attempts to 3 before we lock out the user. It seems the default is 5. How do I change this value in Weblogic 10.0?