Tagged Questions
0
votes
0answers
11 views
Access denied on CreateFile in user folder
From one application running with USER1 account, I want to access a file that is located under C:\Users\ADMIN
USER1 is limited and ADMIN is an administrator account.
The process has an admin token ...
3
votes
1answer
47 views
What pattern for constructing and verifying an access token for a web application?
We have a web application which consists of two parts (among others): a 'shell' written in Java running in Jetty using Windows authentication through Waffle, which shows a 'component' written in ...
2
votes
3answers
47 views
How to pass API token with timestamp reliably
I'm making an API call from one app to another. I handle authorization by passing an md5ed shared secret + timestamp...
$token = md5( $secret . time() );
Then at the API endpoint, I check the ...
2
votes
3answers
94 views
PHP CSRF Attack
I want to know if this code is strong enough to prevent CSRF attack on PHP Form?
<?php
session_start();
session_regenerate_id(true);
if (isset($_POST['submit'])) {
if (isset($_SESSION['token']) ...
0
votes
1answer
28 views
Spring TokenBasedRememberMeServices with hashed password
I am using StandardPasswordEncoder which hashes the password using SHA-256 with 1024 iterations and 8-byte salt. I was looking at TokenBasedRememberMeServices for doing a similar thing or at least ...
0
votes
1answer
28 views
Store the oauth access_token or ask a new one each 'session'
I'm playing around with the api of a service that supports oauth. I managed to retrieve the access_token from the service and I'm now able to call the various endpoints of the api. So far so good.
...
0
votes
1answer
32 views
Why won't the Saml2SecurityHandler create a token using ReadToken from a string I've just created using WriteToken?
So I need to serialize a token to send to a service via a queue + NetMessageBinding in Azure. The token comes from ACS and after some jiggery pokery I have the Saml2SecurityToken and I can write it ...
4
votes
3answers
233 views
Is using microtime() to generate password-reset tokens bad practice
In PHP I've noticed some frameworks make use of the microtime() function to generate password reset tokens as in:
$token = md5(microtime());
Is this a security issue? If the attacker is able to ...
1
vote
1answer
845 views
REST Web Service authentication token implementation
I'm implementing a REST web service using C# which will be hosted on Azure as a cloud service. Since it is a REST service, it is stateless and therefore no cookies or session states.
The web ...
0
votes
0answers
59 views
STS FederatedPassiveSignout on Mobile device using MVC4 C#
I'm using MVC4 c# and have incorporated a home grown security token service (STS). The user calls the actual web address, and they're passively redirected to the STS login. When they successfully ...
0
votes
1answer
86 views
How does a WCF service know what certificate to use to decrypt an incoming security token?
I'm implementing a WCF service using .NET 4.5 and token-based security. On the client side, I'm calling myfact.CreateChannelWithIssuedToken() with a token previously retrieved from an STS, when I use ...
0
votes
1answer
39 views
strange token websites url
I always wonder what these very long numbers and alphabets are in URL as Get variables, I am using neat URLs and since my knowledge of security is not enough I start to feel worry. Would you please ...
0
votes
1answer
109 views
Protecting a Codeigniter File Upload controller
I have a controller called "File_upload" which is called via ajax from a File Uploader form. As part of security hardening I want to make sure that the File_upload controller cannot be called via the ...
0
votes
0answers
64 views
Symfony2 getToken() empty in factory
I have a factory to return the account of the user.
In my factory I have the argument "security.context" included like this:
ml.account.factory:
class: ...
1
vote
1answer
89 views
Remote login with token instead of credentials - is it a good idea?
I'm not a cryptographer and if I had found something else I probably wouldn't try to solve this myself, so what do you think about this method to remotely login to a website from another site using a ...
3
votes
3answers
1k views
How to create a authentication token using Java
On my Java EE6, REST service, I want to use authentication tokens for login from mobile devices, User will send their username, password and server will send back a token, which will be used to ...
1
vote
1answer
340 views
How often does the CSRF token change in YII frame work
I have recently read about csrf tokens. I am using YII framework to develop my project. I enabled csrf validation in config/main.php and yii is putting a token in a hidden form field. And checking if ...
0
votes
1answer
48 views
Privileges of an Application
Is there a way to get the privileges associated with a C# program? If yes, how?
I know that in C, you have to create a token and make use of the GetTokenInformation() method to get information about ...
0
votes
1answer
47 views
C - Buffer printing rubbish characters when getting token information
I have the following code snippet written in C which is supposed to retrieve token information about the program privileges:
char buffer[1000]; //Declaring the buffer where the token information will ...
0
votes
2answers
59 views
Getting Token Information
I have the following program written in C:
#include "stdafx.h"
#include <Windows.h>
void main()
{
char buffer[1000];
int size = sizeof(buffer);
PDWORD required_size;
...
1
vote
1answer
64 views
Program using tokens and privileges
I want to create a C++ program with limited privileges. I made some research on the internet and found out that I have to create a token and then use the AdjustTokenPrivileges() method to alter its ...
0
votes
2answers
429 views
Overload jQuery.ajax() method to add aditional token value to data parameter
I have to pass an aditional token value to the website so that I can validate the request.
The function that adds the value is this:
AddPageTokenToAjaxRequest = function (data)
{
...
-2
votes
2answers
248 views
Any free library to generate tokens [closed]
Tokens can be used for many purposes in a web application some of them below
Generate short verification code for signup's
Verification code for mobile authentication
Avoid CSRF through use of ...
2
votes
1answer
196 views
How to create a password-less login for mobile app
I'm intested in building some kind of password-less login between a mobile app and an API (assuming I can control both). The motivation is that having to login is very annoying for users and has ...
11
votes
1answer
2k views
Authenticating requests from mobile (iPhone) app to ASP.Net Web API (Feedback requested on my design)
I'm designing a web site that will have a mobile companion (initally iPhone only). The web site will be an ASP.Net MVC 3 application. I'll also have an ASP.Net Web API site (MVC 4) to expose services ...
1
vote
1answer
97 views
Protocol (algorithm ) for safely authorizing payments via mobile app
I'm looking for most secure algorithm/protocol to safely authorize actions done via mobile app.
Let's say I'm developing a system that requires user authorisation of certain actions. You can think of ...
0
votes
1answer
1k views
Single Sign On / Token-Based Authentication process
I have searched the forum for some resources:
Security of Token Based Authentication
Is token based authentication secure when
Implementing a token authentication
I am bouncing around ideas on ...
0
votes
1answer
116 views
Symfony Tokenized URLs not working
Looking through the Symfony documentation, I found a way to secure a form with a "token" field. I'm trying to implement that and the form generates a token but it doesn't pass it in the URL to the ...
0
votes
0answers
179 views
How to get the correct timestamp for generating Time-based One Time Passwords
I'm creating a Time-based One Time Password (TOTP) system with the following components:
A client (Android) creates a token.
A server (PHP) validate that token.
The system is working fine, but i ...
0
votes
2answers
197 views
what are sessions_ids (tokens) for and how to use for security reasons?
I'm a little new to security so I was wondering if someone can shine some light.
Correct me if I'm wrong...
Is token just a term used when using session_id?
Also, what exactly am I supposed to ...
13
votes
3answers
4k views
How to transparently renew the Facebook access token while processing a service method which uses Facebook API calls?
I have a WCF service which runs in IIS 7.5 and VS 2010. This service has some methods which internally use the Facebook C# SDK (version 4.1, not latest) in order to perform some GET and POST from/to ...
0
votes
1answer
423 views
access token expiration/renewal
I have a personal website on which i want to display my latest facebook comment. Everything works fine, but i'm not sure how the access token expiration works. I have a two months access token, so ...
3
votes
2answers
960 views
How to implement a Security token in a WCF soap response?
I am implementing an API from a bank and they require a security token to be provided. In the header of every soap message there is something which looks as follows:
<soapenv:Header>
...
0
votes
2answers
2k views
WCF custom authentication - Token
I'm trying to find a standard solution in WCF for the following scenario:
I have 2 services. Service1 wants to send a request to service2. I want that service1 will send credentials in order to ...
4
votes
1answer
2k views
how to securely store access token and secret in android?
i am going to use oauth to fetch mails and contacts from google. I don't want to each time ask the user to log in to obtain an accesstoken and secret. From what i understood, i need to store them with ...
3
votes
2answers
1k views
protecting against CSRF on ajax requests and forms without submit buttons
I'm fairly new to web security. I was wondering what would be the correct way to use tokens on ajax requests and forms without submit buttons (ie status updates) to protect again CSRF. Could someone ...
0
votes
1answer
314 views
Is it necessary to develop an iPhone Native App with session token controlling at server-side?
Hello, everybody.
I am developing an iPhone native app(including webview in it) which could communicate with my server-side webservice.
The system has user management module which user could ...
2
votes
1answer
151 views
Modifing CheckAccessCore(ctx) to permit WCF Help pages w/o authentication
I need to apply a different set of security policies to the "Help" urls on a WCF service. How can I get the full URL of the WCF service.. namely Session or Session.svc?
...
1
vote
0answers
271 views
How to add timestamp to flowplayer secure streaming plugin (using rtmpe/wowza)
I have been searching for the past 2 days to find a solution to this problem so any help would be greatly appreciated.
I am using a custom token (I recompiled plugin swf) with wowza server at the ...
1
vote
3answers
421 views
Best way to save authentication token?
I've been working on implementing an api in c#. The implementation is going well, but I did come across a concern.
When my library has authorized against the api I have a auth_token which I use for ...
0
votes
1answer
266 views
WCF-based federated security in a service-oriented setup
So i have the following scenario:
I have a WPF-application which includes a login-box.
Users enter credentials, which is used to get a security token from a SecurityTokenService (STS).
This token is ...
2
votes
2answers
469 views
Login token with sha256
I need to create a login token that I can pass from site 1 to site 2 in a querystring. I don't need to transfer a username or id, I just need to know on site 2 that the user has a valid login on site ...
1
vote
0answers
404 views
Renew security token on Java after failed try
I have developed code to check if a certain security token is found in the PC prior to a certain operation. The code I am using right now to get the keystore is:
private KeyStore getKeyStore() {
...
0
votes
1answer
655 views
Rest web service with security
I have wrote an web service that returns the scheduler from a given student. I must now secure the web service, because the data are confidential.
It's a rest web service using jersey.
My idea is to ...
1
vote
2answers
1k views
Forgotten password scenario - how to create a token
I would like to implement a forgotten password scenario in an web application. The system will send out an email to the user containing a unique url that the user can hit to allow them to reset their ...
0
votes
4answers
367 views
Length of a security token
I'm using security tokens to create not guessable URLs like this (16 bytes, hex)
http://example.com/something/private/b5f8c21a628e12b39786fb8ef9561d31
The token is something like a shared ...
1
vote
1answer
193 views
Security tokens in forms
Many sources suggest to add tokens to the forms to make form submitting more secure.
I added tokens to all forms in the forum and now I have the following problem:
some users open several browser ...
3
votes
2answers
2k views
Codeigniter CSRF - how does it work
Recently I found out about CSRF attacks and was happy to find out that CSRF protection was added to Codeigniter v 2.0.0.
I enabled the feature and saw that a hidden input with a token is added in ...
6
votes
3answers
1k views
Secure Token URL - How secure is it? Proxy authentication as alternative?
I know it as secure-token URL, maby there is another name out there. But I think you all know it.
Its a teqniuque mostly applied if you want to restrict content delivery to a certain client, that you ...
1
vote
1answer
974 views
OAuth security issues on an Android mobile phone?
I am writing a client application that will run on Android phones that will interact with an OAuth server on the user's behalf. I have the OAuth server side code running on my web server for ...



