Coder Social home page Coder Social logo

ans-group / fnm-webui Goto Github PK

View Code? Open in Web Editor NEW
41.0 8.0 16.0 489 KB

A web-based UI to manage multiple Fastnetmon Advanced instances.

Home Page: https://fastnetmon.com/fastnetmon-advanced/

License: GNU General Public License v3.0

PHP 49.94% CSS 0.52% JavaScript 0.65% Vue 0.20% Shell 0.27% SCSS 0.20% Blade 48.21%
laravel php dashboard fastnetmon

fnm-webui's Introduction

FastNetMon WebUI

Fastnetmon describes itself as follows:

FastNetMon is a very high performance DDoS detector built on top of multiple packet capture engines: NetFlow, IPFIX, sFlow and SPAN/port mirror. It could detect malicious traffic in your network and immediately block it with BGP blackhole or BGP flow spec rules.

The Fastnetmon Advanced offers a number of additional features over the community edition, one of which is an API that can be used to pull data from your running FNM instances, and update their settings.

This project builds on top of the Fastnetmon API to give a single-pane-of-glass interface for monitoring and managing your running FNM instances.

The WebUI is written in PHP 8, using the Laravel framework.

Demo

We don't have a demo hosted of this application, but some screenshots are available on the wiki:

https://github.com/ukfast/fnm-webui/wiki/Screenshots

Requirements

To run the WebUI, you'll need either a LEMP or LAMP stack server with appropriate Laravel rewrite rules in place.

  • Apache or NGINX
  • PHP 8.0
  • MySQL 5.6+ / MariaDB 10.0+
  • Redis 3.2+
  • Postfix / Sendmail

This could also probably be run within a shared hosting environment if you so wish.

As the nature of this project is to provide centralised management to your blackhole system, it makes sense to host this in a separate location so you always have access to the dashboard.

Naturally, you will also need an installed Fastnetmon Advanced server with the API enabled to add into the interface.

Installation

  1. Clone down the files to your document root. Your server will need to reference the public/ directory for it's root.
  2. Create a database in MySQL.
  3. Create a GRANT in MySQL for the new database.
  4. Copy the .env.example file to .env and update the following items:
  • APP_KEY - Generate a random key and update this. This is used for encryption.
  • APP_URL - Update this to match the installed location of the WebUI.
  • DB_* - Set the database connection string with the details created above.
  • REDIS_* - If you're hosting Redis separately, update this here.
  • MAIL_* - Update the mail configuration for notifications from the dashboard.
  • ACTION_CC - (optional) Set this if you want a static list of emails to be CC'ed into all ban / unban action notifications.
  1. Migrate the blank database schema into MySQL: # php artisan migrate --seed

If you'd like to have the FNM WebUI log attack history, and send out notification emails when ban/unban actions are performed, you'll need to configure Fastnetmon to use a webhook to:

https://fnm.domain.com/webhook

...with your domain for the installation of this project swapped in.

Resolving incorrect FNM licence warning

