login

Grab html code by entering username and password on a webpage on iPhone

Im trying to grab a HTML source code from a webpage which needs user to login with username and password, the code are all done in the back end, i can not use "?username=xx&pw=xxx" to get the html code. There are many apps that does this kind of things, such as getting usage from a phone provider or view bills. I would like to know how...

login using session in php

<?php ob_start(); include("db_connect.php"); $tbl_name='login'; $myusername=$_POST['myusername']; $mypassword=$_POST['mypassword']; // To protect MySQL injection (more detail about MySQL injection) $myusername = stripslashes($myusername); $mypassword = stripslashes($mypassword); $myusername = mysql_real_escape_string($myusername); $mypa...

Adding more textboxes to an asp:login control

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 ...

User Login & Sessions :Safe or Not

DB table: login_info -------------------------------------- | login | passwd | company | -------------------------------------- |company1 | passmd5 | company1 | -------------------------------------- |company2 | passmd5 | company2 | -------------------------------------- |company3 | passmd5 | company3 | -----...

Server 2003: How the administrator can login as another user?

I am helping my friend to manage a small network at his company. One of two servers they have is a Server 2003 providing terminal services. Another is a Server 2008 SBS running the domain controller, Exchange etc. My part includes helping setting up new user accounts, and configure their terminal server environments. There are things use...

Login Silverlight Website

Wich is the best (and safest) way to implement user login for a silverlight application? ...

Problem logging in to Tomcat

Hello I have an Java / Tomcat application which creates a cookie for a user when they visit the homepage. This cookie is used to recognize that user on subsequent visits and generate recent lists. These are working well and so far without any type of authentication of the user using Tomcat itself. Which brings me to my issue: On certai...

Linux display ipaddres before logon

Hi We build software running on Linux servers (Centos) We don't want the customer to have access to the Linux server, but the customer sometimes need to know the ipaddress of the server. So my question is: Is it possible to display the ipaddress at the loginscreen (no graphical interface), that means, before the user has logged in? M...

Is Captcha needed even if users are forced to login to post?

I've been working on this site - I used the phpdug script to help me get a quick start. I assumed that if I forced users to login in order to post links in this digg-like website, there would be no need for a captcha. This has not worked as you can see all of the car spam. Is a captcha necessary even if I force users to login? Also, ...

How do pass forms-based authentication form iphone app to website?

I am working on creating an iphone application which logins to we website and retrieves a table, and displays the content within the app. To view the table a Login is required. It seems the site is using Form-Baseds Authentication. WebSite's Login Screen So How do I pass the login ID and pass from xcode to the to the site and retain the...

Google Apps Engine / Django, calling action upon user login?

I'm new to Google Apps Engine (working on an existing project for someone else) and it seems a bit different than Django as far as the login as the login is handled by Google, I'm trying to make it so the app creates a custom cookie for a user upon their logging in but can't seem to find the handler for the login action... I apologize fo...

asp.NET Web.config

Hello guys i have an website online wich access the database. The database access for the connection String called GardenLadies is fine and works. I've added to the host database also the localsqlServer database info. My problem is when i log in it gives me "Server Error in '/' Application.". here´s my web config <?xml version="1.0"?> ...

C# Login to thetvdb.com then set episode rating

I want to have my c# program automatically post ratings for an episode while logged into my tvdb account. I have done something similar many times using some code i got from http://stackoverflow.com/questions/2798610/login-to-website-and-use-cookie-to-get-source-for-another-page as a guide. Here is my version of it: public class We...

Implementing vanity URL for individual users in PHP

How would one go about implementing a vanity URL for each user in PHP? I'm implementing my web-app's login system as a tweaked version of the Drax LLP Login system. So, each user should be able to modify his profile which will finally appear on his vanity URL .. like xyz.com/user. Any tips / ideas? Thanks.. ...

Creating a script which helps present grades faster, and more efficiently

I am a high school student reasonably concerned about my grades, and when I check them through a system known as Zangle! Student Connection, it is mildly painful in how long it takes. I was wondering if it would be possible to construct a script, in whichever language is deemed appropriate, to login for me, based on a pre-entered login ...

PHP Form Validator/MySQL Insert

I have written a small PHP file that gets the information that was posted to it, then checks to make sure it is no empty. If it isn't empty, it checks to make sure the username doesn't already exist. If it does, it redirects. If not, it adds the information to the MySQL database. I don't know what the problem is, but when attempting to n...

Allowing a maximum number of times for system to accept incorrect PIN

I made a java login screen for a console application, but I need it to allow the user to input ther wrong PIN only 3 times. After the user has entered the PIN more than 3 times, the system should exit. However, the loop which I used for the else part of the if condition does not seem to be making any changes to the program. (program won...

Getting HTTP 404 Not Found with multiple requests while using form based authentication

Hi, I am having an issue with Tomcat and Websphere when users try to login in our application. If a user presses multiple times the return key after entering his/her login details, the form is submitted multiple times. Tomcat and Websphere don't ignore the multiple requests and end up complaining about the /j_security_check url not be...

Websphere portal 6.0 redirect after login doesn't work

I have urls (friendly-urls mapped to certain pages by its unique id) like http://localhost:10038/wps/myportal/portletName (this page is accessible only by authorized users) When I put the url into browser's address bar (chrome, firefox) it is converted to something like: http://localhost:10038/wps/portal/!ut/p/c0/04_SB8K8xLLM9MSSzPy8xBz...

Getting a Windows Service to run as a Network Service.

I have done some work developing a Windows Service and have had some success in doing so. I notice that some services run as the user Network Service. I wondered what the difference of behaviour is when running as this service. The service I am developing tracks logins and logouts and so it would be beneficial to try and have the serv...