Tagged Questions
0
votes
2answers
74 views
is it secure to save password in cookie or its better to save it in database
i currently save my password in database and check it with session cookie but it make authenthication of user so slow and since i have many users i bought a ssl certificate for my website and i need ...
-1
votes
2answers
68 views
Saving username & password in desktop app [closed]
I am making one frame which has two text field one for username & other for password,and one button to login.
Now I want to store my login information for a specified period of time , so that ...
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
36 views
How can I secure this user cookie?
So I've a user login network and it creates a cookie upon login. I need to know how to secure it because at the moment I can edit the cookie and it will give me access to any username I update the ...
2
votes
1answer
42 views
PHP cookies and member security
I've created a forum which uses a PHP session when logged in to determine the user id, and cookies for log-term login.
I suppose I have two questions:
Is this the best/securest method?
Cookies can ...
0
votes
2answers
48 views
Managing Multiple Access to a User account in a web app using Cookie
In may Rails web application, I need to enable more control in user authentication like if a user after registration will have specific credentials to login. So he/she should be able to login from a ...
2
votes
1answer
133 views
Where can I find a PHP/MySQL implementation of Charles Miller's “Persistent Login Cookie” solution?
I have seen time and again Charles Miller's "Persistent Login Cookie Best Practice" recommended here as the absolute best way of implementing "Remember me" functionality on a site (if you really, ...
0
votes
1answer
21 views
are there implicit cookies created while web navigation? / httpOnly flag
In my website I am not using any kind of cookies, everything goes through server-side session handling. (no setcookie instruction at all)
But still, using Acunetix website vulnerability checker, I ...
0
votes
2answers
350 views
How to persist cookies using Apache HttpClient after authenticating against Java app with form-based spring security
I have a Java app (jetty server) built with Spring (MVC, security, transactions, etc) and uses REST for webservices. I have another Java client that makes REST calls to the server using Apache ...
0
votes
0answers
49 views
an effective way to implement remember me
I am trying to find the best way to implement 'Remember me', and i've been following the method mentioned here-http://jaspan.com/improved_persistent_login_cookie_best_practice, i am a bit puzzled by ...
0
votes
4answers
68 views
what is the best for remembering users? cookies or database or both?
I saw many open source websites, its uses different methods for remembering their logged in users, some of it uses just cookies and some uses cookies and database.
What is the diffidence between each ...
0
votes
1answer
121 views
yii Csrf Token cookies, Why Transfer to Post?
Bad English:
Maybe I misunderstood how the Csrf, but why should it pass in the POST request, if it is in a cookie and can be taken from there.
If it is not safe, why not?
Why then it it the cookie ...
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 ...
5
votes
4answers
2k views
How to achieve a Safe (!) authentication system in an angularjs app?
I'm new with angularjs...
I read the docs, and completed the tutorial; i also tried something else by myself, and things start to make sense to me.
Now i wonder how to make a safe authentication ...
-3
votes
2answers
41 views
How can I store data on a user's system? [closed]
I am building a secure system and want to store some secure information onto the user's system. How do I code this? And where do I store this in order for it to be safe?
0
votes
1answer
38 views
Should I set a domain on cookies and if so why?
Should I set a domain on cookies and if so why? -
The cookie is used for a shopping basket, the platform is .NET
3
votes
2answers
92 views
How secure are ASP.net security cookies
My understanding is that ASP generates a cookie to authenticate a session. However, if that cookie is sent back and forth over a non https channel, can't I spoof it simply by spoofing the cookie? Can ...
0
votes
1answer
113 views
Cakephp saving session id in cookies, is this a secure way
CakePhp saves session id in cookies, normally cookie named CAKEPHP contain session id
and in any other php file can start session with that id
session_id($_REQUEST['CAKEPHP']);
session_start();
...
0
votes
0answers
91 views
CakePHP cookie security, reading unencrypted and encrytped ones
I use CookieComponent in my CakePHP 2.2 application:
$this->Cookie->write('usertype', 'myadmin', true, '7 days');
This creates a cookie like this:
CakeCookie[usertype] = ...
0
votes
0answers
47 views
Charles Miller's solution for Remain Logged In cookie?
I was reading this answer about how /why/why not should I implement "remember me" option.
However I'm more interested in this section
If you DO decide to implement persistent login cookies, this ...
1
vote
1answer
34 views
Session ID - Containing Data or Reference to Data?
I would like your insight on "Session ID" for Web Application.
Which one of the following do you think is the best:
Session ID containing the following:
{ data: { user_id: ???, auth_user_agent: ...
1
vote
1answer
140 views
Best way to authenticate users?
I realize this question maybe subjective, but I'm fairly new at this and while there is A LOT on this subject. I’ve yet to be able to form a good opinion on this and I'm thinking that maybe due in ...
2
votes
1answer
80 views
Whether or not to use persistent cookies
We've just had a security auditor flag our use of persistent cookies to maintain login state in our web application. As a bit of background, our web application is multi-tenanted, but no (or not many) ...
1
vote
2answers
108 views
Why is it unsafe to store login info in Cookies?
I've read that storing login information in cookies is a security risk since they can easily be edited by the user. My question is if all I store is the username and password in the cookies then why ...
1
vote
1answer
45 views
Should I encrypt non-authentication cookies (i.e those that solely enhance the user experience)?
I am implementing the use of cookies on my site. Some are user-authentication cookies (which I know it is important to encrypt), while others are simply to store user-specific data e.g. their display ...
0
votes
3answers
41 views
Should I store non-sensitive info in database or cookie for reducing load time?
I am programming a page primarily in PHP and I was wondering if it would be better to grab a bunch of the non-sensitive info about a user from the database and put it into cookies for faster loading ...
1
vote
3answers
68 views
Hiding Cookies in Browsers
Am setting some Cookies using below code,
document.cookie = name+"="+value+expires+"; path=/";
Is there any way to hide them (end User should not be able to see them by checking the Cookies stored ...
0
votes
0answers
24 views
Is there a secure way to allow JavaScript in user-generated content with subdomains?
Consider a blog site, where blogs have subdomains per user, say, foo.blog.com or bar.blog.com and are allowed to have JavaScript in layouts and posts.
Users log in to www.blog.com for editing, so ...
0
votes
3answers
154 views
encrypt cookies - which encryption? [closed]
I am working with c# in my mvc 4 application and using cookies to store cookie state. I would like to encrypt the cookie output value to ensure the data cant be viewed/understood by a user.
What is ...
0
votes
1answer
306 views
OpenAM 10 iPlanetDirectoryPro cookie change
Several documents on the ForgeRock site mention to change the iPlanetDirectoryPro cookie name in openAM 10 but never mention which file(s) to change it in. I've tried several including ...
1
vote
0answers
149 views
is using signed_request on cookie for Facebook server side authentication secure?
Yet another Facebook login question.
I am building a one page site that uses Facebook javascript authentication and login. I do not want any page reloads and want to users to login to Facebook at any ...
0
votes
2answers
246 views
Codeigniter session cookie is secure or not?
I'm wondering about how a user can be manipulate his cookie.
As i know CI can know that (because the relation cookie_value/unique_key at the end of the cookie) and when happens CI renew the cookie.
...
0
votes
2answers
30 views
risk mongoDb _id and cookie
I would like to know if is there a secure issue id I set the _id of my user in cookie to identify users or it will be better to set a cookie username and an otherone encode pwd
thanks
2
votes
1answer
159 views
Encrypting Session ID [duplicate]
Possible Duplicate:
What is the best way to prevent session hijacking?
Is encrypting session id (or other authenticate value) in cookie useful at all?
My session handler stores the ...
5
votes
2answers
120 views
Stealing “remember me” cookies a valid threat?
I'm using SSL to transmit all data. HTTP is completely disabled. Short of malware, or accessing someones physical machine (both of which are very hard to prevent from server side), I don't see how an ...
0
votes
0answers
198 views
How can I stop a webbrowser control from showing cookie security warnings?
I'm using winform webbrowser control and sometimes when closing the application, I get this very annoying Windows Security Warning dialog about allowing cookies on the site. Here is the exact message:
...
-1
votes
1answer
97 views
How to make a login system like that of facebook [closed]
I have a enquiry, now this was a serious brainstorming problem for me. Do one thing at first, go to m.facebook.com from your phone, then login, then login from a computer and change the password from ...
2
votes
1answer
143 views
Best way to securely set a session cookie on another domain
We currently have 2 sites http://www.foo.co.uk and https://secure.foo.com.
The www site does not have an SSL certificate and is on a different domain.
We have a login button on http://www.foo.co.uk ...
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" ...
0
votes
1answer
47 views
Which cookie attributes uniquely identify a cookie?
I'm trying to determine scenarios in which a cookie returned by HTTP server overwrites an existing cookie vs. sets a new cookie.
Say foo.example.com sets a cookie:
Set-Cookie: SSID=abc; ...
0
votes
0answers
61 views
Security risks of giving full access to a subdomain's content [closed]
There are many hosted/saas applications that give you full control over the content of your subdomain.
So if the saas application is called example.com, when you signup you get full control of your ...
0
votes
0answers
184 views
URLConnection and Spring Security PersistentTokenBasedRememberMeServices
I'm trying to use sitemesh to pull content together on a screen. You have to be "logged" into the site to view the page that site mesh is displaying and you must be logged in to view the components ...
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 ...
3
votes
3answers
121 views
Is domain attribute of a cookie sent back to a server?
If evil.example.com sets a cookie with a domain attribute set to .example.com, a browser will include this cookie in requests to foo.example.com.
The Tangled Web notes that for foo.example.com such ...
0
votes
1answer
796 views
Jboss Seam JSESSIONID Cookie-Settings
I wanted to know, how I can override the jsessionid-cookie setting such as httpoly, secure and so on.
I didn't find any setting or other easy possibility to set these things.
Could it be something in ...
2
votes
1answer
116 views
What's the best way to support Facebook login in a secure way and avoiding eavesdropping from a malicious user?
Facebook has done great work on preventing eavesdropping (with tools like Firesheep) by supporting https on all facebook.com pages, but does not provide similar levels of security for 3rd party sites.
...
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 ...
1
vote
1answer
142 views
Plone session security findings - any ideas? [closed]
From a recent audit of our Plone 4.01 instance:
Where possible encrypt the username stored in the session cookie, or use the one-time session ID to identify the user (at the server end) instead of ...
1
vote
2answers
237 views
Is a javascript bookmarklet that can set domain cookies breaking cross-domain security?
I am creating a bookmarklet that is to be used across a wide range of domains. I wanted to set some cookies to store temporary settings for this bookmarklet, so I assumed that setting a cookie from ...
1
vote
2answers
104 views
Anatomy of a cookie
I am new to cookies . Trying to understand the structure of this cookie my website sets when a user logs in . I am building in PHP using Yii , I have also enabled cookie validation in config . Just ...