The FastNetMon service will request a license when the service starts up, and this will have a lifetime of 14 days. While at the end of the 14 days, the licensing backend will renew your license (assuming it's been paid for), this is not reflected in the FCLI calls to show license.

As a result, the logic in FNM WebUI will determine after 14 days that your license has now expired, and an error message will be displayed.

Example: https://github.com/ukfast/fnm-webui/blob/b8077f73ca9c1810045b89dba480f137e5c1466c/resources/views/dc/show.blade.php#L35

After discussing this with FastNetMon support (ref 2726), it has been confirmed that despite the incorrect date shown, the FNM instance is still active and would usually request a new license next time the service is restarted (or a FCLI commit is performed).

As of FastNetMon version 2.0.138, an additional FCLI call has been added to perform an online update of the license:

# sudo fcli show license
{ "address_ipv4": "192.168.1.100", "total_memory_size": 7973, "logical_cpus_number": 4, "cpu_model": "Intel(R) Core(TM)2 Quad CPU    Q8200  @ 2.33GHz", "expiration_date": "2019-04-13", "licensed_bandwidth": 10000, "issuer_type": "automatic" }

# sudo fcli set renew_license 

# sudo fcli show license
{ "address_ipv4": "192.168.1.100", "total_memory_size": 7973, "logical_cpus_number": 4, "cpu_model": "Intel(R) Core(TM)2 Quad CPU    Q8200  @ 2.33GHz", "expiration_date": "2019-04-17", "licensed_bandwidth": 10000, "issuer_type": "automatic" }

The recommendation is to perform the fcli set renew_license within a CRON on the FastNetMon server itself. To be sure it's always up to date, this would be best done every 7 days.

SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'api_password'

Details of fixes for this issue can be found in github issue 4

First logon to mysql via the CLI and run:

MariaDB [(none)]> use fnm
MariaDB [fnm]> ALTER TABLE dc MODIFY api_password VARCHAR(255);

Note: this assumes your database is called fnm

fnm-webui's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fnm-webui's Issues

Hostgroups from FNM not synced to UI

In my test deployment for FNM pro, I am using the "baseline_magician" binary to create thresholds and baselines. It creates the appropriate hostgroups, as evidenced by fcli show hostgroup. However, the web ui only shows the old, manually created (via web ui) hostgroups.

I purged the laravel cache by using php artisan cache:clear in the project directory, but to no avail. Is there anything specific I need to do to synchronize the hostgroups with FNM?

Artisan error

Hi,

I have this error
sudo php artisan migrate --seed
PHP Warning: require(/var/www/fnm-webui/vendor/autoload.php): failed to open stream: No such file or directory in /var/www/fnm-webui/artisan on line 18
PHP Fatal error: require(): Failed opening required '/var/www/fnm-webui/vendor/autoload.php' (include_path='.:/usr/share/php') in /var/www/fnm-webui/artisan on line 18

Anyone can help me?

Thanks

IPs and Hostgroups lists empty

Hi,

I installed the UI today. I could connect to my Fastnetmon instance, only when I altered the DC table api-password field to be 255 chars.

Also my IP and hostgroups lists are empty.

Anything I could do?

FNM-WEBUI BLANK

Hi,

fnm-webui just got blank, any advice? Thank you :)

ENV:
Ubuntu Server 18.04
PHP 7.2.24-0ubuntu0.18.04.6
MYSQL 5.7.30-0ubuntu0.18.04.1
COMPOSER 1.10.9

[Mon Jul 20 10:03:52.788981 2020] [php7:error] [pid 34313] [client 172.30.18.25:50574] PHP Fatal error: Uncaught ErrorException: file_put_contents(/var/www/html/fnm-webui/storage/framework/views/f1654578b9c2eac1835cc992f48786624717abec.php): failed to open stream: Permission denied in /var/www/html/fnm-webui/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122\nStack trace:\n#0 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'file_put_conten...', '/var/www/html/f...', 122, Array)\n#1 /var/www/html/fnm-webui/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/var/www/html/f...', '<?php $__env->s...', 0)\n#2 /var/www/html/fnm-webui/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(122): Illuminate\Filesystem\Filesystem->put('/var/www/html/f...', '<?php $__env->s...')\n#3 /var/www/html/fnm-webui/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(51): Illuminate\View\Compilers\BladeCompiler->compile('/var/www/html/f...')\n#4 /var/www/html/fnm-webui/vendor/laravel/framework/src/Illumin in /var/www/html/fnm-webui/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php on line 122

php artisan error/solution

the command: php artisan migrate --seed

SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 byte

the solution I found was to do the following:

Go to App\Providers\AppServiceProvider.php.
Add this to provider use Illuminate\Support\Facades\Schema; in top.
Inside the Boot function Add this Schema::defaultStringLength(191);

BR!

500 Error on creating new hostgroup

