├── .github └── FUNDING.yml ├── .gitignore ├── Clients ├── Nuages_Cli │ ├── README.md │ ├── app │ │ ├── cmd.js │ │ ├── commands │ │ │ ├── autoruns.js │ │ │ ├── channels.js │ │ │ ├── config.js │ │ │ ├── files.js │ │ │ ├── get.js │ │ │ ├── handlers.js │ │ │ ├── implants.js │ │ │ ├── interactive.js │ │ │ ├── jobs.js │ │ │ ├── listeners.js │ │ │ ├── login.js │ │ │ ├── modules.js │ │ │ ├── options.js │ │ │ ├── put.js │ │ │ ├── run.js │ │ │ ├── set.js │ │ │ ├── shell.js │ │ │ ├── tunnels.js │ │ │ ├── use.js │ │ │ └── webhooks.js │ │ ├── nuagesAPI.js │ │ └── term.js │ ├── nuages_cli.bat │ ├── nuages_cli.js │ ├── nuages_cli.sh │ ├── package-lock.json │ ├── package.json │ ├── setup.bat │ └── setup.sh ├── Nuages_WebCli │ ├── README.md │ ├── app │ │ ├── cmd.js │ │ ├── nuagesAPI.js │ │ └── term.js │ ├── index.html │ └── lib │ │ ├── ajax.js │ │ ├── feathers.js │ │ ├── fit.js │ │ ├── socket.io.js │ │ ├── xterm.css │ │ └── xterm.js └── README.md ├── Handlers ├── DNS │ └── DNSAES256 │ │ ├── DNSAES256Handler.py │ │ └── README.md ├── HTTP │ └── HTTPAES256 │ │ ├── HTTPAES256Handler.py │ │ └── README.md ├── README.md └── SLACK │ └── SLACKAES256 │ ├── README.md │ ├── SLACKAES256Handler.py │ └── requirements.txt ├── Implants ├── NuagesPoshImplant │ └── NuagesPoshImplant.ps1 ├── NuagesPythonImplant │ └── NuagesPythonImplant.py └── NuagesSharpImplant │ ├── NuagesSharpImplant.sln │ ├── NuagesSharpImplant │ ├── App.config │ ├── Connections │ │ ├── DNSAES256Connection.cs │ │ ├── DirectConnection.cs │ │ ├── HTTPAES256Connection.cs │ │ ├── MultiConnection.cs │ │ ├── NuagesC2Connection.cs │ │ └── SLACKAES256Connection.cs │ ├── NuagesC2Connector.cs │ ├── NuagesC2Implant.cs │ ├── NuagesSharpImplant.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Utils │ │ ├── AESHelper.cs │ │ ├── Dns │ │ ├── Header.cs │ │ ├── Question.cs │ │ ├── RR.cs │ │ ├── RecordReader.cs │ │ ├── Records │ │ │ ├── Record.cs │ │ │ ├── RecordA.cs │ │ │ ├── RecordAAAA.cs │ │ │ ├── RecordAFSDB.cs │ │ │ ├── RecordCNAME.cs │ │ │ ├── RecordDNAME.cs │ │ │ ├── RecordDS.cs │ │ │ ├── RecordHINFO.cs │ │ │ ├── RecordISDN.cs │ │ │ ├── RecordKEY.cs │ │ │ ├── RecordKX.cs │ │ │ ├── RecordLOC.cs │ │ │ ├── RecordMB.cs │ │ │ ├── RecordMG.cs │ │ │ ├── RecordMINFO.cs │ │ │ ├── RecordMR.cs │ │ │ ├── RecordMX.cs │ │ │ ├── RecordNAPTR.cs │ │ │ ├── RecordNS.cs │ │ │ ├── RecordNSAP.cs │ │ │ ├── RecordNULL.cs │ │ │ ├── RecordPTR.cs │ │ │ ├── RecordPX.cs │ │ │ ├── RecordRP.cs │ │ │ ├── RecordRT.cs │ │ │ ├── RecordSIG.cs │ │ │ ├── RecordSOA.cs │ │ │ ├── RecordSRV.cs │ │ │ ├── RecordTKEY.cs │ │ │ ├── RecordTSIG.cs │ │ │ ├── RecordTXT.cs │ │ │ ├── RecordUnknown.cs │ │ │ ├── RecordWKS.cs │ │ │ ├── RecordX25.cs │ │ │ └── totla.txt │ │ ├── Request.cs │ │ ├── Resolver.cs │ │ ├── Response.cs │ │ └── Structs.cs │ │ ├── Header.cs │ │ ├── Json │ │ ├── JavaScriptReader.cs │ │ ├── JsonArray.cs │ │ ├── JsonObject.cs │ │ ├── JsonPrimitive.cs │ │ ├── JsonType.cs │ │ └── JsonValue.cs │ │ └── Posh.cs │ └── Readme.md ├── LICENCE ├── README.md └── Server ├── README.md ├── config └── template.json ├── handlers └── external │ ├── dns │ ├── DNSAES256Handler.py │ └── aes256_py.js │ ├── http │ ├── HTTPAES256Handler.py │ └── aes256_py.js │ └── slack │ ├── README.md │ ├── SLACKAES256Handler.py │ ├── aes256_py.js │ └── requirements.txt ├── modules ├── README.md └── windows │ └── admin │ ├── download_and_run.js │ ├── posh_in_mem.js │ └── reflected_assembly.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── index.html ├── setup.js ├── setup.sh ├── src ├── app.hooks.js ├── app.js ├── authentication.js ├── channels.js ├── handlerHelper.js ├── hooks │ ├── after-create-modules-run.js │ ├── after-find-fs-files.js │ ├── after-find-listeners.js │ ├── after-find-pipes.js │ ├── after-find-tunnels.js │ ├── after-patch-jobs.js │ ├── after-remove-fs-files.js │ ├── before-create-fs-files.js │ ├── before-create-handlers-load.js │ ├── before-create-implant-callback.js │ ├── before-create-implant-chunks.js │ ├── before-create-implant-heartbeat.js │ ├── before-create-implant-io-bin.js │ ├── before-create-implant-io.js │ ├── before-create-implant-jobresult.js │ ├── before-create-implant-register.js │ ├── before-create-job.js │ ├── before-create-listener.js │ ├── before-create-listeners-startstop.js │ ├── before-create-log.js │ ├── before-create-modules-load.js │ ├── before-create-modules-run.js │ ├── before-create-pipe.js │ ├── before-create-pipes-io.js │ ├── before-create-tunnel.js │ ├── before-create-webhook.js │ ├── before-get-fs-files.js │ ├── before-patch-modules-run.js │ ├── before-remove-fs-files.js │ ├── before-remove-listener.js │ ├── before-remove-pipe.js │ ├── before-remove-tunnel.js │ ├── deny-all.js │ ├── error-handler.js │ └── log.js ├── index.js ├── logger.js ├── middleware │ └── index.js ├── moduleHelper.js ├── mongodb.js └── services │ ├── fs.chunks │ ├── fs.chunks.hooks.js │ └── fs.chunks.service.js │ ├── fs.files │ ├── fs.files.hooks.js │ └── fs.files.service.js │ ├── handlers-load │ ├── handlers-load.class.js │ ├── handlers-load.hooks.js │ └── handlers-load.service.js │ ├── handlers │ ├── handlers.class.js │ ├── handlers.hooks.js │ └── handlers.service.js │ ├── implant-callback │ ├── implant-callback.class.js │ ├── implant-callback.hooks.js │ └── implant-callback.service.js │ ├── implant-chunks │ ├── implant-chunks.class.js │ ├── implant-chunks.hooks.js │ └── implant-chunks.service.js │ ├── implant-heartbeat │ ├── implant-heartbeat.class.js │ ├── implant-heartbeat.hooks.js │ └── implant-heartbeat.service.js │ ├── implant-io-bin │ ├── implant-io-bin.class.js │ ├── implant-io-bin.hooks.js │ └── implant-io-bin.service.js │ ├── implant-io │ ├── implant-io.class.js │ ├── implant-io.hooks.js │ └── implant-io.service.js │ ├── implant-jobresult │ ├── implant-jobresult.class.js │ ├── implant-jobresult.hooks.js │ └── implant-jobresult.service.js │ ├── implant-register │ ├── implant-register.class.js │ ├── implant-register.hooks.js │ └── implant-register.service.js │ ├── implants │ ├── implants.hooks.js │ └── implants.service.js │ ├── index.js │ ├── jobs │ ├── jobs.hooks.js │ └── jobs.service.js │ ├── listeners-startstop │ ├── listeners-startstop.class.js │ ├── listeners-startstop.hooks.js │ └── listeners-startstop.service.js │ ├── listeners │ ├── listeners.class.js │ ├── listeners.hooks.js │ └── listeners.service.js │ ├── logs │ ├── logs.class.js │ ├── logs.hooks.js │ └── logs.service.js │ ├── modules-load │ ├── modules-load.class.js │ ├── modules-load.hooks.js │ └── modules-load.service.js │ ├── modules-run │ ├── modules-run.hooks.js │ └── modules-run.service.js │ ├── modules │ ├── modules.hooks.js │ └── modules.service.js │ ├── pipes-io │ ├── pipes-io.class.js │ ├── pipes-io.hooks.js │ └── pipes-io.service.js │ ├── pipes │ ├── pipes.class.js │ ├── pipes.hooks.js │ └── pipes.service.js │ ├── tunnels │ ├── tunnels.class.js │ ├── tunnels.hooks.js │ └── tunnels.service.js │ ├── users │ ├── users.hooks.js │ └── users.service.js │ └── webhooks │ ├── webhooks.filters.js │ ├── webhooks.hooks.js │ └── webhooks.service.js ├── start.bat ├── start.sh └── test ├── app.test.js ├── hooks ├── after-find-fs-chunks.test.js ├── after-find-pipes.test.js ├── after-get-fs-chunk.test.js ├── after-get-fs.test.js ├── before-create-fs-chunks.test.js ├── before-create-fs-files.test.js ├── before-create-fs.test.js ├── before-create-implant-callback.test.js ├── before-create-implant-heartbeat.test.js ├── before-create-implant-io-bin.test.js ├── before-create-implant-jobresult.test.js ├── before-create-implant-register.test.js ├── before-create-job.test.js ├── before-create-webhook.test.js ├── before-find-fs-chunks.test.js ├── before-find-implant-chunks.test.js ├── before-patch-fs.test.js ├── before-remove-fs.test.js └── deny-all.test.js └── services ├── files.test.js ├── fs.chunk.test.js ├── fs.chunks.test.js ├── fs.files.test.js ├── fs.test.js ├── handlers-load.test.js ├── handlers-run.test.js ├── handlers-startstop.test.js ├── handlers.test.js ├── implant-callback.test.js ├── implant-chunks.test.js ├── implant-heartbeat.test.js ├── implant-io-bin.test.js ├── implant-jobresult.test.js ├── implant-register.test.js ├── implants-io.test.js ├── implants.test.js ├── jobs.test.js ├── logs.test.js ├── pipes-io.test.js ├── pipes.test.js ├── tunnels.test.js ├── users.test.js └── webhooks.test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [p3nt4] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/.gitignore -------------------------------------------------------------------------------- /Clients/Nuages_Cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/README.md -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/cmd.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/autoruns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/autoruns.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/channels.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/config.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/files.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/get.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/handlers.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/implants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/implants.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/interactive.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/jobs.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/listeners.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/login.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/modules.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/options.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/put.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/run.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/set.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/shell.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/tunnels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/tunnels.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/use.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/commands/webhooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/commands/webhooks.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/nuagesAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/nuagesAPI.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/app/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/app/term.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/nuages_cli.bat: -------------------------------------------------------------------------------- 1 | node nuages_cli.js %1 -------------------------------------------------------------------------------- /Clients/Nuages_Cli/nuages_cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/nuages_cli.js -------------------------------------------------------------------------------- /Clients/Nuages_Cli/nuages_cli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | node nuages_cli.js $1 -------------------------------------------------------------------------------- /Clients/Nuages_Cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/package-lock.json -------------------------------------------------------------------------------- /Clients/Nuages_Cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_Cli/package.json -------------------------------------------------------------------------------- /Clients/Nuages_Cli/setup.bat: -------------------------------------------------------------------------------- 1 | npm install -------------------------------------------------------------------------------- /Clients/Nuages_Cli/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | npm install -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/README.md -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/app/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/app/cmd.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/app/nuagesAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/app/nuagesAPI.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/app/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/app/term.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/index.html -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/ajax.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/feathers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/feathers.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/fit.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/socket.io.js -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/xterm.css -------------------------------------------------------------------------------- /Clients/Nuages_WebCli/lib/xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/Nuages_WebCli/lib/xterm.js -------------------------------------------------------------------------------- /Clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Clients/README.md -------------------------------------------------------------------------------- /Handlers/DNS/DNSAES256/DNSAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/DNS/DNSAES256/DNSAES256Handler.py -------------------------------------------------------------------------------- /Handlers/DNS/DNSAES256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/DNS/DNSAES256/README.md -------------------------------------------------------------------------------- /Handlers/HTTP/HTTPAES256/HTTPAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/HTTP/HTTPAES256/HTTPAES256Handler.py -------------------------------------------------------------------------------- /Handlers/HTTP/HTTPAES256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/HTTP/HTTPAES256/README.md -------------------------------------------------------------------------------- /Handlers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/README.md -------------------------------------------------------------------------------- /Handlers/SLACK/SLACKAES256/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/SLACK/SLACKAES256/README.md -------------------------------------------------------------------------------- /Handlers/SLACK/SLACKAES256/SLACKAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/SLACK/SLACKAES256/SLACKAES256Handler.py -------------------------------------------------------------------------------- /Handlers/SLACK/SLACKAES256/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Handlers/SLACK/SLACKAES256/requirements.txt -------------------------------------------------------------------------------- /Implants/NuagesPoshImplant/NuagesPoshImplant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesPoshImplant/NuagesPoshImplant.ps1 -------------------------------------------------------------------------------- /Implants/NuagesPythonImplant/NuagesPythonImplant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesPythonImplant/NuagesPythonImplant.py -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant.sln -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/App.config -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/DNSAES256Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/DNSAES256Connection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/DirectConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/DirectConnection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/HTTPAES256Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/HTTPAES256Connection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/MultiConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/MultiConnection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/NuagesC2Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/NuagesC2Connection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/SLACKAES256Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Connections/SLACKAES256Connection.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesC2Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesC2Connector.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesC2Implant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesC2Implant.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesSharpImplant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/NuagesSharpImplant.csproj -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Program.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/AESHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/AESHelper.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Header.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Question.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/RR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/RR.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/RecordReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/RecordReader.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/Record.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordA.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordAAAA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordAAAA.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordAFSDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordAFSDB.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordCNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordCNAME.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordDNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordDNAME.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordDS.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordHINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordHINFO.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordISDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordISDN.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordKEY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordKEY.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordKX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordKX.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordLOC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordLOC.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMB.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMG.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMINFO.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMR.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordMX.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNAPTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNAPTR.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNS.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNSAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNSAP.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNULL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordNULL.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordPTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordPTR.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordPX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordPX.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordRP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordRP.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordRT.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSIG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSIG.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSOA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSOA.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSRV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordSRV.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTKEY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTKEY.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTSIG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTSIG.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordTXT.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordUnknown.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordWKS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordWKS.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordX25.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/RecordX25.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/totla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Records/totla.txt -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Request.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Resolver.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Response.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Dns/Structs.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Header.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JavaScriptReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JavaScriptReader.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonArray.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonObject.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonPrimitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonPrimitive.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonType.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Json/JsonValue.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Posh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/NuagesSharpImplant/Utils/Posh.cs -------------------------------------------------------------------------------- /Implants/NuagesSharpImplant/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Implants/NuagesSharpImplant/Readme.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/README.md -------------------------------------------------------------------------------- /Server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/README.md -------------------------------------------------------------------------------- /Server/config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/config/template.json -------------------------------------------------------------------------------- /Server/handlers/external/dns/DNSAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/dns/DNSAES256Handler.py -------------------------------------------------------------------------------- /Server/handlers/external/dns/aes256_py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/dns/aes256_py.js -------------------------------------------------------------------------------- /Server/handlers/external/http/HTTPAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/http/HTTPAES256Handler.py -------------------------------------------------------------------------------- /Server/handlers/external/http/aes256_py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/http/aes256_py.js -------------------------------------------------------------------------------- /Server/handlers/external/slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/slack/README.md -------------------------------------------------------------------------------- /Server/handlers/external/slack/SLACKAES256Handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/slack/SLACKAES256Handler.py -------------------------------------------------------------------------------- /Server/handlers/external/slack/aes256_py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/slack/aes256_py.js -------------------------------------------------------------------------------- /Server/handlers/external/slack/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/handlers/external/slack/requirements.txt -------------------------------------------------------------------------------- /Server/modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/modules/README.md -------------------------------------------------------------------------------- /Server/modules/windows/admin/download_and_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/modules/windows/admin/download_and_run.js -------------------------------------------------------------------------------- /Server/modules/windows/admin/posh_in_mem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/modules/windows/admin/posh_in_mem.js -------------------------------------------------------------------------------- /Server/modules/windows/admin/reflected_assembly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/modules/windows/admin/reflected_assembly.js -------------------------------------------------------------------------------- /Server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/package-lock.json -------------------------------------------------------------------------------- /Server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/package.json -------------------------------------------------------------------------------- /Server/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/public/favicon.ico -------------------------------------------------------------------------------- /Server/public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/setup.js -------------------------------------------------------------------------------- /Server/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/setup.sh -------------------------------------------------------------------------------- /Server/src/app.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/app.hooks.js -------------------------------------------------------------------------------- /Server/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/app.js -------------------------------------------------------------------------------- /Server/src/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/authentication.js -------------------------------------------------------------------------------- /Server/src/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/channels.js -------------------------------------------------------------------------------- /Server/src/handlerHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/handlerHelper.js -------------------------------------------------------------------------------- /Server/src/hooks/after-create-modules-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-create-modules-run.js -------------------------------------------------------------------------------- /Server/src/hooks/after-find-fs-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-find-fs-files.js -------------------------------------------------------------------------------- /Server/src/hooks/after-find-listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-find-listeners.js -------------------------------------------------------------------------------- /Server/src/hooks/after-find-pipes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-find-pipes.js -------------------------------------------------------------------------------- /Server/src/hooks/after-find-tunnels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-find-tunnels.js -------------------------------------------------------------------------------- /Server/src/hooks/after-patch-jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-patch-jobs.js -------------------------------------------------------------------------------- /Server/src/hooks/after-remove-fs-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/after-remove-fs-files.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-fs-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-fs-files.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-handlers-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-handlers-load.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-callback.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-chunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-chunks.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-heartbeat.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-io-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-io-bin.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-io.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-jobresult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-jobresult.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-implant-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-implant-register.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-job.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-listener.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-listeners-startstop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-listeners-startstop.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-log.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-modules-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-modules-load.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-modules-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-modules-run.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-pipe.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-pipes-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-pipes-io.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-tunnel.js -------------------------------------------------------------------------------- /Server/src/hooks/before-create-webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-create-webhook.js -------------------------------------------------------------------------------- /Server/src/hooks/before-get-fs-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-get-fs-files.js -------------------------------------------------------------------------------- /Server/src/hooks/before-patch-modules-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-patch-modules-run.js -------------------------------------------------------------------------------- /Server/src/hooks/before-remove-fs-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-remove-fs-files.js -------------------------------------------------------------------------------- /Server/src/hooks/before-remove-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-remove-listener.js -------------------------------------------------------------------------------- /Server/src/hooks/before-remove-pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-remove-pipe.js -------------------------------------------------------------------------------- /Server/src/hooks/before-remove-tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/before-remove-tunnel.js -------------------------------------------------------------------------------- /Server/src/hooks/deny-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/deny-all.js -------------------------------------------------------------------------------- /Server/src/hooks/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/error-handler.js -------------------------------------------------------------------------------- /Server/src/hooks/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/hooks/log.js -------------------------------------------------------------------------------- /Server/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/index.js -------------------------------------------------------------------------------- /Server/src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/logger.js -------------------------------------------------------------------------------- /Server/src/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/middleware/index.js -------------------------------------------------------------------------------- /Server/src/moduleHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/moduleHelper.js -------------------------------------------------------------------------------- /Server/src/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/mongodb.js -------------------------------------------------------------------------------- /Server/src/services/fs.chunks/fs.chunks.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/fs.chunks/fs.chunks.hooks.js -------------------------------------------------------------------------------- /Server/src/services/fs.chunks/fs.chunks.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/fs.chunks/fs.chunks.service.js -------------------------------------------------------------------------------- /Server/src/services/fs.files/fs.files.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/fs.files/fs.files.hooks.js -------------------------------------------------------------------------------- /Server/src/services/fs.files/fs.files.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/fs.files/fs.files.service.js -------------------------------------------------------------------------------- /Server/src/services/handlers-load/handlers-load.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers-load/handlers-load.class.js -------------------------------------------------------------------------------- /Server/src/services/handlers-load/handlers-load.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers-load/handlers-load.hooks.js -------------------------------------------------------------------------------- /Server/src/services/handlers-load/handlers-load.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers-load/handlers-load.service.js -------------------------------------------------------------------------------- /Server/src/services/handlers/handlers.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers/handlers.class.js -------------------------------------------------------------------------------- /Server/src/services/handlers/handlers.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers/handlers.hooks.js -------------------------------------------------------------------------------- /Server/src/services/handlers/handlers.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/handlers/handlers.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-callback/implant-callback.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-callback/implant-callback.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-callback/implant-callback.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-callback/implant-callback.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-callback/implant-callback.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-callback/implant-callback.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-chunks/implant-chunks.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-chunks/implant-chunks.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-chunks/implant-chunks.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-chunks/implant-chunks.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-chunks/implant-chunks.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-chunks/implant-chunks.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-heartbeat/implant-heartbeat.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-heartbeat/implant-heartbeat.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-heartbeat/implant-heartbeat.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-heartbeat/implant-heartbeat.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-heartbeat/implant-heartbeat.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-heartbeat/implant-heartbeat.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-io-bin/implant-io-bin.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io-bin/implant-io-bin.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-io-bin/implant-io-bin.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io-bin/implant-io-bin.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-io-bin/implant-io-bin.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io-bin/implant-io-bin.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-io/implant-io.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io/implant-io.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-io/implant-io.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io/implant-io.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-io/implant-io.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-io/implant-io.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-jobresult/implant-jobresult.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-jobresult/implant-jobresult.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-jobresult/implant-jobresult.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-jobresult/implant-jobresult.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-jobresult/implant-jobresult.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-jobresult/implant-jobresult.service.js -------------------------------------------------------------------------------- /Server/src/services/implant-register/implant-register.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-register/implant-register.class.js -------------------------------------------------------------------------------- /Server/src/services/implant-register/implant-register.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-register/implant-register.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implant-register/implant-register.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implant-register/implant-register.service.js -------------------------------------------------------------------------------- /Server/src/services/implants/implants.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implants/implants.hooks.js -------------------------------------------------------------------------------- /Server/src/services/implants/implants.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/implants/implants.service.js -------------------------------------------------------------------------------- /Server/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/index.js -------------------------------------------------------------------------------- /Server/src/services/jobs/jobs.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/jobs/jobs.hooks.js -------------------------------------------------------------------------------- /Server/src/services/jobs/jobs.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/jobs/jobs.service.js -------------------------------------------------------------------------------- /Server/src/services/listeners-startstop/listeners-startstop.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners-startstop/listeners-startstop.class.js -------------------------------------------------------------------------------- /Server/src/services/listeners-startstop/listeners-startstop.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners-startstop/listeners-startstop.hooks.js -------------------------------------------------------------------------------- /Server/src/services/listeners-startstop/listeners-startstop.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners-startstop/listeners-startstop.service.js -------------------------------------------------------------------------------- /Server/src/services/listeners/listeners.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners/listeners.class.js -------------------------------------------------------------------------------- /Server/src/services/listeners/listeners.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners/listeners.hooks.js -------------------------------------------------------------------------------- /Server/src/services/listeners/listeners.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/listeners/listeners.service.js -------------------------------------------------------------------------------- /Server/src/services/logs/logs.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/logs/logs.class.js -------------------------------------------------------------------------------- /Server/src/services/logs/logs.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/logs/logs.hooks.js -------------------------------------------------------------------------------- /Server/src/services/logs/logs.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/logs/logs.service.js -------------------------------------------------------------------------------- /Server/src/services/modules-load/modules-load.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules-load/modules-load.class.js -------------------------------------------------------------------------------- /Server/src/services/modules-load/modules-load.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules-load/modules-load.hooks.js -------------------------------------------------------------------------------- /Server/src/services/modules-load/modules-load.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules-load/modules-load.service.js -------------------------------------------------------------------------------- /Server/src/services/modules-run/modules-run.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules-run/modules-run.hooks.js -------------------------------------------------------------------------------- /Server/src/services/modules-run/modules-run.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules-run/modules-run.service.js -------------------------------------------------------------------------------- /Server/src/services/modules/modules.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules/modules.hooks.js -------------------------------------------------------------------------------- /Server/src/services/modules/modules.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/modules/modules.service.js -------------------------------------------------------------------------------- /Server/src/services/pipes-io/pipes-io.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes-io/pipes-io.class.js -------------------------------------------------------------------------------- /Server/src/services/pipes-io/pipes-io.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes-io/pipes-io.hooks.js -------------------------------------------------------------------------------- /Server/src/services/pipes-io/pipes-io.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes-io/pipes-io.service.js -------------------------------------------------------------------------------- /Server/src/services/pipes/pipes.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes/pipes.class.js -------------------------------------------------------------------------------- /Server/src/services/pipes/pipes.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes/pipes.hooks.js -------------------------------------------------------------------------------- /Server/src/services/pipes/pipes.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/pipes/pipes.service.js -------------------------------------------------------------------------------- /Server/src/services/tunnels/tunnels.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/tunnels/tunnels.class.js -------------------------------------------------------------------------------- /Server/src/services/tunnels/tunnels.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/tunnels/tunnels.hooks.js -------------------------------------------------------------------------------- /Server/src/services/tunnels/tunnels.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/tunnels/tunnels.service.js -------------------------------------------------------------------------------- /Server/src/services/users/users.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/users/users.hooks.js -------------------------------------------------------------------------------- /Server/src/services/users/users.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/users/users.service.js -------------------------------------------------------------------------------- /Server/src/services/webhooks/webhooks.filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/webhooks/webhooks.filters.js -------------------------------------------------------------------------------- /Server/src/services/webhooks/webhooks.hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/webhooks/webhooks.hooks.js -------------------------------------------------------------------------------- /Server/src/services/webhooks/webhooks.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/src/services/webhooks/webhooks.service.js -------------------------------------------------------------------------------- /Server/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set NODE_ENV=production 3 | node src/ -------------------------------------------------------------------------------- /Server/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export NODE_ENV=production 3 | node src/ -------------------------------------------------------------------------------- /Server/test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/app.test.js -------------------------------------------------------------------------------- /Server/test/hooks/after-find-fs-chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/after-find-fs-chunks.test.js -------------------------------------------------------------------------------- /Server/test/hooks/after-find-pipes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/after-find-pipes.test.js -------------------------------------------------------------------------------- /Server/test/hooks/after-get-fs-chunk.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/after-get-fs-chunk.test.js -------------------------------------------------------------------------------- /Server/test/hooks/after-get-fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/after-get-fs.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-fs-chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-fs-chunks.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-fs-files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-fs-files.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-fs.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-implant-callback.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-implant-callback.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-implant-heartbeat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-implant-heartbeat.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-implant-io-bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-implant-io-bin.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-implant-jobresult.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-implant-jobresult.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-implant-register.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-implant-register.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-job.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-job.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-create-webhook.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-create-webhook.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-find-fs-chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-find-fs-chunks.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-find-implant-chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-find-implant-chunks.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-patch-fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-patch-fs.test.js -------------------------------------------------------------------------------- /Server/test/hooks/before-remove-fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/before-remove-fs.test.js -------------------------------------------------------------------------------- /Server/test/hooks/deny-all.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/hooks/deny-all.test.js -------------------------------------------------------------------------------- /Server/test/services/files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/files.test.js -------------------------------------------------------------------------------- /Server/test/services/fs.chunk.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/fs.chunk.test.js -------------------------------------------------------------------------------- /Server/test/services/fs.chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/fs.chunks.test.js -------------------------------------------------------------------------------- /Server/test/services/fs.files.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/fs.files.test.js -------------------------------------------------------------------------------- /Server/test/services/fs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/fs.test.js -------------------------------------------------------------------------------- /Server/test/services/handlers-load.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/handlers-load.test.js -------------------------------------------------------------------------------- /Server/test/services/handlers-run.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/handlers-run.test.js -------------------------------------------------------------------------------- /Server/test/services/handlers-startstop.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/handlers-startstop.test.js -------------------------------------------------------------------------------- /Server/test/services/handlers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/handlers.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-callback.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-callback.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-chunks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-chunks.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-heartbeat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-heartbeat.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-io-bin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-io-bin.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-jobresult.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-jobresult.test.js -------------------------------------------------------------------------------- /Server/test/services/implant-register.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implant-register.test.js -------------------------------------------------------------------------------- /Server/test/services/implants-io.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implants-io.test.js -------------------------------------------------------------------------------- /Server/test/services/implants.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/implants.test.js -------------------------------------------------------------------------------- /Server/test/services/jobs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/jobs.test.js -------------------------------------------------------------------------------- /Server/test/services/logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/logs.test.js -------------------------------------------------------------------------------- /Server/test/services/pipes-io.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/pipes-io.test.js -------------------------------------------------------------------------------- /Server/test/services/pipes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/pipes.test.js -------------------------------------------------------------------------------- /Server/test/services/tunnels.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/tunnels.test.js -------------------------------------------------------------------------------- /Server/test/services/users.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/users.test.js -------------------------------------------------------------------------------- /Server/test/services/webhooks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p3nt4/Nuages/HEAD/Server/test/services/webhooks.test.js --------------------------------------------------------------------------------