Just something I was briefly thinking about regarding API authentication, I thought I might as well write it down here.
What I would do is employ a TOTP approach for the tokens, that way the actual token for each request is unique and only ever used once and the tokens will be near impossible to be ...
Search found 4 matches
- Mon May 04, 2015 8:41 pm
- Forum: [3.x] Tickets Discussion
- Topic: PHPBB3-11595 - API
- Replies: 64
- Views: 208083
- Thu Apr 23, 2015 11:28 am
- Forum: [3.x] Tickets Discussion
- Topic: PHPBB3-11595 - API
- Replies: 64
- Views: 208083
Re: [RFC] API
I will apologize in advance, because I don't have the time to read this entire topic.
When it comes to authenticating API's it is less about how the authentication is done, as long as it is token based. If the token is compromised (even if it expires and is refreshed periodically) it is pretty ...
When it comes to authenticating API's it is less about how the authentication is done, as long as it is token based. If the token is compromised (even if it expires and is refreshed periodically) it is pretty ...
- Thu Dec 02, 2010 5:09 pm
- Forum: [3.x] Discussion
- Topic: "Dynamic" styling
- Replies: 2
- Views: 6183
"Dynamic" styling
I got a simple proposal, probably not something everyone would need but at the same time I think it is too insignificant to "mod" my phpBB installation for it.
I will admit I have not been following the hooks discussion for 3.1 very closely and perhaps this is easily doable with the hooks, in which ...
I will admit I have not been following the hooks discussion for 3.1 very closely and perhaps this is easily doable with the hooks, in which ...
- Wed Aug 15, 2007 8:04 pm
- Forum: [3.0/Olympus] Discussion
- Topic: How to integrate phpBB3 Core / Kernel / API into a CMS?
- Replies: 4
- Views: 16690
Re: How to integrate phpBB3 Core / Kernel / API into a CMS?
if(!defined('IN_PHPBB')) {
die("<strong>Illegal Access!</strong>");
}
$phpEx = substr(strrchr(__FILE__, '.'), 1);
$phpbb_root_path = "path/to/phpbb/";
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
// Start session management ...