As you need to create all hostgroups using the Webui, I removed all hostgroups and IP's and started adding them to the Webui. They are all there now but on some pages, like the home page I get a 500 error.

In the logs I see this:

[2021-08-15 16:31:51] production.ERROR: Call to a member function dc() on null (View: /home/xxxx/domains/fnm.xxxx.com/resources/views/home.blade.php) {"userId":1,"email":"[email protected]","exception":"[object] (ErrorException(code: 0): Call to a member function dc() on null (View: /home/xxxxx/domains/fnm.xxxxx.com/resources/views/home.blade.php) at /home/xxxxx/domains/fnm.xxxxx.com/app/Actions.php:22, Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Call to a member function dc() on null at /home/xxxxx/domains/fnm.xxxxx.com/app/Actions.php:22) [stacktrace]

I think when I remove the group, it works again... any suggestions?

When I go to a direct URL like https://fnm.xxxxx.com/hostgroup it does work... only home and Dc's won't work.

Feature Request: History User Log

Hello,

would it be possible and "easy" to add a feature to see a history log for users?
What they have changed (BAN, UNBAN - etc.

We would be thankful to have something like that.

Attack summary question

Hi! Awesome project. Currently evaluating in a development environment and I'd like to know if there is something specific that needs to be configured in order to get the attack summary as logged by fnm.
image

All PHP 7.x versions are now EOL

As of November 30 2022, PHP 7 is now official discontinued.

Thus the webui should be upgraded to work with PHP 8.x.

Are there plans to go this step in the near future?

incorrect inbound/outbound reported

It looks like in a recent update to FNM, the api output for total_traffic_counters has changed. This is with FNM 2.0.322.

http://127.0.0.1:10007/total_traffic_counters
{"success":true,"values":[
{"counter_name":"incoming traffic","value":0,"unit":"pps"},
{"counter_name":"incoming traffic","value":0,"unit":"mbps"},
{"counter_name":"incoming traffic","value":0,"unit":"flows"},
{"counter_name":"outgoing traffic","value":0,"unit":"pps"},
{"counter_name":"outgoing traffic","value":0,"unit":"mbps"},
{"counter_name":"outgoing traffic","value":0,"unit":"flows"},
{"counter_name":"internal traffic","value":0,"unit":"pps"},
{"counter_name":"internal traffic","value":0,"unit":"mbps"},
{"counter_name":"other traffic","value":0,"unit":"pps"},
{"counter_name":"other traffic","value":0,"unit":"mbps"}]}

The file fnm-webui/app/DC.php needs to be updated, Line 113 starts totalTraffic

Corrected function

public function totalTraffic() {
    // Check if we have the totals in cache...
    $cached = Cache::get('dc:'.$this->id.':totalTraffic');
    if(!is_null($cached)) {
        return json_decode($cached, true);
    }

    // Not cached, so let's start using the API
    $json = $this->call("total_traffic_counters", 'GET');

    if(!$json['success']) {
        return false;
    }

    // Parse this data into a meaningful array:
    $totals = [];

    // Inbound MBPS
    $totals['in_mbps'] = $json['values'][1]['value'] + $json['values'][7]['value'] + $json['values'][9]['value'];
    $totals['in_mbps_suffix'] = "mbps";
    if($totals['in_mbps'] > 10240) {
        $totals['in_mbps'] = $totals['in_mbps'] / 1024;
        $totals['in_mbps_suffix'] = "gbps";
    }

    // Inbound PPS
    $totals['in_pps'] = $json['values'][0]['value'] + $json['values'][6]['value'] + $json['values'][8]['value'];
    $totals['in_pps_suffix'] = "pps";
    if($totals['in_pps'] > 10000) {
        $totals['in_pps'] = $totals['in_pps'] / 1000;
        $totals['in_pps_suffix'] = "kpps";
    }

    // Outbound MBPS
    $totals['out_mbps'] = $json['values'][4]['value'];
    $totals['out_mbps_suffix'] = "mbps";
    if($totals['out_mbps'] > 10240) {
        $totals['out_mbps'] = $totals['out_mbps'] / 1024;
        $totals['out_mbps_suffix'] = "gbps";
    }

    // Outbound PPS
    $totals['out_pps'] = $json['values'][3]['value'];
    $totals['out_pps_suffix'] = "pps";
    if($totals['out_pps'] > 10000) {
        $totals['out_pps'] = $totals['out_pps'] / 1000;
        $totals['out_pps_suffix'] = "kpps";
    }

    // Cache the totals to avoid smashing the APIs...
    Cache::put('dc:'.$this->id.':totalTraffic', json_encode($totals), 1);
    return $totals;
}

DC create - Error 500

Hello,

since i reinstalled the webui, im getting a Error 500 without error logs when i try to create a DC in the webui.
I just restarted the Fastnetmon Server and restarted the API Web service etc.

62.xxxx - - [17/Apr/2019:09:53:07 +0200] "GET /dc/create HTTP/2.0" 200 11805 "https://fnm.xxxxx.com/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:66.0) Gecko/20100101 Firefox/66.0"
62.xxxxxx - - [17/Apr/2019:09:53:07 +0200] "GET /css/main.css HTTP/2.0" 200 1443 "https://fnm.xxxxxx.com/dc/create" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:66.0) Gecko/20100101 Firefox/66.0"
62.xxxxxx - - [17/Apr/2019:09:53:20 +0200] "POST /dc HTTP/2.0" 500 10323 "https://fnm.xxxx.com/dc/create" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:66.0) Gecko/20100101 Firefox/66.0"
62.xxxxxx - - [17/Apr/2019:09:53:20 +0200] "GET /svg/500.svg HTTP/2.0" 200 15305 "https://fnm.xxxx.com/dc" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:66.0) Gecko/20100101 Firefox/66.0"

