├── .gitignore ├── README.md ├── datadump ├── README.md ├── index.js ├── now.json ├── package.json └── yarn.lock ├── gopher_redirect ├── README.md ├── index.js ├── now.json ├── package.json └── redirect_request.req ├── imgs ├── gotty.png ├── massdns_serverless.png ├── nmap_serverless.png ├── req_dump.png ├── serverless_dumper_passwd.png ├── slack_tarball_dump.png ├── ssrf_notify_get.png ├── ssrf_notify_post.png ├── xxeserver_data.png └── xxeserver_get_dtd.png ├── massdns ├── .dockerignore ├── Dockerfile ├── README.md ├── now.json ├── package.json └── server.js ├── nmap_scan ├── Dockerfile ├── README.md ├── index.js ├── now.json ├── package-lock.json └── package.json ├── req_dump ├── .gitignore ├── README.md ├── index.js ├── now.json ├── package-lock.json └── package.json ├── simple_redirect ├── README.md ├── index.js ├── now.json ├── package-lock.json └── package.json ├── ssrf_slack ├── README.md ├── index.js ├── now.json ├── package-lock.json └── package.json ├── static_example ├── .nowignore ├── README.md ├── alert.js ├── external.dtd └── messagebox.ps1 ├── webshell ├── Dockerfile ├── README.md ├── now.json └── run.sh └── xxe_server ├── .npmignore ├── README.md ├── index.js ├── now.json ├── package-lock.json ├── package.json └── templates ├── dtd.hbs ├── dtd_php_file.hbs └── dtd_with_file.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /datadump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/datadump/README.md -------------------------------------------------------------------------------- /datadump/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/datadump/index.js -------------------------------------------------------------------------------- /datadump/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/datadump/now.json -------------------------------------------------------------------------------- /datadump/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/datadump/package.json -------------------------------------------------------------------------------- /datadump/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/datadump/yarn.lock -------------------------------------------------------------------------------- /gopher_redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/gopher_redirect/README.md -------------------------------------------------------------------------------- /gopher_redirect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/gopher_redirect/index.js -------------------------------------------------------------------------------- /gopher_redirect/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/gopher_redirect/now.json -------------------------------------------------------------------------------- /gopher_redirect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/gopher_redirect/package.json -------------------------------------------------------------------------------- /gopher_redirect/redirect_request.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/gopher_redirect/redirect_request.req -------------------------------------------------------------------------------- /imgs/gotty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/gotty.png -------------------------------------------------------------------------------- /imgs/massdns_serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/massdns_serverless.png -------------------------------------------------------------------------------- /imgs/nmap_serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/nmap_serverless.png -------------------------------------------------------------------------------- /imgs/req_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/req_dump.png -------------------------------------------------------------------------------- /imgs/serverless_dumper_passwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/serverless_dumper_passwd.png -------------------------------------------------------------------------------- /imgs/slack_tarball_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/slack_tarball_dump.png -------------------------------------------------------------------------------- /imgs/ssrf_notify_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/ssrf_notify_get.png -------------------------------------------------------------------------------- /imgs/ssrf_notify_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/ssrf_notify_post.png -------------------------------------------------------------------------------- /imgs/xxeserver_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/xxeserver_data.png -------------------------------------------------------------------------------- /imgs/xxeserver_get_dtd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/imgs/xxeserver_get_dtd.png -------------------------------------------------------------------------------- /massdns/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .env 3 | *Dockerfile* 4 | node_modules 5 | -------------------------------------------------------------------------------- /massdns/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/massdns/Dockerfile -------------------------------------------------------------------------------- /massdns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/massdns/README.md -------------------------------------------------------------------------------- /massdns/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1 3 | } 4 | -------------------------------------------------------------------------------- /massdns/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/massdns/package.json -------------------------------------------------------------------------------- /massdns/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/massdns/server.js -------------------------------------------------------------------------------- /nmap_scan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/nmap_scan/Dockerfile -------------------------------------------------------------------------------- /nmap_scan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/nmap_scan/README.md -------------------------------------------------------------------------------- /nmap_scan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/nmap_scan/index.js -------------------------------------------------------------------------------- /nmap_scan/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1 3 | } 4 | -------------------------------------------------------------------------------- /nmap_scan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/nmap_scan/package-lock.json -------------------------------------------------------------------------------- /nmap_scan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/nmap_scan/package.json -------------------------------------------------------------------------------- /req_dump/.gitignore: -------------------------------------------------------------------------------- 1 | .now 2 | .vercel 3 | -------------------------------------------------------------------------------- /req_dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/req_dump/README.md -------------------------------------------------------------------------------- /req_dump/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/req_dump/index.js -------------------------------------------------------------------------------- /req_dump/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/req_dump/now.json -------------------------------------------------------------------------------- /req_dump/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/req_dump/package-lock.json -------------------------------------------------------------------------------- /req_dump/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/req_dump/package.json -------------------------------------------------------------------------------- /simple_redirect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/simple_redirect/README.md -------------------------------------------------------------------------------- /simple_redirect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/simple_redirect/index.js -------------------------------------------------------------------------------- /simple_redirect/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/simple_redirect/now.json -------------------------------------------------------------------------------- /simple_redirect/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/simple_redirect/package-lock.json -------------------------------------------------------------------------------- /simple_redirect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/simple_redirect/package.json -------------------------------------------------------------------------------- /ssrf_slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/ssrf_slack/README.md -------------------------------------------------------------------------------- /ssrf_slack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/ssrf_slack/index.js -------------------------------------------------------------------------------- /ssrf_slack/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/ssrf_slack/now.json -------------------------------------------------------------------------------- /ssrf_slack/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/ssrf_slack/package-lock.json -------------------------------------------------------------------------------- /ssrf_slack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/ssrf_slack/package.json -------------------------------------------------------------------------------- /static_example/.nowignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /static_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/static_example/README.md -------------------------------------------------------------------------------- /static_example/alert.js: -------------------------------------------------------------------------------- 1 | alert('xss2') 2 | -------------------------------------------------------------------------------- /static_example/external.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/static_example/external.dtd -------------------------------------------------------------------------------- /static_example/messagebox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/static_example/messagebox.ps1 -------------------------------------------------------------------------------- /webshell/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/webshell/Dockerfile -------------------------------------------------------------------------------- /webshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/webshell/README.md -------------------------------------------------------------------------------- /webshell/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1 3 | } 4 | -------------------------------------------------------------------------------- /webshell/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/webshell/run.sh -------------------------------------------------------------------------------- /xxe_server/.npmignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /xxe_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/README.md -------------------------------------------------------------------------------- /xxe_server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/index.js -------------------------------------------------------------------------------- /xxe_server/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/now.json -------------------------------------------------------------------------------- /xxe_server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/package-lock.json -------------------------------------------------------------------------------- /xxe_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/package.json -------------------------------------------------------------------------------- /xxe_server/templates/dtd.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/templates/dtd.hbs -------------------------------------------------------------------------------- /xxe_server/templates/dtd_php_file.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/templates/dtd_php_file.hbs -------------------------------------------------------------------------------- /xxe_server/templates/dtd_with_file.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropnop/serverless_toolkit/HEAD/xxe_server/templates/dtd_with_file.hbs --------------------------------------------------------------------------------