├── .env ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── pull_request_template.md └── workflows │ ├── autotag.yml │ └── build.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── campaigns ├── .gitignore ├── example │ ├── good-byes │ │ ├── docker-compose.yml │ │ └── meta.json │ ├── hell-ohs │ │ ├── docker-compose.yml │ │ └── meta.json │ └── meta.json └── miro │ ├── bearific │ ├── README.md │ ├── attacker │ │ ├── Dockerfile │ │ ├── bearific-ssh-attacker.py │ │ └── runner.sh │ ├── auto-solve.sh │ ├── auto-solve │ │ ├── autosolve-victim-root.sh │ │ └── autosolve-victim-user.sh │ ├── docker-compose.yml │ ├── meta.json │ └── victim │ │ └── Dockerfile │ ├── by-the-pool │ ├── README.md │ ├── auto-solve.sh │ ├── bread-forum │ │ ├── 2fa-patches │ │ │ ├── 2fa.patch │ │ │ └── phpbb-functions.patch │ │ ├── Dockerfile │ │ ├── attachments │ │ │ ├── flag.txt │ │ │ └── tx-confirmation.jpg │ │ ├── db-dump │ │ │ ├── phpbb_acl_groups.sql │ │ │ ├── phpbb_acl_options.sql │ │ │ ├── phpbb_acl_roles.sql │ │ │ ├── phpbb_acl_roles_data.sql │ │ │ ├── phpbb_acl_users.sql │ │ │ ├── phpbb_attachments.sql │ │ │ ├── phpbb_banlist.sql │ │ │ ├── phpbb_bbcodes.sql │ │ │ ├── phpbb_bookmarks.sql │ │ │ ├── phpbb_bots.sql │ │ │ ├── phpbb_config.sql │ │ │ ├── phpbb_config_text.sql │ │ │ ├── phpbb_confirm.sql │ │ │ ├── phpbb_disallow.sql │ │ │ ├── phpbb_drafts.sql │ │ │ ├── phpbb_ext.sql │ │ │ ├── phpbb_extension_groups.sql │ │ │ ├── phpbb_extensions.sql │ │ │ ├── phpbb_forums.sql │ │ │ ├── phpbb_forums_access.sql │ │ │ ├── phpbb_forums_track.sql │ │ │ ├── phpbb_forums_watch.sql │ │ │ ├── phpbb_groups.sql │ │ │ ├── phpbb_icons.sql │ │ │ ├── phpbb_lang.sql │ │ │ ├── phpbb_log.sql │ │ │ ├── phpbb_login_attempts.sql │ │ │ ├── phpbb_migrations.sql │ │ │ ├── phpbb_moderator_cache.sql │ │ │ ├── phpbb_modules.sql │ │ │ ├── phpbb_notification_emails.sql │ │ │ ├── phpbb_notification_types.sql │ │ │ ├── phpbb_notifications.sql │ │ │ ├── phpbb_oauth_accounts.sql │ │ │ ├── phpbb_oauth_states.sql │ │ │ ├── phpbb_oauth_tokens.sql │ │ │ ├── phpbb_poll_options.sql │ │ │ ├── phpbb_poll_votes.sql │ │ │ ├── phpbb_posts.sql │ │ │ ├── phpbb_privmsgs.sql │ │ │ ├── phpbb_privmsgs_folder.sql │ │ │ ├── phpbb_privmsgs_rules.sql │ │ │ ├── phpbb_privmsgs_to.sql │ │ │ ├── phpbb_profile_fields.sql │ │ │ ├── phpbb_profile_fields_data.sql │ │ │ ├── phpbb_profile_fields_lang.sql │ │ │ ├── phpbb_profile_lang.sql │ │ │ ├── phpbb_ranks.sql │ │ │ ├── phpbb_reports.sql │ │ │ ├── phpbb_reports_reasons.sql │ │ │ ├── phpbb_search_results.sql │ │ │ ├── phpbb_search_wordlist.sql │ │ │ ├── phpbb_search_wordmatch.sql │ │ │ ├── phpbb_sessions.sql │ │ │ ├── phpbb_sessions_keys.sql │ │ │ ├── phpbb_sitelist.sql │ │ │ ├── phpbb_smilies.sql │ │ │ ├── phpbb_styles.sql │ │ │ ├── phpbb_teampage.sql │ │ │ ├── phpbb_tfa_back_reg.sql │ │ │ ├── phpbb_tfa_otp_reg.sql │ │ │ ├── phpbb_tfa_registration.sql │ │ │ ├── phpbb_topics.sql │ │ │ ├── phpbb_topics_posted.sql │ │ │ ├── phpbb_topics_track.sql │ │ │ ├── phpbb_topics_watch.sql │ │ │ ├── phpbb_user_group.sql │ │ │ ├── phpbb_user_notifications.sql │ │ │ ├── phpbb_users.sql │ │ │ ├── phpbb_warnings.sql │ │ │ ├── phpbb_words.sql │ │ │ ├── phpbb_zebra.sql │ │ │ └── sqlite_sequence.sql │ │ └── phpbb-config.php │ ├── dns │ │ ├── Corefile │ │ ├── Dockerfile │ │ └── bread.db │ ├── docker-compose.yml │ └── meta.json │ ├── corporate-retreat │ ├── README.md │ ├── auto-solve.sh │ ├── camera │ │ ├── Dockerfile │ │ ├── delay.lua │ │ ├── fastcgi-responder │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── pages │ │ │ │ ├── admin.go │ │ │ │ ├── index.go │ │ │ │ ├── pages.go │ │ │ │ └── video.go │ │ │ └── responder.go │ │ ├── lighttpd-conf │ │ │ ├── 09-degrade-perf.conf │ │ │ ├── 14-rewrite.conf │ │ │ └── 20-fastcgi.conf │ │ ├── office.jpg │ │ ├── settings.json │ │ └── webroot │ │ │ ├── admin.js │ │ │ ├── index.html │ │ │ ├── refresh.js │ │ │ └── style.css │ ├── docker-compose.yml │ ├── locproxy │ │ ├── Dockerfile │ │ ├── init.sh │ │ └── web-proxy-2025-01-05.log │ ├── meta.json │ ├── off-prem-router1 │ │ ├── Dockerfile │ │ ├── init.sh │ │ └── poem.txt │ ├── public-facing-router2 │ │ ├── Dockerfile │ │ ├── init.sh │ │ └── ssh.log │ ├── record-system │ │ ├── Dockerfile │ │ └── index.php │ └── user-machine │ │ ├── Dockerfile │ │ └── init.sh │ ├── forgot-your-password │ ├── README.md │ ├── authus │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── example │ │ │ │ │ └── loginserver │ │ │ │ │ ├── AuthController.java │ │ │ │ │ ├── AuthDao.java │ │ │ │ │ ├── AuthService.java │ │ │ │ │ └── LoginServerApplication.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── additional-spring-configuration-metadata.json │ │ │ │ ├── application.properties │ │ │ │ ├── log4j2.xml │ │ │ │ └── templates │ │ │ │ └── form.html │ │ └── start.sh │ ├── auto-solve.sh │ ├── auto-solve │ │ ├── .gitignore │ │ ├── Exploit.java │ │ └── ldap-server │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ ├── LDAPRefServer.java │ │ │ ├── Launcher.java │ │ │ ├── PayloadHTTPServer.java │ │ │ └── Solver.java │ │ │ └── resources │ │ │ └── truncated-rockyou.txt │ ├── dashboardus │ │ ├── Dockerfile │ │ ├── app.js │ │ └── dashboard.html │ ├── db │ │ ├── 001-init-db.sql │ │ └── Dockerfile │ ├── docker-compose.yml │ ├── gatus │ │ ├── Dockerfile │ │ ├── nginx-default.conf │ │ └── privkey.pem │ ├── logus │ │ ├── Dockerfile │ │ ├── log.php │ │ ├── proxy2021-12-09.log │ │ └── rubbish-log-generator │ │ │ ├── dashboard-messages │ │ │ ├── log-randomizer.sh │ │ │ ├── mail-messages │ │ │ └── proxy-messages │ ├── mailus │ │ └── Dockerfile │ └── meta.json │ ├── knock-knock │ ├── README.md │ ├── auto-solve.sh │ ├── dashboard │ │ ├── Dockerfile │ │ └── htdocs │ │ │ ├── fs-inotify.log │ │ │ ├── index.php │ │ │ └── network.pcapng │ ├── docker-compose.yml │ └── meta.json │ ├── meme-jpeg │ ├── README.md │ ├── auto-solve.sh │ ├── chat │ │ ├── Dockerfile │ │ └── static │ │ │ ├── attachments │ │ │ └── c8edf7b6621df4bc6728f8642967530cec7ffcbcc0669353efd7c5f5211621ae.png │ │ │ ├── index.html │ │ │ ├── scripts.js │ │ │ └── style.css │ ├── docker-compose.yml │ └── meta.json │ ├── meta.json │ └── pages │ ├── miro-end.md │ └── miro-introduction.md ├── challenges ├── anyone-home │ ├── Dockerfile │ ├── README.md │ ├── attacker.py │ ├── auto-solve.sh │ ├── auto-solve │ │ └── telnet-honeypot.py │ ├── docker-compose.yml │ ├── key │ ├── key.pub │ ├── meta.json │ ├── payload.sh │ ├── sshd_config │ └── start.sh ├── come-this-way │ ├── README.md │ ├── auto-solve.sh │ ├── client │ │ ├── Dockerfile │ │ └── server.py │ ├── docker-compose.yml │ ├── meta.json │ └── server │ │ ├── Dockerfile │ │ ├── files │ │ ├── content.txt │ │ └── secret.txt │ │ └── vsftpd.conf ├── cybernet │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── meta.json │ └── server.py ├── famous-quotes-lfi │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── data │ │ └── quotes │ │ │ ├── asimov.txt │ │ │ ├── einstein.txt │ │ │ └── jobs.txt │ ├── docker-compose.yml │ ├── meta.json │ └── server.py ├── hello-world │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── index.html │ └── meta.json ├── intrusion │ ├── Dockerfile │ ├── README.md │ ├── attack.sh │ ├── auto-solve.sh │ ├── docker-compose.yml │ └── meta.json ├── jump-around │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── meta.json │ ├── proxy-hop │ │ ├── Dockerfile │ │ ├── danted.conf │ │ ├── sshd_config │ │ └── start.sh │ ├── saas-platform │ │ ├── Dockerfile │ │ └── server.py │ └── victim │ │ ├── Dockerfile │ │ ├── keep-connecting.sh │ │ └── sshd_config ├── leet-messenger │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── main.c │ ├── meta.json │ └── send.py ├── shockwave-report │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── httpd.conf │ ├── index.html │ ├── meta.json │ └── report.sh ├── template │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ └── meta.json ├── what-is-that-noise │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── meta.json │ └── server.py └── what-is-the-date │ ├── Dockerfile │ ├── README.md │ ├── auto-solve.sh │ ├── docker-compose.yml │ ├── index.html │ ├── meta.json │ └── server.py ├── classes ├── class01 │ └── meta.json ├── class02 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── meta.json │ └── start.sh ├── class03 │ ├── apache │ │ ├── Dockerfile │ │ ├── README.md │ │ └── httpd.conf │ ├── docker-compose.yml │ ├── meta.json │ └── ssh │ │ ├── Dockerfile │ │ └── sshd_config ├── class04 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── meta.json │ └── ssh-attack.sh ├── class05 │ └── meta.json ├── class06 │ ├── docker-compose.yml │ ├── meta.json │ └── ssh │ │ ├── Dockerfile │ │ └── sshd_config ├── class07 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── meta.json │ └── sshd_config ├── class08 │ ├── docker-compose.yml │ ├── exercise │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── main.c │ │ └── start.sh │ ├── exploit-lab │ │ ├── Dockerfile │ │ ├── files │ │ │ ├── demo0 │ │ │ │ ├── Makefile │ │ │ │ └── main.c │ │ │ ├── exercise │ │ │ │ ├── Makefile │ │ │ │ └── main.c │ │ │ ├── stack0 │ │ │ │ ├── Makefile │ │ │ │ └── main.c │ │ │ ├── stack1 │ │ │ │ ├── Makefile │ │ │ │ ├── exploit.py │ │ │ │ └── main.c │ │ │ ├── stack2 │ │ │ │ ├── Makefile │ │ │ │ ├── exploit.py │ │ │ │ └── main.c │ │ │ └── stack3 │ │ │ │ ├── Makefile │ │ │ │ ├── exploit.py │ │ │ │ └── main.c │ │ ├── seccomp-profile.json │ │ └── sshd_config │ └── meta.json ├── class09 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── files │ │ ├── first_example │ │ │ └── decoder_small.py │ │ ├── hello_world │ │ │ └── hello_world.c │ │ └── second_example │ │ │ ├── bomb_64 │ │ │ └── phase4.py │ ├── meta.json │ ├── seccomp-profile.json │ └── sshd_config ├── class10 │ ├── Dockerfile │ ├── Dockerfile.irc │ ├── docker-compose.yml │ ├── inspircd.conf │ ├── meta.json │ └── sshd_config ├── ignore-class11 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── files │ │ ├── class10-capture1.pcap │ │ ├── slips-alerts-sort-monitor.sh │ │ ├── slips-alerts-sort.sh │ │ └── training-capture-009.pcap │ ├── meta.json │ └── sshd_config ├── ignore-class12 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── files │ │ ├── .gitkeep │ │ └── net-log.json │ ├── meta.json │ ├── nginx │ │ ├── Dockerfile │ │ ├── jsonpub.html │ │ └── nginx.conf │ └── sshd_config ├── ignore-class13 │ ├── Dockerfile │ ├── docker-compose.yml │ ├── files │ │ ├── xmli-dos.xml │ │ └── xmli-payload.xml │ ├── meta.json │ ├── nginx │ │ ├── Dockerfile │ │ ├── hello.webp │ │ └── nginx.conf │ ├── sshd_config │ ├── ssrf-server │ │ ├── Dockerfile │ │ └── main.py │ └── xmli-server │ │ ├── Dockerfile │ │ ├── main.py │ │ ├── requirements.txt │ │ └── secret.txt └── ignore-class14 │ ├── Dockerfile │ ├── attacker │ ├── Dockerfile │ └── sshd_config │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── meta.json │ ├── ssh-server │ ├── Dockerfile │ ├── entrypoint.sh │ └── sshd_config │ └── sshd_config ├── dashboard ├── Dockerfile ├── client │ ├── .nvmrc │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── index.html │ │ └── media │ │ │ ├── icons │ │ │ ├── favicon-16x16.ico │ │ │ ├── favicon-32x32.ico │ │ │ ├── favicon-48x48.ico │ │ │ └── favicon-64x64.ico │ │ │ └── logo.png │ ├── rollup.config.js │ ├── serve.js │ └── src │ │ ├── App.svelte │ │ ├── AssistantLLM.svelte │ │ ├── ChallengeDetail.svelte │ │ ├── ClassDetail.svelte │ │ ├── ClassDoc.svelte │ │ ├── Dashboard.svelte │ │ ├── Introduction.svelte │ │ ├── LoadingOverlay.svelte │ │ ├── SideNavBar.svelte │ │ ├── Snowfall.svelte │ │ ├── Ssh.svelte │ │ ├── TipsAndTricks.svelte │ │ ├── TopNavBar.svelte │ │ ├── campaigns │ │ ├── CampaignDetail.svelte │ │ ├── CampaignStep.svelte │ │ └── CampaignStepList.svelte │ │ ├── components │ │ ├── CollapsibleSection.svelte │ │ ├── Modal.svelte │ │ └── VersionStatus.svelte │ │ ├── fetch.js │ │ ├── main.js │ │ ├── routing.js │ │ └── stores.js └── server │ ├── README.md │ ├── app.py │ ├── config.py │ ├── db.py │ ├── docker.py │ ├── llm.py │ ├── pyproject.toml │ ├── requirements-dev.txt │ ├── requirements.txt │ └── ws_ssh.py ├── docker-compose.yml ├── docs └── development.md ├── hackerlab ├── Dockerfile ├── config │ ├── aide.conf │ ├── banner │ └── sshd_config ├── data │ ├── SpectrePoc │ │ ├── Makefile │ │ └── spectre.c │ ├── timing-demo │ │ ├── client.py │ │ ├── requirements.txt │ │ └── server.py │ └── training-capture-001.pcap ├── proxy.py ├── start.sh └── tools │ └── tcpdump-colorize.pl └── run_tests.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.env -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/autotag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/workflows/autotag.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/README.md -------------------------------------------------------------------------------- /campaigns/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /campaigns/example/good-byes/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/example/good-byes/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/example/good-byes/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/example/good-byes/meta.json -------------------------------------------------------------------------------- /campaigns/example/hell-ohs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/example/hell-ohs/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/example/hell-ohs/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/example/hell-ohs/meta.json -------------------------------------------------------------------------------- /campaigns/example/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/example/meta.json -------------------------------------------------------------------------------- /campaigns/miro/bearific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/README.md -------------------------------------------------------------------------------- /campaigns/miro/bearific/attacker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/attacker/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/bearific/attacker/bearific-ssh-attacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/attacker/bearific-ssh-attacker.py -------------------------------------------------------------------------------- /campaigns/miro/bearific/attacker/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/attacker/runner.sh -------------------------------------------------------------------------------- /campaigns/miro/bearific/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/bearific/auto-solve/autosolve-victim-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/auto-solve/autosolve-victim-root.sh -------------------------------------------------------------------------------- /campaigns/miro/bearific/auto-solve/autosolve-victim-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/auto-solve/autosolve-victim-user.sh -------------------------------------------------------------------------------- /campaigns/miro/bearific/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/bearific/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/meta.json -------------------------------------------------------------------------------- /campaigns/miro/bearific/victim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/bearific/victim/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/README.md -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/2fa-patches/2fa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/2fa-patches/2fa.patch -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/2fa-patches/phpbb-functions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/2fa-patches/phpbb-functions.patch -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/attachments/flag.txt: -------------------------------------------------------------------------------- 1 | echo 'M1r0{H8c7zggiBtrXFJU7Ux3rvcHXBBtZMaPQN2LtylRIlImfK8xQ0AHsVQFymDZ1}' 2 | -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/attachments/tx-confirmation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/attachments/tx-confirmation.jpg -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_groups.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_options.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_roles.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_roles_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_roles_data.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_acl_users.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_attachments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_attachments.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_banlist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_banlist.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bbcodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bbcodes.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bookmarks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bookmarks.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bots.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_bots.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_config.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_config.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_config_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_config_text.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_confirm.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_confirm.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_disallow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_disallow.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_drafts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_drafts.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_ext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_ext.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_extension_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_extension_groups.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_extensions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_extensions.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_access.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_access.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_track.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_track.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_watch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_forums_watch.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_groups.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_icons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_icons.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_lang.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_log.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_login_attempts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_login_attempts.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_migrations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_migrations.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_moderator_cache.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_moderator_cache.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_modules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_modules.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notification_emails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notification_emails.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notification_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notification_types.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notifications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_notifications.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_accounts.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_states.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_states.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_tokens.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_oauth_tokens.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_poll_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_poll_options.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_poll_votes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_poll_votes.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_posts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_posts.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_folder.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_folder.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_rules.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_rules.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_to.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_privmsgs_to.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields_data.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_fields_lang.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_lang.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_profile_lang.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_ranks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_ranks.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_reports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_reports.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_reports_reasons.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_reports_reasons.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_results.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_results.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_wordlist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_wordlist.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_wordmatch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_search_wordmatch.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sessions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sessions.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sessions_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sessions_keys.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sitelist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_sitelist.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_smilies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_smilies.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_styles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_styles.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_teampage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_teampage.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_back_reg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_back_reg.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_otp_reg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_otp_reg.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_registration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_tfa_registration.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_posted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_posted.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_track.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_track.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_watch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_topics_watch.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_user_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_user_group.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_user_notifications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_user_notifications.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_users.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_warnings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_warnings.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_words.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_words.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_zebra.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/phpbb_zebra.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/db-dump/sqlite_sequence.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/db-dump/sqlite_sequence.sql -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/bread-forum/phpbb-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/bread-forum/phpbb-config.php -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/dns/Corefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/dns/Corefile -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/dns/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/dns/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/dns/bread.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/dns/bread.db -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/by-the-pool/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/by-the-pool/meta.json -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/README.md -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/delay.lua: -------------------------------------------------------------------------------- 1 | os.execute('sleep 1') 2 | return 0 3 | -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/go.mod -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/go.sum -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/admin.go -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/index.go -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/pages.go -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/pages/video.go -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/fastcgi-responder/responder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/fastcgi-responder/responder.go -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/lighttpd-conf/09-degrade-perf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/lighttpd-conf/09-degrade-perf.conf -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/lighttpd-conf/14-rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/lighttpd-conf/14-rewrite.conf -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/lighttpd-conf/20-fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/lighttpd-conf/20-fastcgi.conf -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/office.jpg -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Timezone": "GMT+8" 3 | } 4 | -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/webroot/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/webroot/admin.js -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/webroot/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/webroot/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/webroot/refresh.js -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/camera/webroot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/camera/webroot/style.css -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/locproxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/locproxy/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/locproxy/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/locproxy/init.sh -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/locproxy/web-proxy-2025-01-05.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/locproxy/web-proxy-2025-01-05.log -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/meta.json -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/off-prem-router1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/off-prem-router1/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/off-prem-router1/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/off-prem-router1/init.sh -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/off-prem-router1/poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/off-prem-router1/poem.txt -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/public-facing-router2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/public-facing-router2/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/public-facing-router2/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/public-facing-router2/init.sh -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/public-facing-router2/ssh.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/public-facing-router2/ssh.log -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/record-system/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/record-system/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/record-system/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/record-system/index.php -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/user-machine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/user-machine/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/corporate-retreat/user-machine/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/corporate-retreat/user-machine/init.sh -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/README.md -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/.gitignore -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/pom.xml -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthController.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthDao.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/AuthService.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/LoginServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/java/org/example/loginserver/LoginServerApplication.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/resources/META-INF/additional-spring-configuration-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/resources/META-INF/additional-spring-configuration-metadata.json -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/resources/application.properties -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/src/main/resources/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/src/main/resources/templates/form.html -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/authus/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/authus/start.sh -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/.gitignore: -------------------------------------------------------------------------------- 1 | **/target/ 2 | *.class 3 | -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/Exploit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/Exploit.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/pom.xml -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/LDAPRefServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/LDAPRefServer.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/Launcher.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/PayloadHTTPServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/PayloadHTTPServer.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/Solver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/java/Solver.java -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/resources/truncated-rockyou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/auto-solve/ldap-server/src/main/resources/truncated-rockyou.txt -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/dashboardus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/dashboardus/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/dashboardus/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/dashboardus/app.js -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/dashboardus/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/dashboardus/dashboard.html -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/db/001-init-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/db/001-init-db.sql -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/db/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/gatus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/gatus/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/gatus/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/gatus/nginx-default.conf -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/gatus/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/gatus/privkey.pem -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/log.php -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/proxy2021-12-09.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/proxy2021-12-09.log -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/rubbish-log-generator/dashboard-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/rubbish-log-generator/dashboard-messages -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/rubbish-log-generator/log-randomizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/rubbish-log-generator/log-randomizer.sh -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/rubbish-log-generator/mail-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/rubbish-log-generator/mail-messages -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/logus/rubbish-log-generator/proxy-messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/logus/rubbish-log-generator/proxy-messages -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/mailus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/mailus/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/forgot-your-password/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/forgot-your-password/meta.json -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/README.md -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/dashboard/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/dashboard/htdocs/fs-inotify.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/dashboard/htdocs/fs-inotify.log -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/dashboard/htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/dashboard/htdocs/index.php -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/dashboard/htdocs/network.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/dashboard/htdocs/network.pcapng -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/knock-knock/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/knock-knock/meta.json -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/README.md -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/auto-solve.sh -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/chat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/chat/Dockerfile -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/chat/static/attachments/c8edf7b6621df4bc6728f8642967530cec7ffcbcc0669353efd7c5f5211621ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/chat/static/attachments/c8edf7b6621df4bc6728f8642967530cec7ffcbcc0669353efd7c5f5211621ae.png -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/chat/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/chat/static/index.html -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/chat/static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/chat/static/scripts.js -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/chat/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/chat/static/style.css -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/docker-compose.yml -------------------------------------------------------------------------------- /campaigns/miro/meme-jpeg/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meme-jpeg/meta.json -------------------------------------------------------------------------------- /campaigns/miro/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/meta.json -------------------------------------------------------------------------------- /campaigns/miro/pages/miro-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/pages/miro-end.md -------------------------------------------------------------------------------- /campaigns/miro/pages/miro-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/campaigns/miro/pages/miro-introduction.md -------------------------------------------------------------------------------- /challenges/anyone-home/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/Dockerfile -------------------------------------------------------------------------------- /challenges/anyone-home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/README.md -------------------------------------------------------------------------------- /challenges/anyone-home/attacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/attacker.py -------------------------------------------------------------------------------- /challenges/anyone-home/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/auto-solve.sh -------------------------------------------------------------------------------- /challenges/anyone-home/auto-solve/telnet-honeypot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/auto-solve/telnet-honeypot.py -------------------------------------------------------------------------------- /challenges/anyone-home/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/docker-compose.yml -------------------------------------------------------------------------------- /challenges/anyone-home/key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/key -------------------------------------------------------------------------------- /challenges/anyone-home/key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/key.pub -------------------------------------------------------------------------------- /challenges/anyone-home/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/meta.json -------------------------------------------------------------------------------- /challenges/anyone-home/payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/payload.sh -------------------------------------------------------------------------------- /challenges/anyone-home/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/anyone-home/sshd_config -------------------------------------------------------------------------------- /challenges/anyone-home/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | /usr/sbin/sshd 6 | 7 | python3 attacker.py -------------------------------------------------------------------------------- /challenges/come-this-way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/README.md -------------------------------------------------------------------------------- /challenges/come-this-way/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/auto-solve.sh -------------------------------------------------------------------------------- /challenges/come-this-way/client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/client/Dockerfile -------------------------------------------------------------------------------- /challenges/come-this-way/client/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/client/server.py -------------------------------------------------------------------------------- /challenges/come-this-way/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/docker-compose.yml -------------------------------------------------------------------------------- /challenges/come-this-way/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/meta.json -------------------------------------------------------------------------------- /challenges/come-this-way/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/server/Dockerfile -------------------------------------------------------------------------------- /challenges/come-this-way/server/files/content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/server/files/content.txt -------------------------------------------------------------------------------- /challenges/come-this-way/server/files/secret.txt: -------------------------------------------------------------------------------- 1 | BSY{cO3G1COwygIapKOVVbR7AEWZ7kDRfaXy0GIEq2Ojr9lXoxnhIQ9IxlJk8ViO3Pws} -------------------------------------------------------------------------------- /challenges/come-this-way/server/vsftpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/come-this-way/server/vsftpd.conf -------------------------------------------------------------------------------- /challenges/cybernet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/Dockerfile -------------------------------------------------------------------------------- /challenges/cybernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/README.md -------------------------------------------------------------------------------- /challenges/cybernet/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/auto-solve.sh -------------------------------------------------------------------------------- /challenges/cybernet/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/docker-compose.yml -------------------------------------------------------------------------------- /challenges/cybernet/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/meta.json -------------------------------------------------------------------------------- /challenges/cybernet/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/cybernet/server.py -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/Dockerfile -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/README.md -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/auto-solve.sh -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/data/quotes/asimov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/data/quotes/asimov.txt -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/data/quotes/einstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/data/quotes/einstein.txt -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/data/quotes/jobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/data/quotes/jobs.txt -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/docker-compose.yml -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/meta.json -------------------------------------------------------------------------------- /challenges/famous-quotes-lfi/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/famous-quotes-lfi/server.py -------------------------------------------------------------------------------- /challenges/hello-world/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/Dockerfile -------------------------------------------------------------------------------- /challenges/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/README.md -------------------------------------------------------------------------------- /challenges/hello-world/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/auto-solve.sh -------------------------------------------------------------------------------- /challenges/hello-world/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/docker-compose.yml -------------------------------------------------------------------------------- /challenges/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/index.html -------------------------------------------------------------------------------- /challenges/hello-world/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/hello-world/meta.json -------------------------------------------------------------------------------- /challenges/intrusion/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/Dockerfile -------------------------------------------------------------------------------- /challenges/intrusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/README.md -------------------------------------------------------------------------------- /challenges/intrusion/attack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/attack.sh -------------------------------------------------------------------------------- /challenges/intrusion/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/auto-solve.sh -------------------------------------------------------------------------------- /challenges/intrusion/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/docker-compose.yml -------------------------------------------------------------------------------- /challenges/intrusion/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/intrusion/meta.json -------------------------------------------------------------------------------- /challenges/jump-around/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/README.md -------------------------------------------------------------------------------- /challenges/jump-around/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/auto-solve.sh -------------------------------------------------------------------------------- /challenges/jump-around/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/docker-compose.yml -------------------------------------------------------------------------------- /challenges/jump-around/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/meta.json -------------------------------------------------------------------------------- /challenges/jump-around/proxy-hop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/proxy-hop/Dockerfile -------------------------------------------------------------------------------- /challenges/jump-around/proxy-hop/danted.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/proxy-hop/danted.conf -------------------------------------------------------------------------------- /challenges/jump-around/proxy-hop/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/proxy-hop/sshd_config -------------------------------------------------------------------------------- /challenges/jump-around/proxy-hop/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/proxy-hop/start.sh -------------------------------------------------------------------------------- /challenges/jump-around/saas-platform/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/saas-platform/Dockerfile -------------------------------------------------------------------------------- /challenges/jump-around/saas-platform/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/saas-platform/server.py -------------------------------------------------------------------------------- /challenges/jump-around/victim/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/victim/Dockerfile -------------------------------------------------------------------------------- /challenges/jump-around/victim/keep-connecting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/victim/keep-connecting.sh -------------------------------------------------------------------------------- /challenges/jump-around/victim/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/jump-around/victim/sshd_config -------------------------------------------------------------------------------- /challenges/leet-messenger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/Dockerfile -------------------------------------------------------------------------------- /challenges/leet-messenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/README.md -------------------------------------------------------------------------------- /challenges/leet-messenger/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/auto-solve.sh -------------------------------------------------------------------------------- /challenges/leet-messenger/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/docker-compose.yml -------------------------------------------------------------------------------- /challenges/leet-messenger/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/main.c -------------------------------------------------------------------------------- /challenges/leet-messenger/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/meta.json -------------------------------------------------------------------------------- /challenges/leet-messenger/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/leet-messenger/send.py -------------------------------------------------------------------------------- /challenges/shockwave-report/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/Dockerfile -------------------------------------------------------------------------------- /challenges/shockwave-report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/README.md -------------------------------------------------------------------------------- /challenges/shockwave-report/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/auto-solve.sh -------------------------------------------------------------------------------- /challenges/shockwave-report/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/docker-compose.yml -------------------------------------------------------------------------------- /challenges/shockwave-report/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/httpd.conf -------------------------------------------------------------------------------- /challenges/shockwave-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/index.html -------------------------------------------------------------------------------- /challenges/shockwave-report/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/meta.json -------------------------------------------------------------------------------- /challenges/shockwave-report/report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/shockwave-report/report.sh -------------------------------------------------------------------------------- /challenges/template/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3-slim 2 | 3 | # TODO FILL -------------------------------------------------------------------------------- /challenges/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/template/README.md -------------------------------------------------------------------------------- /challenges/template/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/template/auto-solve.sh -------------------------------------------------------------------------------- /challenges/template/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/template/docker-compose.yml -------------------------------------------------------------------------------- /challenges/template/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/template/meta.json -------------------------------------------------------------------------------- /challenges/what-is-that-noise/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/Dockerfile -------------------------------------------------------------------------------- /challenges/what-is-that-noise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/README.md -------------------------------------------------------------------------------- /challenges/what-is-that-noise/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/auto-solve.sh -------------------------------------------------------------------------------- /challenges/what-is-that-noise/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/docker-compose.yml -------------------------------------------------------------------------------- /challenges/what-is-that-noise/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/meta.json -------------------------------------------------------------------------------- /challenges/what-is-that-noise/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-that-noise/server.py -------------------------------------------------------------------------------- /challenges/what-is-the-date/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/Dockerfile -------------------------------------------------------------------------------- /challenges/what-is-the-date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/README.md -------------------------------------------------------------------------------- /challenges/what-is-the-date/auto-solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/auto-solve.sh -------------------------------------------------------------------------------- /challenges/what-is-the-date/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/docker-compose.yml -------------------------------------------------------------------------------- /challenges/what-is-the-date/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/index.html -------------------------------------------------------------------------------- /challenges/what-is-the-date/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/meta.json -------------------------------------------------------------------------------- /challenges/what-is-the-date/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/challenges/what-is-the-date/server.py -------------------------------------------------------------------------------- /classes/class01/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class01/meta.json -------------------------------------------------------------------------------- /classes/class02/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class02/Dockerfile -------------------------------------------------------------------------------- /classes/class02/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class02/docker-compose.yml -------------------------------------------------------------------------------- /classes/class02/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class02/meta.json -------------------------------------------------------------------------------- /classes/class02/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class02/start.sh -------------------------------------------------------------------------------- /classes/class03/apache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/apache/Dockerfile -------------------------------------------------------------------------------- /classes/class03/apache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/apache/README.md -------------------------------------------------------------------------------- /classes/class03/apache/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/apache/httpd.conf -------------------------------------------------------------------------------- /classes/class03/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/docker-compose.yml -------------------------------------------------------------------------------- /classes/class03/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/meta.json -------------------------------------------------------------------------------- /classes/class03/ssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/ssh/Dockerfile -------------------------------------------------------------------------------- /classes/class03/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class03/ssh/sshd_config -------------------------------------------------------------------------------- /classes/class04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class04/Dockerfile -------------------------------------------------------------------------------- /classes/class04/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class04/docker-compose.yml -------------------------------------------------------------------------------- /classes/class04/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class04/meta.json -------------------------------------------------------------------------------- /classes/class04/ssh-attack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class04/ssh-attack.sh -------------------------------------------------------------------------------- /classes/class05/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class05/meta.json -------------------------------------------------------------------------------- /classes/class06/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class06/docker-compose.yml -------------------------------------------------------------------------------- /classes/class06/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class06/meta.json -------------------------------------------------------------------------------- /classes/class06/ssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class06/ssh/Dockerfile -------------------------------------------------------------------------------- /classes/class06/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class06/ssh/sshd_config -------------------------------------------------------------------------------- /classes/class07/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class07/Dockerfile -------------------------------------------------------------------------------- /classes/class07/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class07/docker-compose.yml -------------------------------------------------------------------------------- /classes/class07/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class07/meta.json -------------------------------------------------------------------------------- /classes/class07/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class07/sshd_config -------------------------------------------------------------------------------- /classes/class08/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/docker-compose.yml -------------------------------------------------------------------------------- /classes/class08/exercise/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exercise/Dockerfile -------------------------------------------------------------------------------- /classes/class08/exercise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exercise/Makefile -------------------------------------------------------------------------------- /classes/class08/exercise/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exercise/main.c -------------------------------------------------------------------------------- /classes/class08/exercise/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exercise/start.sh -------------------------------------------------------------------------------- /classes/class08/exploit-lab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/Dockerfile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/demo0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/demo0/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/demo0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/demo0/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/exercise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/exercise/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/exercise/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/exercise/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack0/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack0/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack1/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack1/exploit.py -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack1/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack2/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack2/exploit.py -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack2/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack3/Makefile -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack3/exploit.py -------------------------------------------------------------------------------- /classes/class08/exploit-lab/files/stack3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/files/stack3/main.c -------------------------------------------------------------------------------- /classes/class08/exploit-lab/seccomp-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/seccomp-profile.json -------------------------------------------------------------------------------- /classes/class08/exploit-lab/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/exploit-lab/sshd_config -------------------------------------------------------------------------------- /classes/class08/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class08/meta.json -------------------------------------------------------------------------------- /classes/class09/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/Dockerfile -------------------------------------------------------------------------------- /classes/class09/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/docker-compose.yml -------------------------------------------------------------------------------- /classes/class09/files/first_example/decoder_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/files/first_example/decoder_small.py -------------------------------------------------------------------------------- /classes/class09/files/hello_world/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/files/hello_world/hello_world.c -------------------------------------------------------------------------------- /classes/class09/files/second_example/bomb_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/files/second_example/bomb_64 -------------------------------------------------------------------------------- /classes/class09/files/second_example/phase4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/files/second_example/phase4.py -------------------------------------------------------------------------------- /classes/class09/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/meta.json -------------------------------------------------------------------------------- /classes/class09/seccomp-profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/seccomp-profile.json -------------------------------------------------------------------------------- /classes/class09/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class09/sshd_config -------------------------------------------------------------------------------- /classes/class10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/Dockerfile -------------------------------------------------------------------------------- /classes/class10/Dockerfile.irc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/Dockerfile.irc -------------------------------------------------------------------------------- /classes/class10/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/docker-compose.yml -------------------------------------------------------------------------------- /classes/class10/inspircd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/inspircd.conf -------------------------------------------------------------------------------- /classes/class10/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/meta.json -------------------------------------------------------------------------------- /classes/class10/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/class10/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class11/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/docker-compose.yml -------------------------------------------------------------------------------- /classes/ignore-class11/files/class10-capture1.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/files/class10-capture1.pcap -------------------------------------------------------------------------------- /classes/ignore-class11/files/slips-alerts-sort-monitor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | watch -d /data/slips-alerts-sort.sh -------------------------------------------------------------------------------- /classes/ignore-class11/files/slips-alerts-sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/files/slips-alerts-sort.sh -------------------------------------------------------------------------------- /classes/ignore-class11/files/training-capture-009.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/files/training-capture-009.pcap -------------------------------------------------------------------------------- /classes/ignore-class11/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/meta.json -------------------------------------------------------------------------------- /classes/ignore-class11/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class11/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class12/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/docker-compose.yml -------------------------------------------------------------------------------- /classes/ignore-class12/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classes/ignore-class12/files/net-log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/files/net-log.json -------------------------------------------------------------------------------- /classes/ignore-class12/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/meta.json -------------------------------------------------------------------------------- /classes/ignore-class12/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/nginx/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class12/nginx/jsonpub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/nginx/jsonpub.html -------------------------------------------------------------------------------- /classes/ignore-class12/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/nginx/nginx.conf -------------------------------------------------------------------------------- /classes/ignore-class12/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class12/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class13/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/docker-compose.yml -------------------------------------------------------------------------------- /classes/ignore-class13/files/xmli-dos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/files/xmli-dos.xml -------------------------------------------------------------------------------- /classes/ignore-class13/files/xmli-payload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/files/xmli-payload.xml -------------------------------------------------------------------------------- /classes/ignore-class13/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/meta.json -------------------------------------------------------------------------------- /classes/ignore-class13/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/nginx/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class13/nginx/hello.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/nginx/hello.webp -------------------------------------------------------------------------------- /classes/ignore-class13/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/nginx/nginx.conf -------------------------------------------------------------------------------- /classes/ignore-class13/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class13/ssrf-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/ssrf-server/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class13/ssrf-server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/ssrf-server/main.py -------------------------------------------------------------------------------- /classes/ignore-class13/xmli-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/xmli-server/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class13/xmli-server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class13/xmli-server/main.py -------------------------------------------------------------------------------- /classes/ignore-class13/xmli-server/requirements.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | -------------------------------------------------------------------------------- /classes/ignore-class13/xmli-server/secret.txt: -------------------------------------------------------------------------------- 1 | Hello World! You got me! 2 | -------------------------------------------------------------------------------- /classes/ignore-class14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class14/attacker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/attacker/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class14/attacker/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/attacker/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class14/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/docker-compose.yml -------------------------------------------------------------------------------- /classes/ignore-class14/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/entrypoint.sh -------------------------------------------------------------------------------- /classes/ignore-class14/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/meta.json -------------------------------------------------------------------------------- /classes/ignore-class14/ssh-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/ssh-server/Dockerfile -------------------------------------------------------------------------------- /classes/ignore-class14/ssh-server/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/ssh-server/entrypoint.sh -------------------------------------------------------------------------------- /classes/ignore-class14/ssh-server/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/ssh-server/sshd_config -------------------------------------------------------------------------------- /classes/ignore-class14/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/classes/ignore-class14/sshd_config -------------------------------------------------------------------------------- /dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/Dockerfile -------------------------------------------------------------------------------- /dashboard/client/.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /dashboard/client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/.prettierrc -------------------------------------------------------------------------------- /dashboard/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/README.md -------------------------------------------------------------------------------- /dashboard/client/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/eslint.config.mjs -------------------------------------------------------------------------------- /dashboard/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/package-lock.json -------------------------------------------------------------------------------- /dashboard/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/package.json -------------------------------------------------------------------------------- /dashboard/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/index.html -------------------------------------------------------------------------------- /dashboard/client/public/media/icons/favicon-16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/media/icons/favicon-16x16.ico -------------------------------------------------------------------------------- /dashboard/client/public/media/icons/favicon-32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/media/icons/favicon-32x32.ico -------------------------------------------------------------------------------- /dashboard/client/public/media/icons/favicon-48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/media/icons/favicon-48x48.ico -------------------------------------------------------------------------------- /dashboard/client/public/media/icons/favicon-64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/media/icons/favicon-64x64.ico -------------------------------------------------------------------------------- /dashboard/client/public/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/public/media/logo.png -------------------------------------------------------------------------------- /dashboard/client/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/rollup.config.js -------------------------------------------------------------------------------- /dashboard/client/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/serve.js -------------------------------------------------------------------------------- /dashboard/client/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/App.svelte -------------------------------------------------------------------------------- /dashboard/client/src/AssistantLLM.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/AssistantLLM.svelte -------------------------------------------------------------------------------- /dashboard/client/src/ChallengeDetail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/ChallengeDetail.svelte -------------------------------------------------------------------------------- /dashboard/client/src/ClassDetail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/ClassDetail.svelte -------------------------------------------------------------------------------- /dashboard/client/src/ClassDoc.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/ClassDoc.svelte -------------------------------------------------------------------------------- /dashboard/client/src/Dashboard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/Dashboard.svelte -------------------------------------------------------------------------------- /dashboard/client/src/Introduction.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/Introduction.svelte -------------------------------------------------------------------------------- /dashboard/client/src/LoadingOverlay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/LoadingOverlay.svelte -------------------------------------------------------------------------------- /dashboard/client/src/SideNavBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/SideNavBar.svelte -------------------------------------------------------------------------------- /dashboard/client/src/Snowfall.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/Snowfall.svelte -------------------------------------------------------------------------------- /dashboard/client/src/Ssh.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/Ssh.svelte -------------------------------------------------------------------------------- /dashboard/client/src/TipsAndTricks.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/TipsAndTricks.svelte -------------------------------------------------------------------------------- /dashboard/client/src/TopNavBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/TopNavBar.svelte -------------------------------------------------------------------------------- /dashboard/client/src/campaigns/CampaignDetail.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/campaigns/CampaignDetail.svelte -------------------------------------------------------------------------------- /dashboard/client/src/campaigns/CampaignStep.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/campaigns/CampaignStep.svelte -------------------------------------------------------------------------------- /dashboard/client/src/campaigns/CampaignStepList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/campaigns/CampaignStepList.svelte -------------------------------------------------------------------------------- /dashboard/client/src/components/CollapsibleSection.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/components/CollapsibleSection.svelte -------------------------------------------------------------------------------- /dashboard/client/src/components/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/components/Modal.svelte -------------------------------------------------------------------------------- /dashboard/client/src/components/VersionStatus.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/components/VersionStatus.svelte -------------------------------------------------------------------------------- /dashboard/client/src/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/fetch.js -------------------------------------------------------------------------------- /dashboard/client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/main.js -------------------------------------------------------------------------------- /dashboard/client/src/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/routing.js -------------------------------------------------------------------------------- /dashboard/client/src/stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/client/src/stores.js -------------------------------------------------------------------------------- /dashboard/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/README.md -------------------------------------------------------------------------------- /dashboard/server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/app.py -------------------------------------------------------------------------------- /dashboard/server/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/config.py -------------------------------------------------------------------------------- /dashboard/server/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/db.py -------------------------------------------------------------------------------- /dashboard/server/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/docker.py -------------------------------------------------------------------------------- /dashboard/server/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/llm.py -------------------------------------------------------------------------------- /dashboard/server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/pyproject.toml -------------------------------------------------------------------------------- /dashboard/server/requirements-dev.txt: -------------------------------------------------------------------------------- 1 | autopep8 2 | pylint 3 | -------------------------------------------------------------------------------- /dashboard/server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/requirements.txt -------------------------------------------------------------------------------- /dashboard/server/ws_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/dashboard/server/ws_ssh.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/docs/development.md -------------------------------------------------------------------------------- /hackerlab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/Dockerfile -------------------------------------------------------------------------------- /hackerlab/config/aide.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/config/aide.conf -------------------------------------------------------------------------------- /hackerlab/config/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/config/banner -------------------------------------------------------------------------------- /hackerlab/config/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/config/sshd_config -------------------------------------------------------------------------------- /hackerlab/data/SpectrePoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/data/SpectrePoc/Makefile -------------------------------------------------------------------------------- /hackerlab/data/SpectrePoc/spectre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/data/SpectrePoc/spectre.c -------------------------------------------------------------------------------- /hackerlab/data/timing-demo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/data/timing-demo/client.py -------------------------------------------------------------------------------- /hackerlab/data/timing-demo/requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn[standard] 3 | requests 4 | numpy -------------------------------------------------------------------------------- /hackerlab/data/timing-demo/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/data/timing-demo/server.py -------------------------------------------------------------------------------- /hackerlab/data/training-capture-001.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/data/training-capture-001.pcap -------------------------------------------------------------------------------- /hackerlab/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/proxy.py -------------------------------------------------------------------------------- /hackerlab/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rsyslogd 4 | 5 | /usr/sbin/sshd -D -------------------------------------------------------------------------------- /hackerlab/tools/tcpdump-colorize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/hackerlab/tools/tcpdump-colorize.pl -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/stratocyberlab/HEAD/run_tests.sh --------------------------------------------------------------------------------