Coder Social home page Coder Social logo

turbot / steampipe-mod-azure-compliance Goto Github PK

View Code? Open in Web Editor NEW
50.0 11.0 12.0 3.95 MB

Run individual configuration, compliance and security controls or full compliance benchmarks for CIS, HIPAA HITRUST, NIST, and more across all of your Azure subscriptions using Powerpipe and Steampipe.

Home Page: https://hub.powerpipe.io/mods/turbot/azure_compliance

License: Apache License 2.0

HCL 100.00%
azure security cis sql compliance cis-benchmark steampipe steampipe-mod hacktoberfest powerpipe

steampipe-mod-azure-compliance's Introduction

Azure Compliance Mod for Powerpipe

Important

Powerpipe is now the preferred way to run this mod! Migrating from Steampipe →

All v0.x versions of this mod will work in both Steampipe and Powerpipe, but v1.0.0 onwards will be in Powerpipe format only.

200+ checks covering industry defined security best practices for Azure. Includes full support for CIS v1.3,CIS v1.4,CIS v1.5,CIS v2.0,CIS v2.1,HIPAA HITRUST 9.2,NIST SP 800-53 and PCI DSS v3.2.1 compliance benchmarks across all your Azure subscriptions.

Includes full support for the CIS v1.3 Azure Benchmarks.

Run checks in a dashboard: image

Or in a terminal: image

Documentation

Getting Started

Installation

