├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── api ├── controller.js ├── middlewares.js ├── model.js └── utils.js ├── app.js ├── config.js ├── db ├── Adapter.js └── DBSqlite3.js ├── def.js ├── ecosystem.config.js ├── interface.js ├── ipban.sh ├── ipunban.sh ├── package.json ├── restore_banned_ips.sh ├── telegram └── tg.js ├── types.js └── utils.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/README.md -------------------------------------------------------------------------------- /api/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/api/controller.js -------------------------------------------------------------------------------- /api/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/api/middlewares.js -------------------------------------------------------------------------------- /api/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/api/model.js -------------------------------------------------------------------------------- /api/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/api/utils.js -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/app.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/config.js -------------------------------------------------------------------------------- /db/Adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/db/Adapter.js -------------------------------------------------------------------------------- /db/DBSqlite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/db/DBSqlite3.js -------------------------------------------------------------------------------- /def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/def.js -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/interface.js -------------------------------------------------------------------------------- /ipban.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/ipban.sh -------------------------------------------------------------------------------- /ipunban.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/ipunban.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/package.json -------------------------------------------------------------------------------- /restore_banned_ips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/restore_banned_ips.sh -------------------------------------------------------------------------------- /telegram/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/telegram/tg.js -------------------------------------------------------------------------------- /types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/types.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdzov/luIP-marzban/HEAD/utils.js --------------------------------------------------------------------------------