Tagged Questions
0
votes
0answers
26 views
have used cookies to store the data, how to use cookies to prevent users entering to a webpage without logging in
if the user has not logged in, but click to the order page, then it should be redirect to the login page. yet, it is not functioned as expected. it just hold in the login page, and cannot login or ...
2
votes
1answer
58 views
Login to page with curl in php and then visit link “logged in”
I need to login (make post) with curl in php to a website, then save a cookie with authentication, and use it to visit normal link from same website.
They have only half of text available in free ...
0
votes
0answers
10 views
How to keep login information for web performance test
I am using VS2012 webtest to run load test against a CRM online application. But all the cases failed becuase login failure.
If I managed to write the login code for each case, it will slow down the ...
0
votes
1answer
21 views
How to write a cookie to remember a username in JavaScript
I am working on a login page for a project and I am wondering how I would go about setting a cookie just to remember the username ?
1
vote
1answer
40 views
how to login to a website with python and mechanize
i'm trying to log in to the website http://www.magickartenmarkt.de and do some analyzing in the member-area (https://www.magickartenmarkt.de/?mainPage=showWants). I saw other examples for this, but i ...
0
votes
0answers
17 views
prestashop - logout does not work fine
I log in, then log out, when I try to connect again it redirects to profile page where I can update my profile. This problem happens only online, I don't have any problem with the offline version of ...
0
votes
0answers
19 views
Servlet-handling login cookies
Imagine that a user in a Java Servlet program signs up with his personal information.
Then if he wants to re-use it he can log in with his username and password submitted before.
I want to know how I ...
1
vote
0answers
29 views
Maintaining session in Facebook Api
I'm using Facebook PHP SDK to login and register.
The code is sth like this:
require_once('facebook/facebook.php');
$facebook = new Facebook(array(
'appId' => 'id',
'secret' => ...
0
votes
1answer
46 views
PHP User System Security
I have a small internal website for a charity, it's were the staff login to access documents and rota. Although it's only meant for certain users it is on the web so it's public therefore I'm still ...
0
votes
1answer
61 views
C# download content of website after login to website
-I have small project : login to website and download content of website and add them to listviews
- but I got some issues:
+ I login to website successfully
+ I want go to page after login ...
0
votes
0answers
55 views
Node.js + Express: Save the user and password in the browser
I'm learning Node.JS with Express, now I'm working in the login form, all is right but when I login, the browser never save my Username and Password. How can I do it?
My App configuration for SESSION ...
0
votes
1answer
44 views
Create lasting php login cookie sessions
I'm trying to make my login sessions last longer, so that people don't get logged out of my website too early. For example, making a blog post and losing it when they submit because php expired their ...
0
votes
0answers
126 views
c# Download html after Log In with HttpWebRequest/Response
I am trying to login to www.budgetgadgets.com and then download html from another page. I use the same cookies, but it doesn't work and it downloads html when I am not logged in. I also tried to do ...
1
vote
0answers
56 views
why can't i login using urllib2 post in python
I was wondering what makes me unable to log in to a website in python using post. I've tried so many examples taken from stackoverflow and they are very easy to use. The same code works for me with ...
1
vote
1answer
31 views
How to ask user for relogin when his browser history get cleared?
I have used a session variable to store the logged in username. If the user is logged in properly, the particular protected page get displayed, and if not he is redirected to the log in page. The code ...
0
votes
2answers
71 views
Setting Cookies AJAX/PHP
I have an AJAX login system - all the form data is validated using PHP and if there is a match for the username and password it sets certain cookies.
I am aware that cookies need to be set before ...
0
votes
1answer
69 views
Use cookie in a PHP login page
I'm create a form to login with PHP (and, obviously, MySQL). This is the PHP code:
<?php
$host = 'localhost';
$db_user = 'root';
$db_password = '';
$db_name = 'learningsql';
$username = ...
0
votes
1answer
73 views
Is having a Persistent Login Cookie (“Remember me”) that never expires a good idea?
In the most recommended solution for Persistent Login Cookies, a user's "Remember me" Cookie is always renewed with a new token when they login with their Persistent Login Cookie. Let's say you set ...
1
vote
1answer
101 views
How to check Cookie Token against bcrypt-hashed Token in DB when using Persistent Login Cookies?
In this popular solution for Persistent Login Cookies which involves generating a random 128-bit "token" to be saved in the user's Cookie, Jens Roland recommends:
And DO NOT STORE THE PERSISTENT ...
0
votes
1answer
334 views
PHP - Login/Logout/expire with Session,cookie or database
Im trying to create a user class in php connected with database
Here is my class i written so far!
class db {
private function conn(){
...
0
votes
1answer
20 views
Using Cookies versus Sessions for login
I'm building a basic login script from a book that uses sessions to manage wether a user is logged in or not.
This is great, but when I close my browser, and then reopen it, I have to log back in.
...
0
votes
0answers
89 views
Login using cookie is not working properly on whmcs
I am trying to set auto login from wp to my whmcs site using WHMCS API. Everything is working perfectly, except, it is not let me login automatically.
my wp url: wp.domain.com (ip 1)
whmcs url: ...
-3
votes
1answer
754 views
IE10 losing auth cookies [closed]
I'm having problems with IE10 not persisting (login) cookies.
I've been banging my head on this issue for the most part of the day now.
First i thought it was a problem with one off the websites i ...
0
votes
2answers
115 views
Sessions and Cookies to autologin in GWT
i know there is a lot of questions on this already but I still didn't seem to find a definitive answer. What i'm looking to do is have users be remembered after they login for say 2 weeks or until ...
1
vote
3answers
648 views
Using cookies to auto-login a user in asp.net (custom login)
i can't find on the net what i'm looking for so any help would be appreciated.
I have implemented a custom login form where the user enters his email and password to log in. I then query the database ...
0
votes
0answers
29 views
Maintaining auto-logins throughout several browsers
My site will offer a "Remember me" option, with which a login cookie will be set and their cookie field in the database will be updated. While this works perfectly well for users who use only one ...
1
vote
1answer
132 views
Delphi - Use Indy to login and dowload files using cookies
I need use Indy (v10) on my XE3 to make this:
List item
login to webpage "A" by username and password;
capture cookies sent by webpage after login;
load a new webpage "B" using cookies (in fact I ...
0
votes
2answers
47 views
What is the best solution for a secure login?
PHP
My website is almost done, but i'm having some problems with security. Actually, i didn't have problems yet, but i need to prevent. For example, the login system, i'm using cookies/session for it. ...
0
votes
0answers
102 views
curl login POST download CSV
I want use curl to connect one hosting and download a file .CSV but I have a problem, I can login correctly in the hosting and I can download .html files but when I try to download .CSV file I have an ...
0
votes
0answers
93 views
user login system cookie based over ssl
i created user login system and with this function i start sessions
function sessionStart() {
$session_name = 'sec_session_id'; // Set a custom session name
$secure = false; // Set to true ...
0
votes
1answer
132 views
asp.net save username as cookie, then autofill
I am trying to save what a user types into the username text box as a cookie, then on subsequent visits have the log-in form auto populate the text box with the cookie value. What am i doing wrong?
...
0
votes
1answer
56 views
Retrieving cookies from google using PHP/CURL
I'm trying to create a script that allows users to login once (using same username & password on the domain) so that they can access the portal and gmail, instead of signing in twice (one to the ...
0
votes
1answer
211 views
jQuery mobile login, php, cookies not working
I'm building web app aas my major project for degree. Simple login was working but now I'm trying to implement cookies and my script is not working for some reason. I need to find out why, but can't ...
0
votes
1answer
54 views
setcookie and header in auto login
I want to auto login after user's registration. I have the same script for login and it doesn't work after registration. What could be wrong? It's a bit old script, but I really want to make it work ...
0
votes
1answer
286 views
HTTP Google Login - Cookie turned off
I'm trying to log in to my Google account. I have read in older posts to use HTTP-Fox to get all parameters. So I added all, including the hidden ones.
package com.businessLogic;
import ...
0
votes
1answer
152 views
Using Curl to Login to Vimeo
I'm trying to use CURL with PHP to login to Vimeo.com, Vimeo login.
To provide the data for CURL to use (cookie and field data), I'm using a browser extension to read the field data off of the ...
0
votes
1answer
286 views
Persistent login using cookies and session variables
I've been researching the best (and safest) ways to implement persistent logins on my website, and I've come up with the following:
When a user logs in, a cookie is created containing the user's ...
0
votes
3answers
468 views
MVC Forms authentication - IsAuthenticated is false after login and true while redirecting explicitly
I have the following methods responsible for login authentication:
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel loginModel, string ...
0
votes
1answer
238 views
Best practice for Socket.IO Login with Cookies
I'm looking for best practices for a Socket.IO based Login with Cookies. So far, the Login exists but now I'd like to write a cookie without sending a new page and when the user comes back he will ...
1
vote
2answers
200 views
How to change login details so they are stored in cookies so user remains logged in and not expire
I want to create a simple login system where the user logs in, then it will keeps the details of user logged in stored and they will always be logged in until they have either clicked on the log out ...
0
votes
1answer
54 views
Login scripts, session_id's, cookies
I've been researching into PHP login scripts (from which the main thing i've found out so far is that there are more bad ones than good out there...), and the only thing that has got me confused is ...
1
vote
0answers
195 views
HttpWebRequest/HttpWebResponse Using CookieContainer Not Logging In
Spent a good part of the evening on this and can't figure out what's wrong. The data gets posted to the login page and gets processed just fine - a wrong login/pwd comes up as an error page, and a ...
0
votes
2answers
82 views
How does Google know that I am still logged in?
I am trying to learn more about Google and other sites, and would like to know whether i got this right or not. So here it goes:
When I log into my Google account (or any other site like Twitter or ...
0
votes
2answers
473 views
PHP Cookie Login System
I am having a problem with the cookies finding the cookies stored from my login page.Here is my login page code:
<?php
// Connects to your Database
include("dbconnect.php");
...
1
vote
1answer
109 views
Any gotchas I should be aware of regarding this approach to persistent logins (“Remember Me”)?
This web application will have a database table with columns uniqueid (64-bit int autoincrement field; key), token (64-byte binary field), and an accountid.
After logging in with "Remember Me" ...
2
votes
3answers
179 views
user login security - local cookie vs sessions
I've read a few answers here about this topic, and people say that using sessions is more secure that using only cookie, but I don't see how can that be true.
Let's say you're using sessions, and on ...
0
votes
1answer
308 views
How do I implement remember me for login to save username and password? (Java, JSP, JavaScript) [closed]
I want to implement a "remember me" checkbox on a JSP login page. Specifically, I want it to remember the username and password. Why not just use the browser's password manager? Because I am ...
1
vote
2answers
139 views
Java web application secured authorization via cookies
I have a java servlet web application. In the application I have two authorization logics:
1. Authorization via username and password - standart login via web form with username and password which ...
0
votes
0answers
57 views
urllib2 does not seem to pass credentials
So I've tried about a dozen different methods to create a python login to my squirrelmail account with urllib2. I borrowed this code from a module specifically written to access squirrelmail.
...
0
votes
4answers
63 views
Any way to dected if user is logged or not to a site?
i was wondering if is there any way to check if user is logged or not to another site domain, like facebook , google or twitter.
Is this legal and possible?
thanks
WHIOUT USING API






