Tag Info

New answers tagged

0

I'm not sure if that's exactly what you are looking for, but this is a simple option in Devise. If you set the following option in config/initializers/devise.rb config.timeout_in = 30.minutes then Devise should expire the token after 30 minutes of inactivity. The same operations that Devise does for session authentication should also work with the ...


0

You can do a for-each and check position() > 3 like this... <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text"/> <xsl:template match="/"> <xsl:variable name="sentance">The first sentance. The second...</xsl:variable> <xsl:variable name="tokens" ...


0

For anyone wanting to know. This was caused by the html5history API package that comes with the meteor-router or mini-router meteorite packages. I removed them and the tokens are no longer null


4

Opposite to PHP, in JavaScript string concatenation should be done with +: $('.counter').text(counter + 's');


0

Below is the c version. However, I must say that I prefer the c++ version. :-) http://stackoverflow.com/a/3910610/278976 main.c #include <stdio.h> #include <string.h> #define BUFFER_SIZE 1024 int main( int argc, char** argv ){ const char *delimiter_characters = " "; const char *filename = "file.txt"; FILE *input_file = fopen( ...


0

// fread(buffer, strlen(number)+1, 1, fp); fscanf(fp, "%s", buffer);//read "hello" printf("%s, ", buffer); fscanf(fp, "%s", buffer);//read "world" printf("%s\n", buffer);


0

Apart from the String#equals String comparison issue which has been well flagged, the main issue is that BufferedReader br is being closed within the read loop which throws an IOException when attempting to call BufferedReader#readLine. Move the close statement to a finally block } finally { try { br.close(); } catch (IOException e1) { ...


2

Going to the description in POSIX for strtok(), the description says: char *strtok(char *restrict s1, const char *restrict s2); A sequence of calls to strtok() breaks the string pointed to by s1 into a sequence of tokens, each of which is delimited by a byte from the string pointed to by s2. The first call in the sequence has s1 as its first ...


2

The standard's specification of strtok (7.24.5.8) is pretty clear. In particular paragraph 4 (emphasis added by me) is directly relevant to the question, if I understand that correctly: 3 The first call in the sequence searches the string pointed to by s1 for the first character that is not contained in the current separator string pointed to by s2. If ...


1

Consider using token = time || MAC(time, shared_secret) where || is concatenation and MAC is a Message Authentication Algorithm such as HMAC, that takes a secret key and some data and produces an authentication tag. On the server end, check the MAC is valid and the time (received in plaintext) is within an acceptable window. This is more secure than your ...


1

Because cplusplus.com isn't telling you the whole story. Cppreference.com has a better description. Cplusplus.com also fails to mention that strtok is not thread-safe, and only documents the strtok function of the C++ programming language, whereas cppreference.com does mention the thread safety issue and documents the strtok functions of both the C and the ...


0

Are you perhaps just mis-reading the description? Once the terminating null character of str has been found in a call to strtok, all subsequent calls to this function with a null pointer as the first argument return a null pointer. Given 'subsequent', I'm reading this as every call to strtok after the one that discovered \0, not necessarily the ...


0

strtok breaks a string to a sequence of tokens, separated by the given delimeters. Delimeters only separate tokens, not necesarily terminate them on both side.


0

Using a timestamp is not the correct way because the time is not reliable across systems. Perhaps you can use the length/hash of the message as a parameter instead. It does not, unfortunately, prevent playback from an attacker. Correct me if I'm wrong, but it seems as though you're dealing with authentication (ie, the sender is who they say they are) ...


1

As you just want to pull, you really don't need a page access token. Until and unless you have a demographic or other restriction over your page. All the pages are Public and data over them can be easily accessed by using the App Access Token which is simply put Your_App_ID|Your_App_Secret


0

first u need to get an API key from facebook, so here are the steps---> http://www.shoutmeloud.com/how-to-acquire-your-facebook-api-key.html & then u can access facebook API, these are docs provided by the facebook to use that API---> https://developers.facebook.com/docs/guides/web/


0

Use a nonce instead? Save the nonce to a DB or some persistent storage to make sure the same one isn't used. Conversely to your '9th second problem' you have a similar problem for seconds ###...0 to ###...9 hashing to the same value when you cut off the trailing 0 through 9. It would allow replay in that 10 second time frame. Seems like that would be ...


