A nonce, short for number used once, is a random number used to sign a message in client-server communication.
0
votes
0answers
27 views
Is it better to store nonce/timestamp information in my database or in a session?
I'm trying to temporarily store nonce/timestamp info to prevent man-in-the-middle attacks when performing OAuth authentication. Is there any advantage to storing this info in a database over using ...
2
votes
1answer
60 views
How to generate a Nonce token for iOS client?
Is there any way to create a Nonce token in iOS client side using Username and shared secret key as well as password digest. The nonce is required while creating a SOAP based request to one of my ...
0
votes
0answers
87 views
Why should the nonce for Android in-app billing generated on the server?
http://developer.android.com/google/play/billing/billing_best_practices.html
As the best practices documentation suggests, I want my server to perform signature verification tasks for in-app billing. ...
-1
votes
1answer
139 views
Best practices for Stateless cookie authentication using nonce [closed]
I've been reading about using cookie for authentication. This seems challenging, because cookie could be stolen from browser cache or intercepted in HTTP message.
I've come to the idea of using nonce ...
0
votes
1answer
93 views
ajax nonce wordpress security. Can I use this to protect my json data from scraping?
I am building a wordpress plugin with ajax and am looking to protect the json data from prying eyes and data scrapers.
My thoughts... server side, I send a nonce in a hidden html field within a form ...
0
votes
1answer
111 views
Is it possible to combine CSRF and Nonce tokens?
First some context.
I've been using nonce tokens to sign my form data in the same way wordpress allows to attach an action to a nonce:
// editing post id:10
$post_id = 10;
$nonce = create_nonce( ...
3
votes
2answers
196 views
flickr oauth api returns signature invalid error at random times
I have a web app that authenticates users to their flickr api. It makes use of OAuth 1.0 and authentication works most of the time. But at random times, at completely random times, flickr doesn't ...
0
votes
0answers
96 views
PHP Code to generate this
I'm trying to get a result from a wsdl file, It however requires authentication and the normal passing of an username and password gives me an error:
Error arguments:
Missing authentication from ...
0
votes
1answer
54 views
Strongly linking two pages together using URL Nonces (with MD5 hash). Any other way to do this?
So, I'm doing a project where there are two pages, page_1 and page_2, where page_2 will ONLY load if the referrer was page_1.
I ended up using URL Nonces from: ...
0
votes
0answers
139 views
WCF - The nonce is invalid or replayed
I'm using WCF and have a client accessing a service using wshttpbinding.
Now I get some errors I dont quite understand. These errors doesn't seem random but seems to occur when calling one particular ...
0
votes
0answers
259 views
Web Service SOAP with nonce digest authentication
I am trying to call a web service that uses nonce digest authentication, but I have no clue on how to pass the username & password.
Any help?
Here's my code:
byte[] byteStream = new ...
0
votes
1answer
244 views
Can I make my wordpress nonce have a quicker expiration? (via wp_verify_nonce)
Wordpress has a nonce mechanism whereby a plugin can emit a nonce into client-side code, and then verify the nonce when the client communicates back to the server.
I looked in the source code for ...
0
votes
1answer
415 views
How does check_ajax_referer() really work?
Smart Wordpress people say that plugin developers should employ a nonce in each AJAX request that is sent from a page back to the wordpress blog (admin-ajax.php).
This is done by (1) generating a ...
0
votes
0answers
180 views
Using Openssl to compute MAC and GMAC with AES and the 256-bit key
Could someone explain how to calculate the MAC and the GMAC and what the nonce has to do with this? Do I need to put the message below in a file and then encrypt it? I'm confused!
using an existing ...
0
votes
0answers
121 views
Securing data transfer between client and server using nonce
I'm a bit confused as to how to use a nonce in order to ensure that client data sent to, and requested from, the server is actually originating from my client application.
For example, say I send the ...
1
vote
1answer
149 views
ruby sinatra openid app replies with “Nonce already used or out of range”
I'm running the following ruby openId example on sinatra on an Ubuntu image.
%w(rubygems sinatra openid openid/store/filesystem).each { |lib| require lib}
REALM = 'http://localhost:4567'
...
3
votes
4answers
1k views
Android InApp Billing - what are really nonces for?
YES, I've read all the docs @ developer.android.com and I do understand it all with one basic exception - what it was introduced for.
Since all order responses from Google Play come signed by ...
2
votes
1answer
373 views
PIV Smart Card - GENERAL AUTHENTICATE - Sign a nonce
I was hoping someone could help me with the PIV smart card standard.
I would like to authenticate the smart card by making it sign a PKCS#1 padded nonce with the previously generated RSA 1024-bit ...
1
vote
2answers
2k views
Android HttpClient Digest Authentication Authorization header “nc” hard-coded
We try to send several requests to target server in one HttpClient (one session). The target server will first authenticate all requests with digest authentication (based on MD5-sess). The result ...
2
votes
2answers
308 views
Entropy in CSRF Tokens and Nonces
I am making a classified ads site with Zend Framework (for portfolio purposes, yes I know the world doesn't have room for "yet another Craigslist clone"). I am trying to implement the ability to ...
1
vote
1answer
215 views
RESTFul authentication after obtaining challenge from server
I'm getting confused about how to supply the challenge to the server for authentication. It is a RESTFul architecture. From my server, I am returning this:
function authenticate()
{
...
0
votes
1answer
402 views
iOS - NSURLConnection - Connecting to server and get Nonce
I'm writing iOS application.
There's a server related to some real estate.
I've to send the following request to server to get the Nonce.
GET /ptest/login HTTP/1.1
Method: GET
User-Agent: MRIS API ...
0
votes
0answers
744 views
How to implement digest authentication in Java?
I know this is a very broad question but I don't intend to ask you a full implementation (I know there are libraries that will do that for me) I just have some small questions about it.
Is the ...
1
vote
0answers
151 views
Sometimes Facebook doesn't return the auth_nonce parameter during authentication
I am using the auth_nonce parameter during the server-side authentication flow. However, I'm getting a problem where sometimes Facebook doesn't return the auth_nonce argument in the final step, which ...
0
votes
1answer
1k views
Using Nonce with Ajax in WordPress Plugin
I'm trying to use a nonce in a WordPress plugin. I've got a form that I want use the nonce on.
In php:
function csf_enqueue() {
//I have other scripts enqueued in htis function
...
0
votes
1answer
111 views
Changing ciphertext upon identical encryption (IV) Cocoa?
I was reading a tutorial on how to salt a key to make your encryption secure, but couldn't make much of it. I don't know a lot about cryptography, and need some help. I am using commoncrypto to ...
2
votes
2answers
2k views
How do I add an EncodingType attribute to the Nonce element of a UsernameToken in WSE 3.0 (.NET)
I'm trying to call a Java Web Service from an MVC3 .NET web app using WSE 3.0.
However, the web service requires an "EncodingType" attribute on the Nonce element of the UsernameToken. Following is a ...
0
votes
1answer
723 views
Wordpress nonce check always false
I'm having problems with a basic nonce validation via an ajax request.
Those are my script loader and css loader functions:
(in gallery.php)
function gallery_js_loader()
{
if (!is_admin()) ...
2
votes
4answers
658 views
Java Authentication Library
I am developing a server/client Java application where I need to authenticate the client before sending data, also I need to encrypt the sent data after authentication and to ensure its freshness
I ...
2
votes
0answers
82 views
zend openid don't auto clean nonce files?
I am using zend openid library :https://github.com/marcinwol/zfopenid works great.But,issue is not cleaning tmp folder files[nonce files].It seems purgeNonces members of ...
5
votes
3answers
3k views
What's the point of a timestamp in OAuth if a Nonce can only be used one time?
I had at first misinterpreted the timestamp implementation of OAuth into thinking that it meant a timestamp that was not within 30 seconds past the current time would be denied, it turned out this was ...
2
votes
1answer
5k views
Java Webservice Client UsernameToken equivalent to PHP
I have a webservice build in PHP that uses UsernameToken as authentification mechanism. I have PHP client side code that can access this web service. Now I need to do this in Java. Maybe you can help ...
0
votes
1answer
219 views
Many “bad nonce received or getnonce not called” in mongo log
Hi all,
Now I use mongo as my database. I found my mongo connection is auto-reset or failed sometimes. Then I found some strange message in my mongo log file, which is
...
0
votes
1answer
100 views
HTTP authentication, request received in quick succession
HTTP request may be received in quick succession, for avoiding re-running the while protocol for each request, the server nonce may be re-used (timestamp for nonce to determine the window in which ...
0
votes
1answer
368 views
Do I really need to use nonces?
I'm currently developing an app for iOS-devices. This app downloads data from a wordpress blog, but fetches a nonce-token first. This has been tested, and is showing to take about 2~3 seconds, which ...
2
votes
1answer
154 views
Can I validate HTTP request signature tokens and nonces using Model Binding?
I am setting up an end-point using ASP.NET MVC to which requests can be made to manipulate and retrieve data (basically, an API). I am using a 2-legged OAuth model to validate that requests be signed ...
3
votes
1answer
283 views
nonce on zend form
Does anybody knows if there exists a way to use nonce in zend form.
Note: The nonce field is used to validate that the contents of the form came from the location on the current site and not ...
0
votes
1answer
714 views
How to prevent replay attacks or multiple postbacks using Nonce Key in ASP.NET MVC 2.0
How to prevent replay attacks or multiple postbacks using Nonce Key in MVC 2.0
I am looking for a low level implementaion solution for this. It does not have to be a complete one, but any examples of ...
0
votes
1answer
841 views
Preventing CSRF by generating a nonce token?
I was reading This article about preventing CSRF by creating a nonce token which going to be sent as variable in ajax function along with a session hold the same value as in the token. Is this a good ...
1
vote
3answers
3k views
Failure of SIP Proxy Authentication
I'm developing a SIP user agent application that connects to an Asterisk server and tries to do an outgoing call. I'm using the NIST implementation of the JAIN SIP API.
When the application registers ...
0
votes
1answer
193 views
Deriving IV (Nonce) securely with MITM attack
I understand that a good nonce is very important with most ciphers. I am using AES-GCM, and am using a 96-bit nonce with a 256-bit AES key. I have asked a few questions on here before about how to ...
2
votes
3answers
1k views
CSRF tokens vs Nonce confusion - are they the same?
In a attempt to make the current application i'm developing more secure, i've been reading about CSRF tokens and also Nonce - I think i've grasped the idea behind CSRF tokens but i'm having trouble ...
1
vote
2answers
1k views
What is the standard method for generation a nonce in Python?
Can someone share the best practices for creating a nonce for an OAuth request in Python?
0
votes
1answer
266 views
Wordpress - cannot save metaboxes position in plugin
Good morning,
i'm developing a wordpress plugin that presents a kind of dashboard, full of custom metaboxes. I was able to get the open/hide/close and drag handles working properly; howeaver these ...
3
votes
1answer
332 views
What is the best way to deal with a failed nonce validation?
I have a vague understanding of nonces but have a little confusion.
What is the correct response when nonce validation fails?
Under what circumstances could nonce validation fail? what is the risk ...
4
votes
1answer
522 views
Securing Ajax Requests in ASP.net via Autenticated Webforms
I already read
Securing AJAX Requests via GUID
and
Securing an ajax request
. Now let me explain my scenario, below would be code snippet that may aid at explaining in the subject matter.
...
0
votes
1answer
49 views
How to generate a WordPress plugin install link
I'm created a plugin that replaces a previous plugin I wrote and adds some extra stuff too. I want to create an alert in the settings page of my old plugin with a link to download and install my new ...
3
votes
1answer
691 views
Managing Nonces in Apache/PHP
I have been going through the various questions here about nonce generation and PHP, but not found any discussions about the details of managing the "once" aspect of the nonce.
Here is my situation.
...
2
votes
2answers
4k views
nonce usage in authentication
In digest based authentication, nonce is generated by server. However in OAuth based authentication, nonce is generated by client. I want to know anyone know the reason of the difference?
1
vote
1answer
751 views
Does Twitter enforce oauth_timestamp?
In the guts of OAuth I discover the field oauth_timestamp, for which the specified behavior is apparently that all requests that contain a lower oauth_timestamp value than the highest one ever ...

