I have a classifieds website...
As you might imagine, as a webmaster (administrator) I need to sometimes remove classifieds, edit them etc etc.
I have my own Linux server, with root access offcourse.
Currently I have a section of my website with all administrative php scripts which I use to remove classifieds, edit them etc:
/www...
I have an authentication script in ejabberd (XMPP server) that based off of THIS LINK
I have slightly modified the script so that instead of setting the variable out, it just returns true or false.
I'm using Ubuntu, MySQL, ejabberd, and Python.
I can authenticate all the records that are already on the database. But, when I add or re...
I'm working in a mini-app, which will have 3 pages, and i want all the interaction to happen inside a profile-tab.So, using javascript, i want to show/hide a few divs, which i'll populate using the FBJS ajax object.
My problem is, i'm not getting the user session in the ajax calls.As documentation is extremely confusing, i've ended up n...
I want to add entries to my RESTful Rails blog using HTTP POST requests. I have a script that does this easily enough, but it only works for my development app because I don't require it to authenticate.
Now that I'm publishing my site, I obviously need to authenticate my uploads before posting them. The rest of the admin stuff is behin...
I want to invoke a Desktop Application. Before invoking that Desktop App the user should login to the Web Application & the same credentials to be used in Desktop App. The Web Application is ASP.NET & Desktop App is a SWING based Java Application. Is it possible to authenticate in that case ?
...
I don't have a lot experience about Client Certificate Authentication. Anybody can tell me how to use it in iOS app? Thanks :)
...
Like a lot of people I've gone with ASP.Net Forms authentication because it's already written and writing our own security code we're told is generally a bad idea.
With the current problems with ASP.Net I'm thinking it might be a good time to look at alternatives.
Important: ASP.NET Security Vulnerability - ScottGu
Video demonstrating...
I have one solution and it is made of two kind of project one is asp.net and it's using .net membership for authenticate the users
another project is WCF REST (Odata) , how I can authenticate the user in wcf project?
...
I'm developing a JEE application (JSF2 + richfaces+ Facelets + Tomcat).
What's the best way to perform authentification ?
Or should i make my own ?
...
I have a Access Control based on Roles and Permissions, meaning That each group has permissions to access Some Controllers and users are part of those groups. (this is implemented in CakePHP framework)
But this structure allows me to know what user is authorized to "use" like, access reports or add new users, but I was wondering what ar...
Hi,
I need to restrict the access to a part of the application. In order to access that part, user needs to log in. I have a table in my database called User, with usernames and hashed passwords and a login form that consists of two inputs and a submit. However, I don't know which classes/mathids should I use to log in the user (I assume...
I am working on a script that will allow users to login using their bebo accounts. I have followed their "documentation" but can not get it to work.
Has anyone been able to do this?
I am looking to pull back user data based upon their username (kinda like Facebook).
Thanks for all the help in advance!
...
Hello,
I am new with WCF, I am trying to deploy my WCF sample application on IIS, this application works fine in debug mode with VS2008, this application authenticate the WCF messages with following code. I am doing it like this, I have added the resulted .dlls web.config and the Service.svc in the wwwroot directory, and I have also ad...
Hi All,
I did the walkthrough here. I'm trying to Authenticate a user on the first call into a service and then each subsequent call, verify that the user is authenticated, and call a method. I'm having all kinds of trouble. CurrentUser.Identity.IsAuthenticated always seems to be false. On Application_AuthenticateRequest I run this...
...
I heard in an old stackoverflow podcast that they minimized the use of sessions, and that they basically only needed it when posting. How can that be? Don't they need to use some form of sessions on every page view if nothing more than to tell that I'm logged in? How else do they show your username instead of the "Log In" prompt at th...
I'm wondering how secure the below code is:
if ($username == $user-username && $password == $user->password) {
$_SESSION['loggedIn'] = true;
$_SESSION['user_id'] = $user->userId;
}
Basically, would there be any way for someone to fake the SESSION variable (besides actually stealing a users cookie)?
...
i have many sites under one asp.net forms authentification, they have mixed frameworks, some have 2.0 some 4.0. but it is all fine. everything works fine. but!!
here part of my web.config:
<authentication mode="Forms" ><forms loginUrl="../web/start_page/start_page.aspx"
name=".ASPXFORMSAUTH"
protection="All"
path="/"
...
From iPhone Os 3.0, Apple released Auto-login and join functions for captive protals. So can not using http automated authentication for hotspots to login.
Does anyone know how to disable the features programmatically ? I heard, the app, Boingo, implements the disable thing. At this time, I really need it.
...
I'm using mod_rewrite to redirect people from one domain to another (whilst preserving the rest of the URL). Both domains point at the same codebase.
One of the directories has authentication controlled by a local .htaccess file.
These authentication directives get processed before the mod_rewrite rule are processed. Therefore the clie...
I am using ASP.NET 4.0 WebForms and making use of the control. However I want to add 3 textboxes, email, password and dateofbirth. email and password come standard as username and password, but if I had a third textbox for date of birth (above the login button but below the email and password), in my code behind, the ID of this control ...