0

How about something like: private static class Thing { private final int int1; private final String string2; private final int int3; private final int int4; private final int int5; private final int[] int21; public Thing(final String[] line) { int1 = Integer.parseInt(line[0]); string2 = line[1]; int3 = ...


0

Depending on the route you want to go, and the flexibility you need you could write some code yourself, and examples of such code can be found on hundreds of sites, eg on this blog. The core of the code they propose is this: BufferedReader bReader = new BufferedReader( new FileReader(dataFileName)); String line; /** * Looping ...


1

I’d say it suffices for the given purpose. The values returned by uniqid(mt_rand(), true) should be up to 33 bytes: up to 10 bytes prefix from mt_rand 8 bytes system time in seconds 5 bytes current microseconds 10 bytes from the internal linear congruence generator php_combined_lcg However, these 33 bytes do not provide 264 bits of entropy but way less: ...


2

If the victim has not viewed any forms on your site, he will not yet have a token stored in his session. If the attacker presents the victim with a form with no token field at all, the POST request made by the victim will pass the CSRF check because $_POST['token'] and $_SESSION['token'] will both be null. (Or both empty strings depending on how PHP ...


1

On the products I support, I'd say "no." Your random number generator is based on rand() which is predictable. Also, it looks like the random number is very short - it needs to be long enough that it cannot be brute forced during the session's validity - nor cany any of the many active sessions' CSRF tokens be cracked. Check out the OWASP page on CSRF ...


0

I have the same issue. I get that: Array ( [data] => Array ( ) ) But the query /me works perfectly and with /me?fields=name too. I don't understand.


4

The parenthesis should be positioned at the end of the LinkedList declaration, otherwise the compiler assumes that a raw type is being used, attempts to parse the subsequent tokens and fails. Use: LinkedList<LinkedList<String>> rows = new LinkedList<LinkedList<String>>(); or better code to an interface, using: ...


0

Look to this guide: https://developers.google.com/youtube/2.0/developers_guide_protocol#OAuth2_Calling_a_Google_API You need to add a header containing: Authorization: Bearer ACCESS_TOKEN var $headers = array('Authorization: Bearer ' . $access_token); curl_opt($ch_subs, CURLOPT_HTTPHEADER, headers); You can also pass the token as part of the Get ...


0

Keep operators in a list and in for loop compare with the list, if result[x] available in operator list, then dont print that there insted add into separate list , you can print that later. PS: If you want a clear answer then do specify what you want and what you tried and where you struck.


1

Instead of a filter you can use SynonymFilterFactory to add Synonyms as mentioned in your example. This will allow you map terms and related terms, which would get added to the index.


0

The ability to post on to a friend's wall has been removed or depreciated since past few months by Facebook, the same documented in this blog post. Also, if you still want to allow User's to post to friend's wall, the blog post suggests If you want to allow people to post to their friend’s timeline from your app, you can invoke the feed dialog. Stories ...


-1

SSL authentication and secure channel establishment is performed before HTTP when you are using HTTPS. That means that it is performed before any pages can be retrieved using HTTP. The error message (if any) should therefore be returned by the browser. If the browser stays mute then there is very little you can do about that, except try for a better or more ...


0

See http://developers.facebook.com/docs/reference/api/errors/: you need to ask the user to re-authorize your app. The page says: OAuth 190 C unless a subcode is present Most OAuth errors include a subcode. Use the subcode table to determine the correct recovery tactic. The option C says: Authorize/reauthorize the user Example: an expired token ...


0

This is tough for bison/yacc to deal with, as it doesn't do backtracking. Even if you use a backtracking parser generator like btyacc, it doesn't really help unless it also backtracks through the lexer (which would likely require a parser generator with integrated lexer.) My suggestion would be to have the lexer recognize a slash immediately followed by a ...


0

I believe Boost.Spirit would be suitable for this task provided you could construct a PEG-compatible grammar for the language you're proposing. It's not obvious from the examples as to whether or not this is the case. More specifically, Spirit has a generalized AST called utree, and there is example code for parsing symbolic expressions (ie lisp syntax) ...


0

I am trying to access the same using curl command. but still getting the same error. Is curl also sending the request as headers C:\work\box.net\curl>curl -k "h ttps://www.box.com/api/oauth2/token \ -d 'grant_t ype=authenticated&code=uptj5tRYHWdxfe2sqqfnIwCXPBlgq2GU&client_id=xxxxxxxxxx wzgf2echh0vcwonp9b&client_secret=xxxxxxxxxxxxxxx' \ -X ...


2

You have to use C++11 to compile it, it uses initializer_list. set<Token> stmtBeginTokens { ... ^ initializer_list (since C++11) If your compiler supports C++11, use -std=c++11 compile option (gcc).


0

This is the problem 'Format Headers strHeaders = String.Format("grant_type={0}&code={1}&client_id={2}&client_secret={3}", grant_type, code, client_id, client_secret) 'Add Headers to request request.AddHeader("Authorization", strHeaders) You need to send that string as part of the POST body, not as headers.


0

Looks to me like your urlencoding might be messed up. You urlencode the locovisual.com URL but nothing else. 400 reliably means that there’s something syntactically messed up with your request.


0

If you're allowed to use third-party tools for this, do. Parsing source code is hard. GCCXML and srcML are good options.


0

In your rails app, open config/routes.rb add resources :tokens


0

Without knowing how you setup the rest of your model, or if this should only happen once or on each save, the design may change. It will depend on how you setup the hook which calls create_remember_token. Assuming, you always want to ensure that a token exists, you can force if before your save: class User < ActiveRecord::Base before_save ...


0

pycrypto is a low-level module that gives you all the pieces you need to build a cryptosystem, not a complete cryptosystem implementation. Also, pycrypto doesn't have PKCS#11 support. And neither do the major alternatives. Even if you use one of the OpenSSL wrappers, normal builds of OpenSSL themselves don't have PKCS#11 support compiled in. You need to ...


0

in my case, my code wasn't working on IE. The issue was in the following line $user_id = $facebook->getUser(); if ($user_id) Because somehow the getUser function always returned 0, so that condition was always true. Than he generated that error from invalid token. Well, i fixed it by just saying this: if ($user_id>0) Silly stuff...


1

I have pointed out the errors with comments.Make it a habit to use caps for the #define macro, not for the variables.And finally, the condition for your if should be if(PI!=pi).Remove the { between if and the (, and also the ; after the ) #include <stdio.h> #define pi 3.14159 int main() { float r; char PI; /*Program for circumference. */ ...


1

You are terminating your main function at the first } character. You have an uneven match of open and close braces and that is causing the problem. You also have a problem with your if statement. This if {(char != PI || 3.14); should read as if (char != PI || 3.14) or more specifically the entire if-else should be if (char != PI || 3.14) { ...


0

Assuming there is some lexical way to tell where the password begins and ends, you can use lexical states. For example, if the sequence IDENTIFIED BY is only ever followed by spaces that are followed by a password, you make a state machine so that IDENTIFIED transitions from DEFAULT to S0. In S0 spaces are skipped and BY transitions to S1. In S1 spaces are ...


0

I had a similar issue and discovered that the reason was that our database only stored was limited to access tokens 200 characters or less so our access tokens were getting truncated. I widened the database field to 512 characters and things are working again for me. It seems access tokens are now 219 characters long.


0

So first of all - STSes don't issue a session token. They issue (i guess you use WS-Fed) a SAML token. This token is signed with an X.509 certificate. The relying party then takes the incoming SAML token and turns it into a session token and writes that to a cookie. So why do you want to validate that? This is done automatically by the SAM.


0

I think Node Hierarchy can fix this problem : https://drupal.org/project/nodehierarchy


0

Check your code You might have forgot to put semicolon or the missing } or ) before the lines where you are getting this error.


2

Since it would be to long to write properly in a comment, I add this as an answer instead. When dealing with multiple source files, you should compile them one by one into object files, then in a separate step link them together to form the final executable program. First make the object files: $ gcc -Wall -g file_1.c -c -o file_1.o $ gcc -Wall -g ...


0

The form you wrote already disallows nested comments. The token will stop at the first instance of */, even if multiple /* sequences appeared in the comment. To allow nested comments you have to write a lexer rule to specifically treat the nesting. The problem here is STRINGLIT does not allow a string to be split across multiple lines. Without seeing the ...



Top 50 recent answers are included