Skip to content

diamond95/flutterKeyGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web Auth Key Generator

Simple flutter application that generates 6-digit code and updates it to a web server using HTTP POST Request. After update, the administrator types this code in the web application on login site.

Adventage of using key generator is stopping brute-force attacks on your web application.

Screenshot

PHP - HTTP Request

    <?php

    $data = json_decode(file_get_contents('php://input'), true);

    if($data['key'] != 0 && $data['key'] != "" && $data['key'] != "0") {
        // save key in database
    } else {
        echo "error";
        die();
    }

TODO

- [✔] change key length
- [] automatic key update after generating 

Creator

Ivan Miljanić

About

Web Auth login key generator - Flutter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published