├── CONTRIBUTING.md ├── ChangeLog ├── LICENSE ├── README.md ├── _config.yml ├── agent ├── Nidan │ ├── __init__.py │ ├── config.py │ ├── restclient.py │ └── scanner.py ├── README.md ├── nidan.cfg ├── nidan.py └── setup.py ├── assets ├── screenshot_1.jpg ├── screenshot_2.jpg ├── screenshot_3.jpg ├── screenshot_4.jpg ├── screenshot_5.jpg └── screenshot_6.jpg ├── init.d └── nidan ├── version.xml └── web ├── .htaccess ├── LICENSE ├── PhpConsole ├── Auth.php ├── Connector.php ├── Dispatcher.php ├── Dispatcher │ ├── Debug.php │ ├── Errors.php │ └── Evaluate.php ├── Dumper.php ├── EvalProvider.php ├── Handler.php ├── Helper.php ├── OldVersionAdapter.php ├── PsrLogger.php ├── Storage.php ├── Storage │ ├── AllKeysList.php │ ├── ExpiringKeyValue.php │ ├── File.php │ ├── Memcache.php │ ├── MongoDB.php │ └── Session.php └── __autoload.php ├── agents.php ├── ajaxCb.php ├── common.inc.php ├── common_foot.php ├── common_head.php ├── common_sidebar.php ├── config.inc.php ├── config.php ├── cron.php ├── css ├── animate.css ├── bootstrap-switch.min.css ├── bootstrap-table.min.css ├── bootstrap.min.css ├── bootstrap.min.css.map ├── common.css ├── font-awesome.min.css ├── fontawesome-all.min.css ├── images │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── ui-icons_ffffff_256x240.png ├── index.css ├── jquery-ui.min.css ├── noty.css ├── signin.css ├── tether.min.css └── validationEngine.jquery.css ├── favicon.ico ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── groups.php ├── host.php ├── img ├── header_1200x800.png ├── header_logo.png ├── host_offline.png ├── host_online.png ├── logo-login.png └── spinner.gif ├── inbox.php ├── index.php ├── install ├── backup.php ├── index.php ├── nidan.sql └── nidan_data.sql ├── jobs.php ├── js ├── Chart.bundle.min.js ├── bootstrap-switch.min.js ├── bootstrap-table.min.js ├── bootstrap.min.js ├── bootstrap.min.js.map ├── common.js ├── ie10-viewport-bug-workaround.js ├── jquery-slim.min.js ├── jquery-ui.min.js ├── jquery.min.js ├── jquery.noty.packaged.min.js ├── jquery.validationEngine-en.js ├── jquery.validationEngine.js ├── net.js ├── noty.min.js └── tether.min.js ├── lang └── it_IT │ └── LC_MESSAGES │ ├── it_IT.mo │ └── it_IT.po ├── log.php ├── logo.svg ├── net.php ├── phpmailer ├── Exception.php ├── OAuth.php ├── PHPMailer.php └── SMTP.php ├── profile.php ├── rest ├── .htaccess ├── NidanController.php ├── RestServer │ ├── Auth │ │ └── HTTPAuthServer.php │ ├── AuthServer.php │ ├── RestException.php │ ├── RestFormat.php │ └── RestServer.php └── index.php ├── search.php ├── signin.php ├── triggers.php ├── users.php └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/_config.yml -------------------------------------------------------------------------------- /agent/Nidan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/Nidan/__init__.py -------------------------------------------------------------------------------- /agent/Nidan/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/Nidan/config.py -------------------------------------------------------------------------------- /agent/Nidan/restclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/Nidan/restclient.py -------------------------------------------------------------------------------- /agent/Nidan/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/Nidan/scanner.py -------------------------------------------------------------------------------- /agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/README.md -------------------------------------------------------------------------------- /agent/nidan.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/nidan.cfg -------------------------------------------------------------------------------- /agent/nidan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/nidan.py -------------------------------------------------------------------------------- /agent/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/agent/setup.py -------------------------------------------------------------------------------- /assets/screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_1.jpg -------------------------------------------------------------------------------- /assets/screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_2.jpg -------------------------------------------------------------------------------- /assets/screenshot_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_3.jpg -------------------------------------------------------------------------------- /assets/screenshot_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_4.jpg -------------------------------------------------------------------------------- /assets/screenshot_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_5.jpg -------------------------------------------------------------------------------- /assets/screenshot_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/assets/screenshot_6.jpg -------------------------------------------------------------------------------- /init.d/nidan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/init.d/nidan -------------------------------------------------------------------------------- /version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/version.xml -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/PhpConsole/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Auth.php -------------------------------------------------------------------------------- /web/PhpConsole/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Connector.php -------------------------------------------------------------------------------- /web/PhpConsole/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Dispatcher.php -------------------------------------------------------------------------------- /web/PhpConsole/Dispatcher/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Dispatcher/Debug.php -------------------------------------------------------------------------------- /web/PhpConsole/Dispatcher/Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Dispatcher/Errors.php -------------------------------------------------------------------------------- /web/PhpConsole/Dispatcher/Evaluate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Dispatcher/Evaluate.php -------------------------------------------------------------------------------- /web/PhpConsole/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Dumper.php -------------------------------------------------------------------------------- /web/PhpConsole/EvalProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/EvalProvider.php -------------------------------------------------------------------------------- /web/PhpConsole/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Handler.php -------------------------------------------------------------------------------- /web/PhpConsole/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Helper.php -------------------------------------------------------------------------------- /web/PhpConsole/OldVersionAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/OldVersionAdapter.php -------------------------------------------------------------------------------- /web/PhpConsole/PsrLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/PsrLogger.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/AllKeysList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/AllKeysList.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/ExpiringKeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/ExpiringKeyValue.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/File.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/Memcache.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/MongoDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/MongoDB.php -------------------------------------------------------------------------------- /web/PhpConsole/Storage/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/Storage/Session.php -------------------------------------------------------------------------------- /web/PhpConsole/__autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/PhpConsole/__autoload.php -------------------------------------------------------------------------------- /web/agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/agents.php -------------------------------------------------------------------------------- /web/ajaxCb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/ajaxCb.php -------------------------------------------------------------------------------- /web/common.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/common.inc.php -------------------------------------------------------------------------------- /web/common_foot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/common_foot.php -------------------------------------------------------------------------------- /web/common_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/common_head.php -------------------------------------------------------------------------------- /web/common_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/common_sidebar.php -------------------------------------------------------------------------------- /web/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/config.inc.php -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/config.php -------------------------------------------------------------------------------- /web/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/cron.php -------------------------------------------------------------------------------- /web/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/animate.css -------------------------------------------------------------------------------- /web/css/bootstrap-switch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/bootstrap-switch.min.css -------------------------------------------------------------------------------- /web/css/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/bootstrap-table.min.css -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/common.css -------------------------------------------------------------------------------- /web/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/font-awesome.min.css -------------------------------------------------------------------------------- /web/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /web/css/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /web/css/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /web/css/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /web/css/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /web/css/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /web/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /web/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/index.css -------------------------------------------------------------------------------- /web/css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/jquery-ui.min.css -------------------------------------------------------------------------------- /web/css/noty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/noty.css -------------------------------------------------------------------------------- /web/css/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/signin.css -------------------------------------------------------------------------------- /web/css/tether.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/tether.min.css -------------------------------------------------------------------------------- /web/css/validationEngine.jquery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/css/validationEngine.jquery.css -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /web/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/groups.php -------------------------------------------------------------------------------- /web/host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/host.php -------------------------------------------------------------------------------- /web/img/header_1200x800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/header_1200x800.png -------------------------------------------------------------------------------- /web/img/header_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/header_logo.png -------------------------------------------------------------------------------- /web/img/host_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/host_offline.png -------------------------------------------------------------------------------- /web/img/host_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/host_online.png -------------------------------------------------------------------------------- /web/img/logo-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/logo-login.png -------------------------------------------------------------------------------- /web/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/img/spinner.gif -------------------------------------------------------------------------------- /web/inbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/inbox.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/index.php -------------------------------------------------------------------------------- /web/install/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/install/backup.php -------------------------------------------------------------------------------- /web/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/install/index.php -------------------------------------------------------------------------------- /web/install/nidan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/install/nidan.sql -------------------------------------------------------------------------------- /web/install/nidan_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/install/nidan_data.sql -------------------------------------------------------------------------------- /web/jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/jobs.php -------------------------------------------------------------------------------- /web/js/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/Chart.bundle.min.js -------------------------------------------------------------------------------- /web/js/bootstrap-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/bootstrap-switch.min.js -------------------------------------------------------------------------------- /web/js/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/bootstrap-table.min.js -------------------------------------------------------------------------------- /web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /web/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/common.js -------------------------------------------------------------------------------- /web/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /web/js/jquery-slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery-slim.min.js -------------------------------------------------------------------------------- /web/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery-ui.min.js -------------------------------------------------------------------------------- /web/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery.min.js -------------------------------------------------------------------------------- /web/js/jquery.noty.packaged.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery.noty.packaged.min.js -------------------------------------------------------------------------------- /web/js/jquery.validationEngine-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery.validationEngine-en.js -------------------------------------------------------------------------------- /web/js/jquery.validationEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/jquery.validationEngine.js -------------------------------------------------------------------------------- /web/js/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/net.js -------------------------------------------------------------------------------- /web/js/noty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/noty.min.js -------------------------------------------------------------------------------- /web/js/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/js/tether.min.js -------------------------------------------------------------------------------- /web/lang/it_IT/LC_MESSAGES/it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/lang/it_IT/LC_MESSAGES/it_IT.mo -------------------------------------------------------------------------------- /web/lang/it_IT/LC_MESSAGES/it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/lang/it_IT/LC_MESSAGES/it_IT.po -------------------------------------------------------------------------------- /web/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/log.php -------------------------------------------------------------------------------- /web/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/logo.svg -------------------------------------------------------------------------------- /web/net.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/net.php -------------------------------------------------------------------------------- /web/phpmailer/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/phpmailer/Exception.php -------------------------------------------------------------------------------- /web/phpmailer/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/phpmailer/OAuth.php -------------------------------------------------------------------------------- /web/phpmailer/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/phpmailer/PHPMailer.php -------------------------------------------------------------------------------- /web/phpmailer/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/phpmailer/SMTP.php -------------------------------------------------------------------------------- /web/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/profile.php -------------------------------------------------------------------------------- /web/rest/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/.htaccess -------------------------------------------------------------------------------- /web/rest/NidanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/NidanController.php -------------------------------------------------------------------------------- /web/rest/RestServer/Auth/HTTPAuthServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/RestServer/Auth/HTTPAuthServer.php -------------------------------------------------------------------------------- /web/rest/RestServer/AuthServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/RestServer/AuthServer.php -------------------------------------------------------------------------------- /web/rest/RestServer/RestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/RestServer/RestException.php -------------------------------------------------------------------------------- /web/rest/RestServer/RestFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/RestServer/RestFormat.php -------------------------------------------------------------------------------- /web/rest/RestServer/RestServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/RestServer/RestServer.php -------------------------------------------------------------------------------- /web/rest/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/rest/index.php -------------------------------------------------------------------------------- /web/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/search.php -------------------------------------------------------------------------------- /web/signin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/signin.php -------------------------------------------------------------------------------- /web/triggers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/triggers.php -------------------------------------------------------------------------------- /web/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/users.php -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelep/Nidan/HEAD/web/webfonts/fa-solid-900.woff2 --------------------------------------------------------------------------------