SA-MP Forums Archive
[Plugin] TOTP Plugin - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] TOTP Plugin (/showthread.php?tid=597982)

Pages: 1 2


TOTP Plugin - Igorek - 07.01.2016

TOTP plugin v1.0.1

This plugin allows you to generate one-time passwords based on time (and computing on algorithm based TOTP RFC 6238 ) are also used by Gооgle in the Gооgle Authenticator.

With this plugin, you can protect your server accounts of subsidiary protection, providing the One-time Password on the user side using Gооgle Authenticator and comparing it to the server using this plugin.

The secret key for the user, you can generate and set, for example, in the UCP your WebSite.

Natives

Code:
native Goo gleAuthenticatorCode(key[], tm); //anti-advertising removes the word Gооgle. Remove the space
The parameters: Example

Code:
#include <a_samp>
#include <TOTP>

main()
{
	new code = Goo gleAuthenticatorCode("3ADXVY3HXVYX6XWZ", gettime()); //anti-advertising removes the word Gооgle. Remove the space
	printf("CODE: %06d", code);
}
Downloads

GitHub repository:

https://github.com/GamesDV/TOTP

Pre-built binaries for Linux and Windows (releases page):

https://github.com/GamesDV/TOTP/releases


Re: TOTP Plugin - Neutralneu - 07.01.2016

Cool, thank you)


Re: TOTP Plugin - Elegy - 07.01.2016

Nice,thank u very much,can I know,we can verify email,password,etc via email


Re: TOTP Plugin - Vince - 07.01.2016

Nice. Though consider renaming the function. As far as I know the protocol wasn't invented by ******, nor is it exclusively used by ******.


Re: TOTP Plugin - ikkentim - 07.01.2016

Quote:
Originally Posted by Vince
View Post
Nice. Though consider renaming the function. As far as I know the protocol wasn't invented by ******, nor is it exclusively used by ******.
Second that.

It's just a standard, RFC 6239: https://tools.ietf.org/html/rfc6238
Only thing ****** has to do with it is that that have a slightly modified version of it available on github. ( https://github.com/******/******-authenticator )


Re: TOTP Plugin - Mauzen - 07.01.2016

Nice idea, wonder why this hasnt been done before. Heres +1 mauzolike.


Re: TOTP Plugin - Igorek - 08.01.2016

Quote:
Originally Posted by Vince
View Post
Nice. Though consider renaming the function. As far as I know the protocol wasn't invented by ******, nor is it exclusively used by ******.
I did not say that ****** invented it.
Function so named because plugin was written specifically for integration with ****** Authenticator.
Who wants to - can rename function and compile plugin

Or just use #define:
PHP Code:
#define TOTP ******AuthenticatorCode 



Re: TOTP Plugin - MerryDeer - 23.08.2016

What is secret code will by same for 2 users? they will get same code?


Re: TOTP Plugin - JaydenJason - 23.08.2016

Nice one, will definitely mess around with this one when I'm home.



----


The codes do not seem to match for me

The codes also seem to be refreshing at different times for me

Could it be the timezone?


Re: TOTP Plugin - Scranton - 23.08.2016

You need to be in the same timezone, or at least use the same time in the App and on your server. Also you should check for codes ±30 seconds as the time on the device could be slightly out, or in the time taken to input the code it has expired.


Re: TOTP Plugin - JaydenJason - 23.08.2016

Quote:
Originally Posted by Scranton
View Post
You need to be in the same timezone, or at least use the same time in the App and on your server. Also you should check for codes ±30 seconds as the time on the device could be slightly out, or in the time taken to input the code it has expired.
There's a 7 hour difference with my server & me....


Re: TOTP Plugin - izeatfishz - 23.08.2016

very nice, was waiting for this in samp


Re: TOTP Plugin - Scranton - 24.08.2016

Quote:
Originally Posted by JaydenJason
View Post
There's a 7 hour difference with my server & me....
Then you need to make sure the server and whatever OTP device you're using are using the same time zone. Not sure how ****** Authenticator does it, but I created an app which detects the phones timezone and adjusts it to GMT for the password, as the server was in the UK.


Re: TOTP Plugin - MerryDeer - 24.08.2016

How to generate right secret keys?


Re: TOTP Plugin - Igorek - 28.08.2016

Quote:
Originally Posted by MerryDeer
View Post
How to generate right secret keys?
Secret key generator (base32):

PHP Code:
<?php
//by PHPGangsta
function _getBase32LookupTable()
{
    return array(
        
'A''B''C''D''E''F''G''H'//  7
        
'I''J''K''L''M''N''O''P'// 15
        
'Q''R''S''T''U''V''W''X'// 23
        
'Y''Z''2''3''4''5''6''7'// 31
        
'='  // padding char
    
);
}
function 
createSecret($secretLength 16)
{
    
$validChars _getBase32LookupTable();
    unset(
$validChars[32]);
    
$secret '';
    for (
$i 0$i $secretLength$i++) {
        
$secret .= $validChars[array_rand($validChars)];
    }
    return 
$secret;
}
echo 
createSecret();
?>



Re: TOTP Plugin - MerryDeer - 28.08.2016

How that look in sa-mp?


Re: TOTP Plugin - JaydenJason - 30.08.2016

I don't know what I could be doing wrong but timezones are both the same on my phone and on my server, still shows different codes


Re: TOTP Plugin - Igorek - 28.09.2017

Update v.1.0.1
Fix crash strlen(NULL), if you send empty string in function.

Commit:

https://github.com/GamesDV/TOTP/comm...130c0849160199

Download:

https://github.com/GamesDV/TOTP/releases


Re: TOTP Plugin - Crystallize - 28.09.2017

Quote:
Originally Posted by Igorek
View Post
Update v.1.0.1
Fix crash strlen(NULL), if you send empty string in function.

Commit:

https://github.com/GamesDV/TOTP/comm...130c0849160199

Download:

https://github.com/GamesDV/TOTP/releases
Please create a wiki page.


Re: TOTP Plugin - DeepCode - 30.11.2017

Quote:
Originally Posted by Igorek
View Post
Update v.1.0.1
Fix crash strlen(NULL), if you send empty string in function.

Commit:

https://github.com/GamesDV/TOTP/comm...130c0849160199

Download:

https://github.com/GamesDV/TOTP/releases
it's not working. I got those messages in the console