-
-
Save YoucefMegoura/669bed30922bc63ee2f5807cf85416cc to your computer and use it in GitHub Desktop.
Nokia Fastmile Gateway 7 Reverse Engineering Authentication
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Router Configuration | |
| ROUTER_HOSTNAME=192.168.1.1 | |
| ROUTER_USERNAME=admin | |
| ROUTER_PASSWORD=JST3gwWvoTg3iw | |
| # Server Configuration | |
| PORT=3000 | |
| NODE_ENV=development | |
| # SMS Scheduler Configuration | |
| SMS_CHECK_INTERVAL=20000 | |
| SMS_SCHEDULER_ENABLED=true | |
| # Logging Configuration | |
| LOG_LEVEL=debug | |
| # Discord Webhook Configuration | |
| DISCORD_WEBHOOK_ENABLED=true | |
| DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/1447594983094878414/FZXCU7mDDFQT5qt0xuBK29EIqAGbJoec11RBUxsx6HDdXwmZenTo8ayG7wQ7s-NuPOgp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Router Configuration | |
| ROUTER_HOSTNAME=192.168.1.1 | |
| ROUTER_USERNAME=admin | |
| ROUTER_PASSWORD=JST3gwWvoTg3iw | |
| # Server Configuration | |
| PORT=3000 | |
| NODE_ENV=development | |
| # SMS Scheduler Configuration | |
| SMS_CHECK_INTERVAL=20000 | |
| SMS_SCHEDULER_ENABLED=true | |
| # Logging Configuration | |
| LOG_LEVEL=debug | |
| # Discord Webhook Configuration | |
| DISCORD_WEBHOOK_ENABLED=true | |
| DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/1447594983094878414/FZXCU7mDDFQT5qt0xuBK29EIqAGbJoec11RBUxsx6HDdXwmZenTo8ayG7wQ7s-NuPOgp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "router-api-proxy", | |
| "version": "1.0.0", | |
| "description": "Dynamic API proxy for router CGI endpoints", | |
| "main": "app.js", | |
| "scripts": { | |
| "start": "node app.js", | |
| "dev": "nodemon app.js" | |
| }, | |
| "dependencies": { | |
| "crypto-js": "^4.1.1", | |
| "dotenv": "^16.3.1", | |
| "express": "^4.18.2", | |
| "express-session": "^1.17.3", | |
| "sjcl": "^1.0.8", | |
| "prom-client": "^14.2.0" | |
| }, | |
| "devDependencies": { | |
| "nodemon": "^3.0.1" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment