Giter VIP home page Giter VIP logo

security-growler's Introduction

Development is temporarily on hold, check out these alternatives in the meantime:

I have a refactor in-progress to fix Security Growler for macOS Sierra using Bitbar, but I'm too busy to finish it at the moment.


This menubar app for OS X will notify you via Notification Center (or Growl) when various security events occur (see list).

It's very useful if you're paranoid about people trying to hack into your computer. Or... if you simply like having information about people using your computer's resources.

It's extremely lightweight, the app is 3MB including the icon, with <0.01% CPU and <15MB of RAM used when running. It's easily extensible in Python, you can add parsers that detect new TCP connections or poll logfiles. You can even forward alerts as push notifications to your iOS devices using Prowl.

Install:

  1. Download and run Security Growler.app >> (dark mode)
  2. Click on the menubar icon once to start detecting events.

Download Security Growler Light.app if you don't use OS X Dark Mode. If you prefer Growl to the OS X Notification Center, run sudo easy_install gntp in Terminal and relaunch to switch.

Note: the app must be run under an account that has read access to cat /var/log/system.log (i.e. run by an admin). It will not function under a non-admin-permissions account on mac, as it needs access to several root-owned logfiles to be of any use. Running this app as a non-admin user simply doesn't make sense, because it wouldn't be able to alert on any log events in /var/log/system.log or on ports opened by other users. It would be of very limited use, and would very few security assurances if it could only alert on sockets opened by your own user account.

It can do cool things like:

Alert you of attempted and successful SSH logins:

Notify you of incoming & outgoing TCP connections: FTP, VNC, SMB, MySQL, etc.:

(using less RAM than Little Snitch)

Notify you whenever a command is run with sudo:

Let you know when you're being portscanned:

More Screenshots...

Documentation:

The currently working alert types are:

  • SSH
  • VNC
  • FTP, SMB, AFP
  • MySQL, PostgreSQL
  • iTunes Sharing
  • sudo commands
  • Ostiarius
  • port-scans (e.g. if you're on the receiving end of nmap)

Get more alerts like Wifi, VPN, LAN, bluetooth, USB device and other config changes using HardwareGrowler and MetaGrowler.

TODO:

  • new alerts types like ARP resolution, DNS resolution, etc. tracked via issues
  • keychain auth events (/var/log/authd.log, /var/log/accountpolicy.log)
  • new listening sockets under port 1000 opened

Config:

Settings are changed by editing a text file settings.py, accessible via the menubar dropdown item 'Settings...'.

To enable or disable alert types:

You can enable and disable certain alerts by editing the WATCHED_SOURCES section of the file. Add or remove event sources on the left (either port numbers or logfile paths), and put the parser names you want to enable for each source on the right. Parser names can by found by looking at the filenames in the parsers/ folder.

# this config alerts for FTP, iTunes Sharing, sudo, & SSH
WATCHED_SOURCES = {
    21:                    'connections',      # FTP
    3689:                  'connections',      # iTunes Sharing
    '/var/log/system.log': ('sudo', 'ssh'),    # sudo & ssh
}

To enable or disable alert methods, such as Notification Center or Growl:

Change the LOGGERS section to suit your needs.

LOGGERS = [
    'stdout',
    'logfile',
    'growl',
    # 'osxnotifications',  # prepend a hash to disable a certain method
]

To change notification preferences:

Change POLLING_SPEED to make the app update more or less frequently (2-10 seconds is recommended).

Change the INFO_ and ALERT_ items to modify properties such as alert sounds, icons, and text.

How should you respond to alerts?

In general, don't assume you're being attacked just because you get an alert, there are many possible situations where you may get false positives. That being said, it's good to have some documented responses in case you actually are being attacked. Here are some safe recommendations for what to do if you get different alerts in order to protect your system.

  • New TCP connections: make sure the affected service (e.g. postgresql) is not publicly accessible, or has a strong password set (check your configs and firewall)
  • New SSH connections: turn off Remote Login (ssh) under System Preferences > Sharing > Remote Login
  • New VNC connections: turn off Screen Sharing & Remote Administration under System Preferences > Sharing > Screen Sharing/Remote Administration
  • New FTP/AFP/SMB connections: turn off file sharing under System Preferences > Sharing > File Sharing
  • iTunes Sharing: turn off iTunes sharing under iTunes > Preferences... > Sharing > Share my library on my local network
  • Port scans: unplug your ethernet cable, turn off public services, or turn on your firewall to stealth mode: sudo defaults write /Library/Preferences/com.apple.alf stealthenabled -bool <true|false>
  • Sudo commands: check for any open ssh connections using the w command in terminal and check for background processes running with Activity Monitor

You can check for processes listening on a given TCP port (e.g. 80) using sudo lsof +c 0 -i:80.
You can see active network connections with sudo netstat -t or iftop (brew install iftop).
You can check for persistent background tasks and unauthorized processes running using KnockKnock and TaskExplorer.

Developer Info:

This app is composed of 3 main parts: sources, parsers, and loggers.

  • sources are either file paths or port numbers, e.g. /var/log/system.log or 5900
  • parsers e.g. ssh or sudo are fed new logfile lines yielded from sources, and parse out various alerts
  • loggers are output methods for alerts, e.g. stdout, osxnotifications, or growl

The main runloop is in growler.py, it reads lines out of the sources, passes them through parsers, then dispatches alerts before waiting a short delay and then looping.

The menubar app is a simple wrapper compiled using Platypus. Security Growler.app is packaged with copies of growler.py and all the other files it needs. To make changes to the app, change the files you need, test using sudo python growler.py and sudo ./menubar.sh, then re-run Platypus to generate a new app.

The menubar app works by displaying the output of menubar.sh, and spawning a growler.py agent in the background to write new events to a logfile. See menubar.sh for more details.

The python Foundation library that provides access to OS X API's like notification center is not available by default for python3.5, so for the moment only 2.7 is supported.

Background:

I was tired of not being able to find an app that would quell my paranoia about open ports, so I made one myself. Now I can relax whenever I'm in a seedy internet cafe or connected to free Boingo airport wifi because I know if anyone is trying to connect to my computer.

Little Snitch is still hands-down the best connection-alerting software available for Mac, I highly suggest you check it out if you want a comprehensive firewall/alerting system, and are willing to pay a few bucks to get it. Security Growler is centered around parsing logfiles for any kind of generic pattern, not just monitoring the TCP connection table like Little Snitch. For example, my app can alert you of sudo events, keychain auth events, and anything else you can think of that's reported to a logfile. This app is significantly more lightweight than Little Snitch, it comes in at <15mb of RAM used, because it aims to solve a simpler problem than Little Snitch. This app is not designed to prevent malicious connections, that's what firewalls are for, it's just meant to keep an unobtrusive log, and alert you whenever important security events are happening. The more informed you are, the better you can protect yourself.

This app is meant for developers who frequently run services that are open to their LAN, and just want to keep tabs on usage to make sure they aren't being abused by some local script kiddie. Since the target audience is developers, I opted to leave some parts a little less user-friendly, such as the settings.py config system. It's also just plain fun to enable lots of alerts types if you like to see every little detail of your computer's operation.

Feel free to submit a pull-request and add a new parser (e.g. try writing one for nginx http-auth)!

Basic Linux support will be finished soon, in the meantime check out a similar project written by @benjojo: PushAlotAuth, it uses the PushALot push-notification platform.

Also check out our growing list of community-shared useful Mac menubar apps!

Some security apps I recommend:

  • HardwareGrowler provides alerts on many hardware, network, and other config changes
  • MetaGrowler provides alerts on bonjour and network changes on other LAN hosts
  • Little Snitch comprehensive macOS alerting and firewall solution
  • Micro Snitch get alerts on camera and microphone access
  • Everything by Objective-See, a great security app developer
  • CIRCL ALOD alerts you whenever a program tries to add a login hook with launchAgents or LaunchDaemons (incredibly useful, goes well with Objective-See's KnockKnock)

License:

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, pulverize, distribute, synergize, compost, defenestrate, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

If the Author of the Software (the "Author") needs a place to crash and you have a sofa available, you should maybe give the Author a break and let him sleep on your couch.

If you are caught in a dire situation wherein you only have enough time to save one person out of a group, and the Author is a member of that group, you must save the Author.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO BLAH BLAH BLAH ISN'T IT FUNNY HOW UPPER-CASE MAKES IT SOUND LIKE THE LICENSE IS ANGRY AND SHOUTING AT YOU.

security-growler's People

Contributors

cmckni3 avatar hlfcoding avatar nikisweeting avatar pirate avatar xoib 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  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  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

security-growler's Issues

error: BSM audit: getaddrinfo failed for...

I get this error a lot:

SSH EVENT: UNKNOWN:: from: | error: BSM audit: getaddrinfo failed for...
SSH EVENT: : from: | Could not write ident string to UNKNOWN...

let me know if you need any trace

Giving informative alerts for admin-owned sockets requires running the app as root

Unfortunately getting the PID of a process attached to a given port seems to require root privileges on unix.

The options are:

Gives PID, process, and owner. Requires root:

sudo lsof +c 0 -i:5900

Gives no PID, owner, or name. Doesn't require root, and almost 2x the speed of lsof

netstat -tan | grep '[:.]5900'

If anyone has any advice on how to get around this conundrum, I'd love to hear. VNC is currently the only logger that requires root permissions, all the others work fine if the user has read access to /var/log/. I really don't want to ask for an admin password for the app if I don't need to, but at the same time this is valuable connection information that I want to see if someone is VNCing into my computer.

VPN triggers sudo lsof i:21 error

sudo[123]: trader : no tty present and no askpass program specified ; TTY=unknown ; PWD=/Applications/Security Growler Light.app/Contents/Resources ; USER=root ; COMMAND=/usr/sbin/lsof +c 0 -i:21

Error msg repeated indefinitely, every 10-90 sec.

SGLight: v2.2 May, 2.
VPN PPTP
IP6 local only and IP6 off on router.

Security Growler is not running

After launching the app the icon appears in the menu bar but it only says "Security Growler is not running". I want to use notification center on Mac OS X 10.9.2.
I checked the requirements.txt and installed appscript via sudo easy_install.
What else could be the reason?
Thanks

Alert on new public IP address with GeoIP and latency

I'm splitting this out from #24. I want to add an alert whenever your public IP changes.

I can easily get GeoIP from the public IP, and display latency by pinging 8.8.8.8. This will create a useful alert that shows the following:

screen shot 2016-12-19 at 4 30 55 pm

local IP <latency ms> public ip (geolocation)

The command to get the new public ip is:
dig +short myip.opendns.com @resolver1.opendns.com -> 123.123.123.123

The command to get the GeoIP reported city is (requires brew install geoip):
geoiplookup 123.123.123.123 | tail -1 | perl -pe 's/.*?: .*?, .., .*?, //g' | perl -pe 's/, .*$//g' -> Montréal

The command to get the latency is:
ping -c 1 -t 1 8.8.8.8 | tail -1 | perl -pe 's/^(.* = \d*\.\d*\/)(\d*)(.\d*\/.*)$/$2 ms/gm' -> 19ms

sed: /Users/ in menu

Hello,
I had SG, then I installed the SG-Light as I'm not in black mode.

When launched, I get this between the 2 lines


sed: /Users/trader/Library/Logs/SecurityGrowler.log


In fact, the update log is in /Users/trader/SecurityGrowler.log
and is updated.
Nothing in the /Logs folder.

After trying SG, then SGL, etc stopping the bg agent, SGL is ok and shows the ports list and the updated log is in the /Logs folder.

New menu layout?

What about moving 'settings' menu items in second level menus?
This will allow to have

  • the list of watched items always available
  • the main menu mainly with only reported events

Easily add new trackers without changing everything or having a huge main menu.

Menu Layout when SG is stopped, second level menus collapsed:

Security Growler  >  
Watching          >  
———————————————————
Watching Stopped

When SG is activated, all second level menus unfolded:

Security Growler  >  About...
                     Request a Feature
                     View the Full log
                     Clear Menubar Log
                     Ports Info (http://www.speedguide.net/ports.php)
                     Settings...
                     Quit...

Watching          >  Logs       >  /var/log/system.log:
                                   ssh
                                   sudo
                                   Ostiarius
                                   Ports Scan

                                   /abc/de/xy.log:
                                   mno
                                   hijkl

    
                    Connections >  21   FTP
                                   445  SMB
                                   585  IMAP SSL
                                   993  IMAP SSL
                                   3306 MySQL
                                   3689 iTunes
                                   5432 PostgreSQL
                                   5900 VNC

————————————————————————————
10:05 05/02 Watching Started
10:22 event bla
13:55 event blabla

Make it clearer, what do you think?

Display whether TCP connection is incoming or outgoing

Currently TCP connection alerts just show that some connection was opened on a port, with a source and target, but we don't specify whether the connection is incoming or outgoing.

A great improvement would be to change the direction of the arrow in the notification to indicate:

outgoing: process@localhost -> host:port
incoming: host -> process@localhost:port

Auto-start on launch

Dear,

Would it be possible to start security-growler directly on OS X boot/launching the app? I've added security-growler to System Preferences 👉 Users & Groups 👉 myuser 👉 Login Items.
It doesn't auto kick-start however, only when I manually click the menu bar icon.

Kind regards,
Rowan Kaag

Stops working after a couple of hours (v2.2) [probably not after wake from sleep]

This seems to be a bug. After wake from sleep Security Growler doesn't work, doesn't respond to anything. On my system (10.11.4) I need to select "Stop the background agent & Quit" from the menulet's menu. Funny thing is that the Security Growler menulet then actually doesn't quit; it keeps running, which would itself be another bug (a bug within a bug), and instead I get the notification that it's now watching, and then it works fine.

Port Scan detection should list originating IP

Hi,
I had several port scan warnings overnight unfortunately the log doesn't indicate the originating IP so I couldn't identify if this was something on my LAN or coming in via either of my two routers. Including as much detail as possible on the log message would be a big help.

Thanks,
Joey

Ambiguous redirect

Hello,
When I run security-growler I got this message :
capture d ecran 2016-05-15 a 23 38 42

I'm on OSX Yosemite (10.10.5).

Add menubar item to clear the log

Sometimes the menubar log gets really really long if the app is left running.

I should add a menubar item that allows resetting, so that you can still view the log history by opening SecurityGrowler.log, but the menubar only shows items since it was cleared.

Can't get past "Starting"

I have obviously looked over the code, and I assume I have an error in my setttings.py. But for some reason v2.2 isn't getting past "Starting ...." And the log is wholly unhelpful:

[05/19 12:37] --------
[05/19 13:10] --------
[05/19 13:11] --------

settings.py

SecurityGrowler.log

Detect source of portscans

When being port-scanned, it would be nice to know who is scanning us.

Maybe this info can be parsed from lsof? It's a bit difficult since portscans are very rapid and usually rely on collecting port-closed RST responses, and not opening TCP sockets for very long.

Alert on DNS resolver changes

I'm splitting this out from #24, I want to add an alert whenever DNS resolvers change on the system, as these can be used to snoop on traffic and redirect people maliciously.

We can watch for the following event in the syslog, or just manually check the dns resolution conf and alert whenever it changes.

  • DNS change line found in syslog: mDNSResponder: SIGHUP: Purge cache
  • file containing DNS resolution order: /etc/resolv.conf

Possible to watch background process activation? (Example: Ostiarius)

I'm using the Ostiarius background process by Objective-See to block the execution of unsigned apps/binaries, and the system.log entries look like this:
27/04/16 15:07:03,000 kernel[0]: OSTIARIUS: /Applications/APP_NAME.app/Contents/MacOS/APP_BINARYNAME is from the internet & is unsigned -> BLOCKING!
Is there a way to monitor this? I tried adding "OSTIARIUS:" into the settings file, but that didn't do the trick.

Security growler is not running

After launching the the SecurityGrowler.app, an icon appears on the menubar, clicking on it shows "Security growler is not running ☹".

Is there anything else to be done to make it running?

iTunes 3689

Is it normal for iTunes to be making incessant port connections when home sharing is turned on but not (knowingly) being used?

All menus look disabled

Hello,

Running but all menu except Quit are disabled.
Each I launch SG, got this in Console.
I cut "25/04/16 18:16:2" from each line.

1,700 lsd[414]: LaunchServices: Could not store lsd-identifiers file at /private/var/db/lsd/com.apple.lsdschemes.plist
1,725 launchservicesd[80]: SecTaskLoadEntitlements failed error=22
1,729 launchservicesd[80]: SecTaskLoadEntitlements failed error=22
1,750 webinspectord[1355]: SecTaskLoadEntitlements failed error=22
1,750 webinspectord[1355]: SecTaskLoadEntitlements failed error=22
1,814 appleeventsd[51]: SecTaskLoadEntitlements failed error=22
1,829 usernoted[434]: SecTaskLoadEntitlements failed error=22
4,730 Barsoom[561]: 27700 already launched. Inject
4,796 Security Growler[27700]: barsoomHelper loaded
4,902 launchservicesd[80]: SecTaskLoadEntitlements failed error=22
6,755 launchservicesd[80]: SecTaskLoadEntitlements failed error=22

New App icon

To replace the one from Apple©®™ Network Utility, even in the meantime of another one.
http://www.urlopener.com/ to open all in one shot
Alphabetic order.

http://www.iconarchive.com/show/beautiful-flat-icons-by-elegantthemes/eye-icon.html
http://www.iconarchive.com/show/blend-icons-by-laurent-baumann/Network-icon.html
http://www.iconarchive.com/show/blue-bits-icons-by-icojam/globe-search-icon.html
http://www.iconarchive.com/show/cerulean-icons-by-iconleak/glasses-sunglasses-icon.html
http://www.iconarchive.com/show/crystal-clear-icons-by-everaldo/App-xeyes-icon.html
http://www.iconarchive.com/show/ecommerce-business-icons-by-designcontest/alert-icon.html
http://www.iconarchive.com/show/free-global-security-icons-by-aha-soft/CCTV-Camera-icon.html
http://www.iconarchive.com/show/free-global-security-icons-by-aha-soft/Satellite-icon.html
http://www.iconarchive.com/show/free-google-glass-icons-by-aha-soft/Googler-icon.html
http://www.iconarchive.com/show/galactica-icons-by-iconhive/world-icon.html
http://www.iconarchive.com/show/galaxian-icons-by-evermor-design/Search-icon.html
http://www.iconarchive.com/show/harry-potter-icons-by-anton-gerasimenko/Glasses-icon.html
http://www.iconarchive.com/show/heartquake-prevention-icons-by-iconshock/linterna-icon.html
http://www.iconarchive.com/show/heartquake-prevention-icons-by-iconshock/pito-icon.html
http://www.iconarchive.com/show/heartquake-prevention-icons-by-iconshock/telefono-icon.html
http://www.iconarchive.com/show/holographic-icons-by-radvisual/Web-browser-icon.html
http://www.iconarchive.com/show/matrilineare-icons-by-sora-meliae/Devices-camera-web-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Actions-irc-voice-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Apps-esd-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Apps-preferences-desktop-notification-bell-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Apps-step-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Apps-utilities-system-monitor-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Categories-preferences-system-network-icon.html
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org/Places-network-workgroup-icon.html
http://www.iconarchive.com/show/pleasant-icons-by-harwen/Network-Connections-icon.html
http://www.iconarchive.com/show/simple-icons-by-harwen/Network-Service-icon.html
http://www.iconarchive.com/show/space-invaders-icons-by-turbomilk/earth-attack-icon.html
http://www.iconarchive.com/show/summer-collection-icons-by-benjigarner/Network-Web-icon.html
http://www.iconarchive.com/show/transformers-icons-by-ypf/Internet-Explorer-icon.html
http://www.iconarchive.com/show/transformers-icons-by-ypf/network-connections-icon.html
http://www.iconarchive.com/show/vista-hardware-devices-icons-by-icons-land/Security-Camera-icon.html
http://www.iconarchive.com/show/web-icons-by-studiomx/Earth-Alert-icon.html
http://www.iconarchive.com/show/web-icons-by-studiomx/Earth-Scan-icon.html

Airport state change

System Log contains events for Airport Wi-Fi

OS X 10.11.6:

kernel[0]: AirPort: Link Up on en0
kernel[0]: AirPort: RSN handshake complete on en0

kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).

Possible Parser:

import re

# Should we filter on: kernel[0]: AirPort: 

SUDO_EVENT_FILTER = re.compile('kernel')

#Nov 14 20:29:24 Mark Fleming
# kernel[0]: AirPort: Link Up on en0
# kernel[0]: AirPort: RSN handshake complete on en0
# 
# kernel[0]: AirPort: Link Down on en0. Reason 8 (Disassociated because station leaving).


TITLE = 'AIRPORT EVENT: {interface}'
BODY = '{port}\n'

EXCLUDE_LINES = ('airportd',)  # dont alert on sudo events that contain these strings


def parse(line, source=None):
    if SUDO_EVENT_FILTER.findall(line) and not any(pattern in line for pattern in EXCLUDE_LINES):
        interface = line.split('Link Up on ', 1)[-1]
        port = line.split('AirPort:', 1)[-1]
       
        return ('alert',
            TITLE.format(interface=interface),
            BODY.format(port=port))

    return (None, '', '')

Immediately Stopped Working After Launch

Hello,
I've got this message on my notification panel: Stopped Watching Sources @ 14:20 IOError Do I need to do a further tweak in order to make it run on my OS 10.11.3?
Thanks.
Faxo

Adaptable for linux?

As PushAlotAuth is quite content weak and seems abandoned, do you think this project can be adapted for linux-based systems? I can see that the notification script is made for OSX, then I think is hackable for linux.

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.