Install Powerpipe (https://powerpipe.io/downloads), or use Brew:

brew install turbot/tap/powerpipe

This mod also requires Steampipe with the Azure plugin and the Azure Active Directory plugin as the data source. Install Steampipe (https://steampipe.io/downloads), or use Brew:

brew install turbot/tap/steampipe
steampipe plugin install azure
steampipe plugin install azuread

Steampipe will automatically use your default Azure and Azure Active Directory credentials. Optionally, you can setup multiple subscriptions for Azure or customize Azure credentials or you can setup multiple tenants for Azure Active Directory or customize Azure Active Directory credentials.

Finally, install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-azure-compliance

Browsing Dashboards

Start Steampipe as the data source:

steampipe service start

Start the dashboard server:

powerpipe server

Browse and view your dashboards at http://localhost:9033.

Running Checks in Your Terminal

Instead of running benchmarks in a dashboard, you can also run them within your terminal with the powerpipe benchmark command:

List available benchmarks:

powerpipe benchmark list

Run a benchmark:

powerpipe benchmark run azure_compliance.benchmark.cis_v200

Different output formats are also available, for more information please see Output Formats.

Common and Tag Dimensions

The benchmark queries use common properties (like connection_name, resource_group, region, subscription and subscription_id) and tags that are defined in the form of a default list of strings in the variables.sp file. These properties can be overwritten in several ways:

It's easiest to setup your vars file, starting with the sample:

cp steampipe.spvars.example steampipe.spvars
vi steampipe.spvars

Alternatively you can pass variables on the command line:

powerpipe benchmark run azure_compliance.benchmark.cis_v200 --var 'tag_dimensions=["Environment", "Owner"]'

Or through environment variables:

export PP_VAR_common_dimensions='["subscription_id", "connection_name", "resource_group"]'
export PP_VAR_tag_dimensions='["Environment", "Owner"]'
powerpipe benchmark run azure_compliance.benchmark.cis_v200

Open Source & Contributing

This repository is published under the Apache 2.0 license. Please see our code of conduct. We look forward to collaborating with you!

Steampipe and Powerpipe are products produced from this open source software, exclusively by Turbot HQ, Inc. They are distributed under our commercial terms. Others are allowed to make their own distribution of the software, but cannot use any of the Turbot trademarks, cloud services, etc. You can learn more in our Open Source FAQ.

Get Involved

Join #powerpipe on Slack →

Want to help but don't know where to start? Pick up one of the help wanted issues:

steampipe-mod-azure-compliance's People

Contributors

akumar-99 avatar bob-bot avatar cbruno10 avatar dboeke avatar debabrat-git avatar karanpopat avatar khushboo9024 avatar kingbrewer avatar krishna5891 avatar lalitlab avatar madhushreeray30 avatar misraved avatar priyanka-chatterjee-2000 avatar rajlearner17 avatar sfunkernw avatar shivani1982 avatar subhajit97 avatar vil02 avatar

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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

steampipe-mod-azure-compliance's Issues

Update index doc and README for Steampipe v0.14.0 release

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS v1.3.0 section 9 benchmark

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

False positive being returned by mssql_managed_instance_vulnerability_assessment_enabled.sql check

Describe the bug
When the mssql_managed_instance_vulnerability_assessment_enabled.sql statement is run as part of the control.mssql_managed_instance_vulnerability_assessment_enabled check, a false positive is returned due to the SQL statement incorrectly parsing the resulting JSON structure

Steampipe version (steampipe -v)
v0.9.1

Plugin version (steampipe plugin list)
Azure v0.20.0

To reproduce
Run the compliance check against a managed SQL instance that has periodic vulnerability scanning enabled.
The output will show an alarm and indicate that vulnerability scanning is disabled.

Expected behavior
The output should show the status as OK

Additional context

The SQL statement used to perform the check contains the following:

with vulnerability_assessments as (
  select
    distinct i.id as id
  from
    azure_mssql_managed_instance as i,
    jsonb_array_elements(vulnerability_assessments) a
    where
      a -> 'vulnerabilityAssessmentProperties' -> 'recurringScans' ->> 'isEnabled' = 'true'
      and a ->> 'name' = 'Default'
)

The returned JSON structure for an instance that has vulnerability scanning enabled is as follows:

{
     "id": "/subscriptions/[removed]
     "name": "Default",
     "type": "Microsoft.Sql/managedInstances/vulnerabilityAssessments"
     "recurringScans": {
         "emails": [
         ],
        "isEnabled": true,
         "emailSubscriptionAdmins": true
     },
     "storageContainerPath": "https://[removed].blob.core.windows.net/vulnerability-assessment/"
}

The vulnerabilityAssessmentProperties key does not exist in the returned structure and therefor line 8 of mssql_managed_instance_vulnerability_assessment_enabled.sql should be:

a -> 'recurringScans' ->> 'isEnabled' = 'true'

Add NIST SP 800-53 Rev. 5 benchmark and controls

Is your feature request related to a problem? Please describe.
https://docs.microsoft.com/en-us/azure/governance/policy/samples/nist-sp-800-53-r5

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS_Microsoft_Azure_Foundations_Benchmark_v1.3.1

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS v1.3.0 section 2.13 to 2.15 controls.

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS v1.3.0 section 1.1 to 1.23 docs

Is your feature request related to a problem? Please describe.
CIS section 1.1 to 1.23 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 1.1 to 1.23 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 4.2.1 to 4.2.5 docs

Is your feature request related to a problem? Please describe.
CIS section 4.2.1 to 4.2.5 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 4.2.1 to 4.2.5 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 2.1 to 2.15 docs

Is your feature request related to a problem? Please describe.
CIS section 2.1 to 2.15 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 2.1 to 2.15 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

hdinsight_cluster_* queries should validate the provisioning_state

Describe the bug
A clear and concise description of what the bug is.
The current queries are not checked against the provisioning_state, as when the provisioning_state either 'InProgress', 'Failed', 'Canceled', 'Deleting', then the control still alarm/ok

Steampipe version (steampipe -v)
Example: v0.12.1

Plugin version (steampipe plugin list)
Example: v0.23.2

To reproduce
Steps to reproduce the behavior (please include relevant code and/or commands).

Expected behavior
A clear and concise description of what you expected to happen.
We should skip those steps, as HD clusters remain in any of the failed states for a long time in the console, and this may create confusion. We should check provisioning_state = Succeeded to report the control ok/alarm rest can be skipped with the state info to be specific.

Additional context
Add any other context about the problem here.

Add CIS v1.3.0 section 6 benchmark

Is your feature request related to a problem? Please describe.
CIS section 6 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 6 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 5.1 & 5.2 docs.

Is your feature request related to a problem? Please describe.
CIS section 5.1 & 5.2 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 5.1 & 5.2 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add HIPAA HITRUST 9.2 compliance queries

Is your feature request related to a problem? Please describe.
Add Hippa Hitrust v9.2 compliance queries

Describe the solution you'd like
Queries to achieve the Hippa Hitrust compliance to be added.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 9.1 to 9.11 docs

Is your feature request related to a problem? Please describe.
CIS section 9.1 to 9.11 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 9.1 to 9.11 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Update benchmark and control tags for compatibility with dashboard page

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS v1.3.0 section 1 typo fixes.

Is your feature request related to a problem? Please describe.
CIS section 1 typo fixes

Describe the solution you'd like
N/A

Describe alternatives you've considered
N/A

Additional context
N/A

Support for new CIS Microsoft Azure Foundations Benchmark v1.5.0

In August 2022, CIS released a new version of their Azure benchmark:

  • CIS Microsoft Azure Foundations Benchmark v1.5.0

I was surprised to see that the newly released CIS AWS 1.5.0 benchmark is already integrated in the AWS Compliance Mod.
Do you plan to integrate also the new CIS benchmark in the Azure Compliance Mod?

Add additional HIPAA HITRUST 9.2 compliance queries

Is your feature request related to a problem? Please describe.
Add Hippa Hitrust v9.2 compliance queries

Describe the solution you'd like
Queries to achieve the Hippa Hitrust compliance to be added.

Describe alternatives you've considered
N/A

Additional context
N/A

Wrong Query for "Control: Azure DDoS Protection Standard should be enabled"

Add CIS v1.3.0 section 5.2 docs.

Is your feature request related to a problem? Please describe.
CIS section 5.2 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 5.2 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 8 benchmark

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Kubernetes Cluster "OS and Data Disks Encrypted with CMK" and "Temp Disks and Cache Not Encrypted.md" False Positive

Describe the bug
When the Kubernetes cluster has a whitelist of IP addresses and the steampipe tool is not whitelisted, the field "disk_encryption_set_id" from the table "azure_kubernetes_cluster" is null. In turn, the disks are encrypted, but steampipe is not whitelisted, which can lead to false positives.

Steampipe version (steampipe -v)
Example: v0.16.4

Plugin version (steampipe plugin list)
+--------------------------------------------------+---------+-------------+
| Name | Version | Connections |
+--------------------------------------------------+---------+-------------+
| hub.steampipe.io/plugins/turbot/aws@latest | 0.77.0 | aws |
| hub.steampipe.io/plugins/turbot/azure@latest | 0.32.0 | azure |
| hub.steampipe.io/plugins/turbot/azuread@latest | 0.6.0 | azuread |
| hub.steampipe.io/plugins/turbot/steampipe@latest | 0.5.0 | steampipe |
+--------------------------------------------------+---------+-------------+

To reproduce
Enforce IP whitelisting on Kubernetes clusters, do not whitelist the IP address of steampipe and encrypt the disks of Kubernetes cluster.

Expected behavior
[A clear and concise description of what you expected to happen.]
The control (https://hub.steampipe.io/mods/turbot/azure_compliance/queries/kubernetes_cluster_os_and_data_disks_encrypted_with_cmk) will mention that the Kubernetes cluster is not encrypted, which is not true.
I know that the easy solution is to whitelist steampipe, but maybe it is possible to provide a way to know if the "disk_encryption_set_id" is null because the Steampipe is not whitelisted or because there really is no encryption. Thank you for your time

Additional context
Add any other context about the problem here.
(https://hub.steampipe.io/mods/turbot/azure_compliance/queries/kubernetes_cluster_os_and_data_disks_encrypted_with_cmk)

Update AD manual control query resource column and additional dimensions

Describe the bug
The resource column is currently active_directory, but we should have a better resource ID to use here. Also, we may need another column under Additional Dimensions too.

Steampipe version (steampipe -v)
v0.5.0

Plugin version (steampipe plugin list)
azure v0.7.0

To reproduce
Steps to reproduce the behavior (please include relevant code and/or commands).

Expected behavior
A clear and concise description of what you expected to happen.

Additional context
Add any other context about the problem here.

Add CIS v1.3.0 section 3.1 to 3.11 docs.

Is your feature request related to a problem? Please describe.
CIS section 3 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 3 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 7.1 to 7. 7 docs

Is your feature request related to a problem? Please describe.
CIS section 7.1 to 7.7 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 7.1 to 7.7 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 5.3 docs.

Is your feature request related to a problem? Please describe.
CIS section 5.3 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 5.3 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS Microsoft Azure Foundations Benchmark v1.4.0

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Reference

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add CIS v1.3.0 section 8.1 to 8.5 docs

Is your feature request related to a problem? Please describe.
CIS section 8.1 to 8.5 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 8.1 to 8.5 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 1 check 22

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Fix section cis_v130_2_* docs to remove duplicate remediation steps

Describe the bug
A clear and concise description of what the bug is.

Steampipe version (steampipe -v)
Example: v0.3.0

Plugin version (steampipe plugin list)
Example: v0.5.0

To reproduce
Steps to reproduce the behavior (please include relevant code and/or commands).

Expected behavior
A clear and concise description of what you expected to happen.

Additional context
Add any other context about the problem here.

Add CIS v1.3.0 section 4.1.1 to 4.1.3 docs

Is your feature request related to a problem? Please describe.
CIS section 4.1.1 to 4.1.3 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 4.1.1 to 4.1.3 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section checks 5.1.1, 5.2.1 to 5.2.9 and 5.3

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Add azure cis benchmark cis_v130_2 controls 1 to 12

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

False positive in query sql_server_audting_retention_period_90 if audit log retention day equals 0

Describe the bug

The query sql_server_audting_retention_period_90 has a false positive alarm if the retention days are configured with 0.

The Azure portal shows for the Audit retention the following help text "The value in days of the retention period (0 is an indication for unlimited retention)."

This means, the Steampipe Mod Azure Compliance CIS benchmark would raise a false positive here.

Steampipe version
v0.14.1 / latest

Plugin version
v0.12 / latest

To reproduce

Set audit log retention of an Azure SQL server to 0 under https://portal.azure.com/#@<TENANT>/resource/subscriptions/<SUBSCRIPTION>/resourceGroups/<RES_GROUP>/providers/Microsoft.Sql/servers/<SQL_SERVER>/serverAuditing and a storage account to log the audit logs to and run the Steampipe Azure CIS benchmark Mod. It will raise it as alarm claiming the retention days are smaller than 90 days.

Expected behavior

Show check status should be OK.

Additional context

The following code should be changed to include a check for value 0:

https://github.com/turbot/steampipe-mod-azure-compliance/blob/v0.11/query/sql/sql_server_audting_retention_period_90.sql#L5

Add CIS v1.3.0 section 5.1 docs.

Is your feature request related to a problem? Please describe.
CIS section 5.1 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 5.1 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

ALARM case reason should not be <nil> in iam_deprecated_account.sql

Describe the bug
A clear and concise description of what the bug is.

image
iam_deprecated_account.sql
Steampipe version (steampipe -v)
Example: v0.3.0

Plugin version (steampipe plugin list)
Example: v0.5.0

To reproduce
Steps to reproduce the behavior (please include relevant code and/or commands).

Expected behavior
A clear and concise description of what you expected to happen.

Additional context
Add any other context about the problem here.

Add HIPAA HITRUST 9.2 compliance benchmark & control

Is your feature request related to a problem? Please describe.
https://docs.microsoft.com/en-us/azure/governance/policy/samples/hipaa-hitrust-9-2

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

`network_security_group_ssh_access_restricted` query fails to work correctly when protocol is `Tcp`

Describe the bug
When Azure Network security group resource is created using terraform, the protocol property appears as Tcp as opposed to TCP. The query fails to work correctly for such network security groups.

Steampipe version (steampipe -v)
Example: v0.15.3

Plugin version (steampipe plugin list)
Example: v0.31.0

To reproduce

  1. Create a network security group as mentioned in - https://github.com/bridgecrewio/terragoat/blob/master/terraform/azure/networking.tf#L69
  2. Run the network_security_group_ssh_access_restricted query
  3. The resource goes to the ok state instead of being in alarm state.

Expected behavior
The resource should go into an alarm state.

Additional context
Relevant slack thread - https://steampipe.slack.com/archives/C01UECB59A7/p1659035535637629?thread_ts=1659018318.301209&cid=C01UECB59A7

Similar issue exists in the following queries -

  • network_security_group_rdp_access_restricted
  • network_security_group_remote_access_restricted

Add CIS v1.3.0 section 4.3.1 to 4.5 docs

Is your feature request related to a problem? Please describe.
CIS section 4.3.1 to 4.5 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 4.3.1 to 4.5 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add CIS v1.3.0 section 2.1 to 2.15 docs

Is your feature request related to a problem? Please describe.
CIS section 2.1 to 2.15 benchmark and controls should have supporting documents.

Describe the solution you'd like
Add documents for section 2.1 to 2.15 benchmark and controls.

Describe alternatives you've considered
N/A

Additional context
N/A

Add new HIPAA HITRUST 9.2 compliance queries

Is your feature request related to a problem? Please describe.
Add Hippa Hitrust v9.2 compliance queries

Describe the solution you'd like
Queries to achieve the Hippa Hitrust compliance to be added.

Describe alternatives you've considered
N/A

Additional context
N/A

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.