web_api_host: 212.xxxxxxxx
web_api_login: ddos
web_api_password: xxxxxxxxxx
web_api_port: 10007

Could i help to debug this so we can re-use this webui?

Thanks

Installation Issues : Ubuntu 18 Server

I am attempting to get the FNM WebUI installed on a Ubuntu 18.04.x server.

Environment1: Apache2 + PHP
Environment2: NGINX + PHP-FPM

Path: /var/www/fnm-webui
DIR Permissions: www-data (owner)
PHP User: www-data

The installation instructions provided in the README are very limited and vague in what all is required and what steps are required, so I am attempting to put together some better installation instructions for this application.

Issue:
After running through the first step issues (debug got me through them), I am now at a point where the URL is redirecting to http://{{host-ip-or-fqdn}}/login and it says that it is not valid. This is happening on both NGINX/PHP-FPM and Apache2/PHP

<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /login was not found on this server.</p>
<hr>
<address>Apache/2.4.29 (Ubuntu) Server at {{host-ip-or-fqdn}} Port 80</address>
</body></html>

The log files are not displaying any errors, even when I have set the env settings:

APP_ENV=local
APP_DEBUG=true

When reviewing the available routes in the application, /login shows as valid:

$ php artisan route:list
+--------+-----------+----------------------------------+----------------------+------------------------------------------------------------------------+----------------------------------+
| Domain | Method    | URI                              | Name                 | Action                                                                 | Middleware                       |
+--------+-----------+----------------------------------+----------------------+------------------------------------------------------------------------+----------------------------------+
|        | GET|HEAD  | /                                | home                 | App\Http\Controllers\HomeController@index                              | web,auth,active,userheader       |
|        | GET|HEAD  | actions                          | action.index         | App\Http\Controllers\ActionController@index                            | web,auth,active,userheader       |
|        | GET|HEAD  | actions/{action}                 | action.show          | App\Http\Controllers\ActionController@show                             | web,auth,active,userheader       |
|        | GET|HEAD  | api/user                         |                      | Closure                                                                | api,auth:api                     |
|        | GET|HEAD  | application-changelog            | app_changelog        | Closure                                                                | web                              |
|        | PUT       | blackhole                        |                      | App\Http\Controllers\HomeController@createBlackhole                    | web,auth,active,userheader,admin |
|        | DELETE    | blackhole                        |                      | App\Http\Controllers\HomeController@deleteBlackhole                    | web,auth,active,userheader,admin |
|        | POST      | dc                               | dc.store             | App\Http\Controllers\DCController@store                                | web,auth,active,userheader,admin |
|        | GET|HEAD  | dc                               | dc.index             | App\Http\Controllers\DCController@index                                | web,auth,active,userheader       |
|        | GET|HEAD  | dc/create                        | dc.create            | App\Http\Controllers\DCController@create                               | web,auth,active,userheader,admin |
|        | PUT|PATCH | dc/{dc}                          | dc.update            | App\Http\Controllers\DCController@update                               | web,auth,active,userheader,admin |
|        | GET|HEAD  | dc/{dc}                          | dc.show              | App\Http\Controllers\DCController@show                                 | web,auth,active,userheader       |
|        | DELETE    | dc/{dc}                          | dc.destroy           | App\Http\Controllers\DCController@destroy                              | web,auth,active,userheader,admin |
|        | GET|HEAD  | dc/{dc}/edit                     | dc.edit              | App\Http\Controllers\DCController@edit                                 | web,auth,active,userheader,admin |
|        | GET|HEAD  | dc/{dc}/toggle/ban               | dc.toggleban         | App\Http\Controllers\DCController@toggleBan                            | web,auth,active,userheader,admin |
|        | GET|HEAD  | dc/{dc}/toggle/unban             | dc.toggleunban       | App\Http\Controllers\DCController@toggleUnban                          | web,auth,active,userheader,admin |
|        | GET|HEAD  | hostgroup                        | hostgroup.index      | App\Http\Controllers\HostGroupController@index                         | web,auth,active,userheader       |
|        | POST      | hostgroup                        | hostgroup.store      | App\Http\Controllers\HostGroupController@store                         | web,auth,active,userheader,admin |
|        | GET|HEAD  | hostgroup/create                 | hostgroup.create     | App\Http\Controllers\HostGroupController@create                        | web,auth,active,userheader,admin |
|        | GET|HEAD  | hostgroup/{hostgroup}            | hostgroup.show       | App\Http\Controllers\HostGroupController@show                          | web,auth,active,userheader       |
|        | PUT|PATCH | hostgroup/{hostgroup}            | hostgroup.update     | App\Http\Controllers\HostGroupController@update                        | web,auth,active,userheader,admin |
|        | DELETE    | hostgroup/{hostgroup}            | hostgroup.destroy    | App\Http\Controllers\HostGroupController@destroy                       | web,auth,active,userheader,admin |
|        | GET|HEAD  | hostgroup/{hostgroup}/delete     | hostgroup.delete     | App\Http\Controllers\HostGroupController@destroy                       | web,auth,active,userheader,admin |
|        | GET|HEAD  | hostgroup/{hostgroup}/edit       | hostgroup.edit       | App\Http\Controllers\HostGroupController@edit                          | web,auth,active,userheader,admin |
|        | PUT       | hostgroup/{hostgroup}/thresholds | hostgroup.thresholds | App\Http\Controllers\HostGroupController@updateThresholds              | web,auth,active,userheader,admin |
|        | GET|HEAD  | ip                               | ip.index             | App\Http\Controllers\IPController@index                                | web,auth,active,userheader       |
|        | POST      | ip                               | ip.store             | App\Http\Controllers\IPController@store                                | web,auth,active,userheader,admin |
|        | GET|HEAD  | ip/create                        | ip.create            | App\Http\Controllers\IPController@create                               | web,auth,active,userheader,admin |
|        | GET|HEAD  | ip/find                          | ip.find              | App\Http\Controllers\IPController@findRange                            | web,auth,active,userheader,admin |
|        | GET|HEAD  | ip/{ip}                          | ip.show              | App\Http\Controllers\IPController@show                                 | web,auth,active,userheader       |
|        | PUT|PATCH | ip/{ip}                          | ip.update            | App\Http\Controllers\IPController@update                               | web,auth,active,userheader,admin |
|        | DELETE    | ip/{ip}                          | ip.destroy           | App\Http\Controllers\IPController@destroy                              | web,auth,active,userheader,admin |
|        | GET|HEAD  | ip/{ip}/edit                     | ip.edit              | App\Http\Controllers\IPController@edit                                 | web,auth,active,userheader,admin |
|        | POST      | login                            |                      | App\Http\Controllers\Auth\LoginController@login                        | web,guest                        |
|        | GET|HEAD  | login                            | login                | App\Http\Controllers\Auth\LoginController@showLoginForm                | web,guest                        |
|        | POST      | logout                           | logout               | App\Http\Controllers\Auth\LoginController@logout                       | web                              |
|        | POST      | password/email                   | password.email       | App\Http\Controllers\Auth\ForgotPasswordController@sendResetLinkEmail  | web,guest                        |
|        | GET|HEAD  | password/reset                   | password.request     | App\Http\Controllers\Auth\ForgotPasswordController@showLinkRequestForm | web,guest                        |
|        | POST      | password/reset                   | password.update      | App\Http\Controllers\Auth\ResetPasswordController@reset                | web,guest                        |
|        | GET|HEAD  | password/reset/{token}           | password.reset       | App\Http\Controllers\Auth\ResetPasswordController@showResetForm        | web,guest                        |
|        | POST      | register                         |                      | App\Http\Controllers\Auth\RegisterController@register                  | web,guest                        |
|        | GET|HEAD  | register                         | register             | App\Http\Controllers\Auth\RegisterController@showRegistrationForm      | web,guest                        |
|        | POST      | users                            | users.store          | App\Http\Controllers\UserController@store                              | web,auth,active,userheader,admin |
|        | GET|HEAD  | users                            | users.index          | App\Http\Controllers\UserController@index                              | web,auth,active,userheader,admin |
|        | GET|HEAD  | users/create                     | users.create         | App\Http\Controllers\UserController@create                             | web,auth,active,userheader,admin |
|        | GET|HEAD  | users/password                   | users.password       | App\Http\Controllers\UserController@password                           | web,auth,active,userheader       |
|        | POST      | users/password                   | users.updatepassword | App\Http\Controllers\UserController@updatePassword                     | web,auth,active,userheader       |
|        | GET|HEAD  | users/{user}                     | users.show           | App\Http\Controllers\UserController@show                               | web,auth,active,userheader,admin |
|        | PUT|PATCH | users/{user}                     | users.update         | App\Http\Controllers\UserController@update                             | web,auth,active,userheader,admin |
|        | DELETE    | users/{user}                     | users.destroy        | App\Http\Controllers\UserController@destroy                            | web,auth,active,userheader,admin |
|        | GET|HEAD  | users/{user}/delete              | users.delete         | App\Http\Controllers\UserController@delete                             | web,auth,active,userheader,admin |
|        | GET|HEAD  | users/{user}/edit                | users.edit           | App\Http\Controllers\UserController@edit                               | web,auth,active,userheader,admin |
|        | GET|HEAD  | users/{user}/toggle              | users.toggle         | App\Http\Controllers\UserController@toggle                             | web,auth,active,userheader,admin |
|        | POST      | webhook                          | webhook              | App\Http\Controllers\WebhookController@handle                          | web                              |
+--------+-----------+----------------------------------+----------------------+------------------------------------------------------------------------+----------------------------------+

Banned details missing

When i have an ip banned i can see there but with no details/log
what i need to configure to see banned details?

option change traffic for remote host

Hello,

My server change to block remote host:

sudo fcli set main remote_host_tracking enable

have any option to change for web UI ? because after change i not see any traffic

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.