<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[PunBB Forums — Unable to confirm security token (can I increase the time?)]]></title>
		<link>https://punbb.informer.com/forums/topic/20572/unable-to-confirm-security-token-can-i-increase-the-time/</link>
		<atom:link href="https://punbb.informer.com/forums/feed/rss/topic/20572/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Unable to confirm security token (can I increase the time?).]]></description>
		<lastBuildDate>Tue, 10 Feb 2009 11:31:29 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124392/#p124392</link>
			<description><![CDATA[<p>1. What is the PHP version running forum?<br />2. Server TZ setting?<br />3. Your local TZ?</p>]]></description>
			<author><![CDATA[null@example.com (Anatoly)]]></author>
			<pubDate>Tue, 10 Feb 2009 11:31:29 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124392/#p124392</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124381/#p124381</link>
			<description><![CDATA[<p>it is very very very common that I get the security message. I don&#039;t think my users get it. someone suggested it mainly affects admins</p>]]></description>
			<author><![CDATA[null@example.com (esupergood)]]></author>
			<pubDate>Tue, 10 Feb 2009 08:02:10 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124381/#p124381</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124373/#p124373</link>
			<description><![CDATA[<div class="quotebox"><cite>esupergood wrote:</cite><blockquote><p>So the online timeout should be around 3 minute (for my site) and the security token should be a separate value.</p></blockquote></div><p>As it was stated above, token is stored in online table. So that when user goes offline, the token is lost.<br />You may modify the code or make an extension to implement the logic you need, e.g. store the csrf token in users table...<br />Nevertheless, it seems to me very seldom, when you cannot find the balance between &quot;long writing&quot; and &quot;quick online status update&quot;.</p>]]></description>
			<author><![CDATA[null@example.com (Anatoly)]]></author>
			<pubDate>Tue, 10 Feb 2009 06:34:59 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124373/#p124373</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124365/#p124365</link>
			<description><![CDATA[<div class="quotebox"><cite>esupergood wrote:</cite><blockquote><p>posters who make topics like &quot;hello username&quot;</p></blockquote></div><p>...should be banned <img src="https://punbb.informer.com/forums/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[null@example.com (TuxPirate)]]></author>
			<pubDate>Mon, 09 Feb 2009 20:31:21 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124365/#p124365</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124356/#p124356</link>
			<description><![CDATA[<div class="quotebox"><cite>slavok wrote:</cite><blockquote><p>To increase time frame of the security token, you should increase the online timeout. You can do it on &quot;admin/settings.php&quot; page in the &quot;Default timeouts and redirect delay&quot; section.</p></blockquote></div><p>This is not a good solution I&#039;m afraid.<br />If a user spends 5 minutes composing a new post (this is very common on my forum) then he should be hit with the security token measure. This is just putting people off using the forum. Also, I don&#039;t want people to remain in the online list for 5 minutes after they leave the site. This results in confusion amongst posters who make topics like &quot;hello username&quot; when in fact the person they are talking to left the site 4 minutes ago. </p><p>So the online timeout should be around 3 minute (for my site) and the security token should be a separate value.</p><br /><p>That is just my opinion anyway</p>]]></description>
			<author><![CDATA[null@example.com (esupergood)]]></author>
			<pubDate>Mon, 09 Feb 2009 18:35:19 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124356/#p124356</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/124214/#p124214</link>
			<description><![CDATA[<p>We have the url of a requested page and csrf_token in the table online (it is generated when user log in). These two strings are concatenated and hashed with sha1-algorithm. Given value is stored on the forum page in a hidden value.<br />There is an option &quot;Online timeout&quot;. It defines the count of seconds idle before a user is removed from the online users list.<br />Every time a user requests a page of the forum, the list of online users is updated. This means that some information about the current user (logged time and previous url) will be updated, and all users, logged more than online timeout seconds ago, will be removed from the online table.<br />When a visitor writes his post more than online timeout and other users are browsing forum pages, the posting user will be removed from the online list. When a user presses the &quot;Submit&quot; button, he will be authorized via a cookie and, as he was removed from online table, a <strong>new csrf_token will be generated in the online table</strong>. So csrf_token in the online table doesn&#039;t equal csrf, which was used to generate csfr-token at the requested page.<br />To increase time frame of the security token, you should increase the online timeout. You can do it on &quot;admin/settings.php&quot; page in the &quot;Default timeouts and redirect delay&quot; section.</p>]]></description>
			<author><![CDATA[null@example.com (Slavok)]]></author>
			<pubDate>Fri, 06 Feb 2009 19:10:20 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/124214/#p124214</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121552/#p121552</link>
			<description><![CDATA[<p>This bug is really annoying. I&#039;ve tried to find the cause some times, but I&#039;ve found nothing <img src="https://punbb.informer.com/forums/img/smilies/sad.png" width="15" height="15" alt="sad" /><br />There is to much code verifying user&#039;s cookies and security tokens.</p><p>I&#039;ve supposed that the bug appears on posting a form when somebody else have visited the forum after a forum page with the form was opened in browser. Also I thought this error is shown only for admins. Am I right?</p><p>We&#039;ll continue the investigation <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Parpalak)]]></author>
			<pubDate>Wed, 24 Dec 2008 13:55:07 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121552/#p121552</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121541/#p121541</link>
			<description><![CDATA[<p>I&#039;m personally rather unfamiliar with the specifics of the 1.3* code, but I&#039;m sure one of the devs should be able to point you in the right direction. You have to allow time for the fact that it is Christmas, when factoring for a response, however. <img src="https://punbb.informer.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (MattF)]]></author>
			<pubDate>Wed, 24 Dec 2008 10:25:34 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121541/#p121541</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121538/#p121538</link>
			<description><![CDATA[<div class="quotebox"><cite>MattF wrote:</cite><blockquote><p>That&#039;s defeating the purpose of having the security token, however.</p></blockquote></div><p>But the way it was causing problems. Users were frustrated. The time length needs extending. Is there a description somewhere that I can read stating why the time is so short?</p>]]></description>
			<author><![CDATA[null@example.com (esupergood)]]></author>
			<pubDate>Wed, 24 Dec 2008 09:07:07 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121538/#p121538</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121533/#p121533</link>
			<description><![CDATA[<p>You&#039;re right, I&#039;ll edit my post saying it&#039;s decreasing their security in bold letters so users know.</p>]]></description>
			<author><![CDATA[null@example.com (User33)]]></author>
			<pubDate>Tue, 23 Dec 2008 23:56:59 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121533/#p121533</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121532/#p121532</link>
			<description><![CDATA[<div class="quotebox"><cite>Garciat wrote:</cite><blockquote><p>Yeah, of course.</p></blockquote></div><p>It is not a good idea to suggest to people an option which is decreasing their security.</p>]]></description>
			<author><![CDATA[null@example.com (MattF)]]></author>
			<pubDate>Tue, 23 Dec 2008 22:33:50 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121532/#p121532</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121524/#p121524</link>
			<description><![CDATA[<p>Yeah, of course.</p>]]></description>
			<author><![CDATA[null@example.com (User33)]]></author>
			<pubDate>Tue, 23 Dec 2008 20:09:54 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121524/#p121524</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121521/#p121521</link>
			<description><![CDATA[<p>That&#039;s defeating the purpose of having the security token, however.</p>]]></description>
			<author><![CDATA[null@example.com (MattF)]]></author>
			<pubDate>Tue, 23 Dec 2008 16:53:14 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121521/#p121521</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121514/#p121514</link>
			<description><![CDATA[<p>The end would be ok, I guess.</p>]]></description>
			<author><![CDATA[null@example.com (User33)]]></author>
			<pubDate>Tue, 23 Dec 2008 13:44:16 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121514/#p121514</guid>
		</item>
		<item>
			<title><![CDATA[Re: Unable to confirm security token (can I increase the time?)]]></title>
			<link>https://punbb.informer.com/forums/post/121512/#p121512</link>
			<description><![CDATA[<p>Anywhere in particular?</p>]]></description>
			<author><![CDATA[null@example.com (esupergood)]]></author>
			<pubDate>Tue, 23 Dec 2008 13:01:39 +0000</pubDate>
			<guid>https://punbb.informer.com/forums/post/121512/#p121512</guid>
		</item>
	</channel>
</rss>
