├── .github ├── dependabot.yml └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── SUMMARY.md ├── book.toml ├── hackthebox ├── admirer │ ├── README.md │ ├── exploits │ │ ├── shutil_1.py │ │ └── shutil_2.py │ ├── files │ │ ├── contacts.txt │ │ ├── credentials.txt │ │ ├── dump.sql │ │ ├── html.tar.gz │ │ ├── mysql │ │ │ └── docker-compose.yml │ │ ├── pass.txt │ │ └── user.txt │ ├── ip │ ├── logs │ │ ├── gobuster_80_admindir_medium.log │ │ ├── gobuster_80_root_medium.log │ │ ├── gobuster_80_utilityscripts_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_admindir_contacts.png │ │ ├── 80_admindir_credentials.png │ │ ├── 80_admindir_forbidden.png │ │ ├── 80_adminer.png │ │ ├── 80_adminer_admin.png │ │ ├── 80_adminer_dump_adminerphp.png │ │ ├── 80_adminer_sqlcommand.png │ │ ├── 80_home.png │ │ └── 80_phpinfo.png ├── armageddon │ ├── README.md │ ├── exploits │ │ ├── newnewnew.snap │ │ └── poc.py │ ├── files │ │ ├── bruce_hash │ │ └── passwd │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── les.log │ │ ├── linpeash_brucetherealadmin.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_exploit_actual.png │ │ ├── 80_exploit_codeexecution.png │ │ ├── 80_exploit_script.png │ │ ├── 80_exploit_upload.png │ │ └── 80_home.png ├── bashed │ ├── README.md │ ├── ip │ ├── logs │ │ ├── gobuster.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ ├── screenshots │ │ ├── dir_listing_dev.png │ │ ├── phpbash.png │ │ └── phpbash_shell.png │ └── source │ │ ├── phpbash.php │ │ └── sendMail.php ├── beep │ ├── README.md │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ ├── nmap-tcp-1000.xml │ │ └── sslscan.log │ └── screenshots │ │ ├── elastix_home.png │ │ ├── vtiger_companylogo.png │ │ ├── vtiger_companylogo_burp.png │ │ ├── vtiger_companylogo_commandinjection.png │ │ ├── vtigercrm_home.png │ │ └── vtigercrm_lfi.png ├── blocky │ ├── README.md │ ├── files │ │ ├── BlockyCore.jar │ │ └── notch_hash │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_home.png │ │ ├── 80_phpmyadmin.png │ │ ├── 80_phpmyadmin_console.png │ │ ├── 80_plugins.png │ │ ├── 80_wiki.png │ │ └── 80_wp_users.png ├── blue │ ├── README.md │ ├── exploits │ │ └── perpetual_melancholy │ │ │ ├── Dockerfile │ │ │ ├── prep.sh │ │ │ └── requirements.txt │ ├── ip │ └── logs │ │ ├── nmap-all.gnmap │ │ ├── nmap-all.nmap │ │ ├── nmap-all.xml │ │ ├── nmap-services.gnmap │ │ ├── nmap-services.nmap │ │ └── nmap-services.xml ├── blunder │ ├── README.md │ ├── exploits │ │ ├── .htaccess │ │ ├── 48701.py │ │ ├── 48942.py │ │ ├── evil.png │ │ ├── pass.txt │ │ └── user.txt │ ├── files │ │ └── users.php │ ├── ip │ ├── logs │ │ ├── feroxbuster_80_root_default.log │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_wwwdata.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_bludit.png │ │ ├── 80_bludit_admin.png │ │ ├── 80_bludit_todo.png │ │ ├── 80_bludit_version.png │ │ └── 80_home.png ├── cronos │ ├── README.md │ ├── ip │ ├── logs │ │ ├── linpeas.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── cronos_admin_panel.png │ │ ├── cronos_home.png │ │ └── cronos_nettool.png ├── delivery │ ├── README.md │ ├── files │ │ ├── base_password │ │ └── root_hash │ ├── ip │ ├── logs │ │ ├── gobuster_8065_root_medium.log │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_maildeliverer.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ ├── nmap-all.gnmap │ │ ├── nmap-all.nmap │ │ └── nmap-all.xml │ └── screenshots │ │ ├── 8065_home.png │ │ ├── 8065_internal.png │ │ ├── 80_contact.png │ │ ├── 80_helpdesk_home.png │ │ ├── 80_helpdesk_ticket.png │ │ ├── 80_helpdesk_ticket_email.png │ │ ├── 80_helpdesk_ticket_view.png │ │ └── 80_home.png ├── devel │ ├── README.md │ ├── exploits │ │ ├── cmd.aspx │ │ ├── pywes │ │ │ ├── Dockerfile │ │ │ └── systeminfo │ │ └── rev.aspx │ ├── files │ │ ├── iisstart.htm │ │ ├── systeminfo │ │ └── welcome.png │ ├── ip │ ├── logs │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_home.png │ │ ├── 80_webshell_dir.png │ │ ├── 80_webshell_dosmode.png │ │ ├── 80_webshell_find_nc.png │ │ └── 80_webshell_ping.png ├── doctor │ ├── README.md │ ├── ip │ ├── logs │ │ ├── gobuster_80_doctors_medium.log │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_shaun.log │ │ ├── linpeas_web.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_doctors.png │ │ ├── 80_doctors_ssti_1.png │ │ ├── 80_doctors_ssti_2.png │ │ ├── 80_doctors_ssti_3.png │ │ ├── 80_home.png │ │ └── ssti_methodology.png ├── friendzone │ ├── README.md │ ├── exploits │ │ └── cmd.php │ ├── files │ │ └── creds.txt │ ├── ip │ ├── logs │ │ ├── enum4linux-ng.log │ │ ├── enum4linux.log │ │ ├── gobuster_443_root_medium.log │ │ ├── gobuster_80_root_medium.log │ │ ├── gobuster_admin_medium.log │ │ ├── linpeas_friend.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ ├── nmap-smb.gnmap │ │ ├── nmap-smb.nmap │ │ └── nmap-smb.xml │ └── screenshots │ │ ├── 443_admin.friendzoneportal.red.png │ │ ├── 443_admin.friendzoneportal.red_login.png │ │ ├── 443_administrator1.friendzone.red.png │ │ ├── 443_administrator1.friendzone.red_dashboard.png │ │ ├── 443_friendzone_hint.png │ │ ├── 443_friendzone_home.png │ │ ├── 443_friendzone_source.png │ │ ├── 443_friendzoneportal_home.png │ │ ├── 443_home.png │ │ ├── 443_uploads.friendzone.red.png │ │ ├── 80_home.png │ │ ├── 80_robots.png │ │ └── 80_wordpress.png ├── irked │ ├── README.md │ ├── files │ │ ├── irked.jpg │ │ └── pass.txt │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_djmardov.log │ │ ├── linpeas_ircd.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ ├── nmap-all.gnmap │ │ ├── nmap-all.nmap │ │ └── nmap-all.xml │ └── screenshots │ │ └── 80_home.png ├── jerry │ ├── README.md │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 8080_home.png │ │ ├── 8080_manager.png │ │ ├── 8080_manager_deploy.png │ │ └── 8080_manager_info.png ├── knife │ ├── README.md │ ├── exploits │ │ ├── 49933.py │ │ └── own_knife.py │ ├── files │ │ └── knife │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_curl.png │ │ └── 80_home.png ├── lame │ ├── README.md │ ├── ip │ └── logs │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml ├── legacy │ ├── README.md │ ├── exploits │ │ └── cattime │ │ │ ├── Dockerfile │ │ │ └── requirements.txt │ └── logs │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml ├── love │ ├── README.md │ ├── exploits │ │ ├── exploit.msi │ │ └── php_reverse_shell.php │ ├── files │ │ └── systeminfo │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ └── winpeas_phoebe.log │ └── screenshots │ │ ├── 443_cert.png │ │ ├── 443_forbidden.png │ │ ├── 80_admin.png │ │ ├── 80_admin_candidate.png │ │ ├── 80_admin_code_execution.png │ │ ├── 80_admin_file_upload.png │ │ ├── 80_admin_php_upload.png │ │ ├── 80_home.png │ │ ├── staging_demoapp.png │ │ ├── staging_demoapp_port5000.png │ │ ├── staging_demoapp_port80.png │ │ └── staging_home.png ├── networked │ ├── README.md │ ├── exploits │ │ └── hacktricks.php.png │ ├── files │ │ ├── backup.tar │ │ ├── changename.sh │ │ └── check_attack.php │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_backup.png │ │ ├── 80_code_execution.png │ │ ├── 80_home.png │ │ ├── 80_photos.png │ │ ├── 80_upload.png │ │ └── 80_uploaded_image.png ├── nibbles │ ├── README.md │ ├── exploits │ │ └── login.py │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_common.log │ │ ├── nmap-tcp-all.gnmap │ │ ├── nmap-tcp-all.nmap │ │ └── nmap-tcp-all.xml │ └── screenshots │ │ ├── nibbleblog.png │ │ ├── nibbleblog_blacklisted.png │ │ ├── nibbleblog_myimage.png │ │ ├── nibbleblog_update.png │ │ └── nibbleblog_version.png ├── nineveh │ ├── README.md │ ├── files │ │ ├── id_rsa │ │ ├── nineveh.png │ │ └── ninevehForAll.png │ ├── ip │ ├── logs │ │ ├── gobuster_443_root_medium.log │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_amrois.log │ │ ├── linpeas_wwwdata.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 443_db.png │ │ ├── 443_home.png │ │ ├── 443_phpliteadmin_new_table.png │ │ ├── 80_department.png │ │ ├── 80_department_lfi.png │ │ ├── 80_home.png │ │ └── 80_trigger_lfi.png ├── openadmin │ ├── README.md │ ├── exploits │ │ ├── 47691.sh │ │ ├── cmd.php │ │ └── ona.py │ ├── files │ │ ├── id_rsa │ │ └── id_rsa_hash │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_jimmy.log │ │ ├── linpeas_wwwdata.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_home.png │ │ ├── 80_internal.png │ │ ├── 80_internal_key.png │ │ ├── 80_music.png │ │ ├── 80_ona.png │ │ ├── 80_ona_burp.png │ │ └── 80_ona_codeexecution.png ├── ophiuchi │ ├── README.md │ ├── exploits │ │ ├── deploy.sh │ │ ├── main.wasm │ │ ├── rev.sh │ │ └── yaml-payload.jar │ ├── files │ │ ├── index.go │ │ ├── main.wasm │ │ └── tomcat-users.xml │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_admin.log │ │ ├── linpeas_tomcat.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 8080_error.png │ │ ├── 8080_home.png │ │ ├── 8080_stack.png │ │ ├── wasm2wat.png │ │ └── wat2wasm.png ├── paper │ ├── README.md │ ├── files │ │ └── passwd │ ├── ip │ ├── logs │ │ ├── linpeas.sh.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ ├── nmap-all.gnmap │ │ ├── nmap-all.nmap │ │ ├── nmap-all.xml │ │ └── office.paper_wpscan │ └── screenshots │ │ ├── 80_home.png │ │ ├── chat.office.paper_recyclops.png │ │ ├── chat.office.paper_registration.png │ │ ├── office.paper_comment.png │ │ └── office.paper_home.png ├── popcorn │ ├── README.md │ ├── exploits │ │ └── full-nelson.c │ ├── files │ │ ├── admin_hash │ │ ├── thumbnail.png │ │ └── ubuntu-20.04.2-live-server-amd64.iso.torrent │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── les.log │ │ ├── linpeas_wwwdata.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_home.png │ │ ├── 80_phpinfo.png │ │ ├── 80_torrent_codeexecution.png │ │ ├── 80_torrent_home.png │ │ ├── 80_torrent_upload.png │ │ └── 80_torrent_upload_burp.png ├── postman │ ├── README.md │ ├── files │ │ ├── matt │ │ │ ├── id_rsa │ │ │ └── id_rsa_hash │ │ └── redis │ │ │ ├── id_rsa │ │ │ ├── id_rsa.pub │ │ │ └── spaced_key.txt │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_Matt.log │ │ ├── linpeas_redis.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ ├── nmap-1000.xml │ │ ├── nmap-all.gnmap │ │ ├── nmap-all.nmap │ │ ├── nmap-all.xml │ │ └── redis_info.log │ └── screenshots │ │ ├── 10000_login.png │ │ ├── 10000_ssl_error.png │ │ ├── 10000_webmin.png │ │ └── 80_home.png ├── schooled │ ├── README.md │ ├── exploits │ │ ├── cve202014321.py │ │ └── x-1.0.txz │ ├── files │ │ ├── config.php │ │ ├── jamie_hash │ │ └── lianne_hash │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_wwwdata.log │ │ ├── linpes_jamie.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_home.png │ │ ├── 80_moodle_home.png │ │ ├── 80_schooled_announcement.png │ │ ├── 80_schooled_dns_leak.png │ │ ├── 80_schooled_manuel.png │ │ ├── 80_schooled_moodlenet_poc.png │ │ └── 80_schooled_rce.png ├── sense │ ├── README.md │ ├── ip │ ├── logs │ │ ├── gobuster_443_root_common.log │ │ ├── gobuster_443_root_medium.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 443_admin_panel.png │ │ ├── 443_home.png │ │ └── 443_pfsense_exploit.png ├── shocker │ ├── README.md │ ├── exploits │ │ └── 34900.py │ ├── ip │ ├── logs │ │ ├── gobuster_80_cgibin_dirbbig.log │ │ ├── gobuster_80_root_dirbbig.log │ │ ├── linpeas_shelly.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── burp_cookie.png │ │ ├── web.png │ │ └── web_forbidden.png ├── spectra │ ├── README.md │ ├── exploits │ │ ├── pressexec.zip │ │ └── pressexec │ │ │ └── pressexec.php │ ├── files │ │ └── autologin.conf │ ├── ip │ ├── logs │ │ ├── gobuster_80_main_medium.log │ │ ├── gobuster_80_testing_medium.log │ │ ├── linpeas_katie.log │ │ ├── linpeash_nginx.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_main.png │ │ ├── 80_main_admin_panel.png │ │ ├── 80_main_codeexecution.png │ │ ├── 80_main_plugin.png │ │ ├── 80_testing.png │ │ ├── 80_testing_config.png │ │ └── 80_testing_opendir.png ├── swagshop │ ├── README.md │ ├── exploits │ │ ├── 37811_mod.py │ │ └── 37977_mod.py │ ├── files │ │ └── local.xml │ ├── ip │ ├── logs │ │ ├── feroxbuster_80_root_default.log │ │ ├── magescan.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_admin_login.png │ │ ├── 80_admin_panel.png │ │ ├── 80_dns.png │ │ └── 80_home.png ├── tabby │ ├── README.md │ ├── exploits │ │ ├── cmd.war │ │ ├── cmdjsp.jsp │ │ └── rev.sh │ ├── files │ │ ├── backup_hash │ │ └── tomcat-users.xml │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_ash.log │ │ ├── linpeas_tomcat.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 8080_code_execution.png │ │ ├── 8080_home.png │ │ ├── 8080_manager.png │ │ ├── 8080_tomcat_users.png │ │ ├── 80_home.png │ │ ├── 80_lfi_passwd.png │ │ └── 80_news.png ├── thenotebook │ ├── README.md │ ├── exploits │ │ ├── cmd.php │ │ ├── jwt_helper │ │ │ ├── jwt_helper.py │ │ │ └── requirements.txt │ │ └── main.go │ ├── files │ │ ├── id_rsa │ │ └── privKey.key │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_wwwdata.log │ │ ├── linpeash_noah.log │ │ ├── nmap-tcp-1000.gnmap │ │ ├── nmap-tcp-1000.nmap │ │ └── nmap-tcp-1000.xml │ └── screenshots │ │ ├── 80_admin_panel.png │ │ ├── 80_code_execution.png │ │ ├── 80_cookie.png │ │ ├── 80_home.png │ │ ├── 80_notes.png │ │ └── 80_php_upload.png ├── valentine │ ├── README.md │ ├── files │ │ ├── hype_key │ │ ├── hype_key_enc │ │ ├── hype_key_hash │ │ ├── notes.txt │ │ └── omg.jpg │ ├── ip │ ├── logs │ │ ├── gobuster_80_root_medium.log │ │ ├── linpeas_hype.log │ │ ├── lse_hype.log │ │ ├── nmap-1000.gnmap │ │ ├── nmap-1000.nmap │ │ └── nmap-1000.xml │ └── screenshots │ │ ├── 80_decode.png │ │ ├── 80_dev.png │ │ ├── 80_home.png │ │ └── 80_notes.png └── writeup │ ├── README.md │ ├── exploits │ └── 46635.py │ ├── files │ └── jkr_hash │ ├── ip │ ├── logs │ ├── linpeas_jkr.log │ ├── nmap-tcp-1000.gnmap │ ├── nmap-tcp-1000.nmap │ └── nmap-tcp-1000.xml │ └── screenshots │ ├── 80_home.png │ ├── 80_robots.png │ ├── 80_writeup.png │ └── 80_writeup_cms.png ├── provinggrounds └── funboxeasy │ ├── README.md │ ├── exploits │ └── cmd.php │ ├── ip │ ├── logs │ ├── gobuster_80_raftmedium.log │ ├── gobuster_80_raftmedium_php.log │ ├── linpeas_tony.log │ ├── nmap-1000.gnmap │ ├── nmap-1000.nmap │ ├── nmap-1000.xml │ ├── nmap-all.gnmap │ ├── nmap-all.nmap │ └── nmap-all.xml │ └── screenshots │ ├── 80_home.png │ ├── 80_index.png │ ├── bookstore_admin.png │ ├── bookstore_admin_image_uploads.png │ ├── bookstore_admin_rce.png │ ├── bookstore_home.png │ └── crm_register_account.png └── scripts ├── data ├── htb_boxes.json ├── htb_oscp.json ├── pg_boxes.json └── pg_oscp.json ├── generate_readme.py ├── generate_summary.py ├── htb.py ├── pg.py ├── process_htb_boxes.py ├── process_pg_boxes.py └── start_machine.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/book.toml -------------------------------------------------------------------------------- /hackthebox/admirer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/README.md -------------------------------------------------------------------------------- /hackthebox/admirer/exploits/shutil_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/exploits/shutil_1.py -------------------------------------------------------------------------------- /hackthebox/admirer/exploits/shutil_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/exploits/shutil_2.py -------------------------------------------------------------------------------- /hackthebox/admirer/files/contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/contacts.txt -------------------------------------------------------------------------------- /hackthebox/admirer/files/credentials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/credentials.txt -------------------------------------------------------------------------------- /hackthebox/admirer/files/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/dump.sql -------------------------------------------------------------------------------- /hackthebox/admirer/files/html.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/html.tar.gz -------------------------------------------------------------------------------- /hackthebox/admirer/files/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/mysql/docker-compose.yml -------------------------------------------------------------------------------- /hackthebox/admirer/files/pass.txt: -------------------------------------------------------------------------------- 1 | fgJr6q#S\W:$P 2 | %n?4Wz}R$tTF7 3 | w0rdpr3ss01! 4 | ]F7jLHw:*G>UPrTo}~A"d6b 5 | Wh3r3_1s_w4ld0? 6 | & 7 | -------------------------------------------------------------------------------- /hackthebox/admirer/files/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/files/user.txt -------------------------------------------------------------------------------- /hackthebox/admirer/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/ip -------------------------------------------------------------------------------- /hackthebox/admirer/logs/gobuster_80_admindir_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/gobuster_80_admindir_medium.log -------------------------------------------------------------------------------- /hackthebox/admirer/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/admirer/logs/gobuster_80_utilityscripts_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/gobuster_80_utilityscripts_medium.log -------------------------------------------------------------------------------- /hackthebox/admirer/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/admirer/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/admirer/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_admindir_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_admindir_contacts.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_admindir_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_admindir_credentials.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_admindir_forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_admindir_forbidden.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_adminer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_adminer.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_adminer_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_adminer_admin.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_adminer_dump_adminerphp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_adminer_dump_adminerphp.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_adminer_sqlcommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_adminer_sqlcommand.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/admirer/screenshots/80_phpinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/admirer/screenshots/80_phpinfo.png -------------------------------------------------------------------------------- /hackthebox/armageddon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/README.md -------------------------------------------------------------------------------- /hackthebox/armageddon/exploits/newnewnew.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/exploits/newnewnew.snap -------------------------------------------------------------------------------- /hackthebox/armageddon/exploits/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/exploits/poc.py -------------------------------------------------------------------------------- /hackthebox/armageddon/files/bruce_hash: -------------------------------------------------------------------------------- 1 | $S$DgL2gjv6ZtxBo6CdqZEyJuBphBmrCqIV6W97.oOsUf1xAhaadURt 2 | -------------------------------------------------------------------------------- /hackthebox/armageddon/files/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/files/passwd -------------------------------------------------------------------------------- /hackthebox/armageddon/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/ip -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/les.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/les.log -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/linpeash_brucetherealadmin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/linpeash_brucetherealadmin.log -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/armageddon/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/armageddon/screenshots/80_exploit_actual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/screenshots/80_exploit_actual.png -------------------------------------------------------------------------------- /hackthebox/armageddon/screenshots/80_exploit_codeexecution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/screenshots/80_exploit_codeexecution.png -------------------------------------------------------------------------------- /hackthebox/armageddon/screenshots/80_exploit_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/screenshots/80_exploit_script.png -------------------------------------------------------------------------------- /hackthebox/armageddon/screenshots/80_exploit_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/screenshots/80_exploit_upload.png -------------------------------------------------------------------------------- /hackthebox/armageddon/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/armageddon/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/bashed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/README.md -------------------------------------------------------------------------------- /hackthebox/bashed/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/ip -------------------------------------------------------------------------------- /hackthebox/bashed/logs/gobuster.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/logs/gobuster.log -------------------------------------------------------------------------------- /hackthebox/bashed/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/bashed/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/bashed/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/bashed/screenshots/dir_listing_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/screenshots/dir_listing_dev.png -------------------------------------------------------------------------------- /hackthebox/bashed/screenshots/phpbash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/screenshots/phpbash.png -------------------------------------------------------------------------------- /hackthebox/bashed/screenshots/phpbash_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/screenshots/phpbash_shell.png -------------------------------------------------------------------------------- /hackthebox/bashed/source/phpbash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/source/phpbash.php -------------------------------------------------------------------------------- /hackthebox/bashed/source/sendMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/bashed/source/sendMail.php -------------------------------------------------------------------------------- /hackthebox/beep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/README.md -------------------------------------------------------------------------------- /hackthebox/beep/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/ip -------------------------------------------------------------------------------- /hackthebox/beep/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/beep/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/beep/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/beep/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/beep/logs/sslscan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/logs/sslscan.log -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/elastix_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/elastix_home.png -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/vtiger_companylogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/vtiger_companylogo.png -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/vtiger_companylogo_burp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/vtiger_companylogo_burp.png -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/vtiger_companylogo_commandinjection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/vtiger_companylogo_commandinjection.png -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/vtigercrm_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/vtigercrm_home.png -------------------------------------------------------------------------------- /hackthebox/beep/screenshots/vtigercrm_lfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/beep/screenshots/vtigercrm_lfi.png -------------------------------------------------------------------------------- /hackthebox/blocky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/README.md -------------------------------------------------------------------------------- /hackthebox/blocky/files/BlockyCore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/files/BlockyCore.jar -------------------------------------------------------------------------------- /hackthebox/blocky/files/notch_hash: -------------------------------------------------------------------------------- 1 | $P$BiVoTj899ItS1EZnMhqeqVbrZI4Oq0/ 2 | -------------------------------------------------------------------------------- /hackthebox/blocky/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/ip -------------------------------------------------------------------------------- /hackthebox/blocky/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/blocky/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/blocky/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/blocky/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_phpmyadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_phpmyadmin.png -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_phpmyadmin_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_phpmyadmin_console.png -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_plugins.png -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_wiki.png -------------------------------------------------------------------------------- /hackthebox/blocky/screenshots/80_wp_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blocky/screenshots/80_wp_users.png -------------------------------------------------------------------------------- /hackthebox/blue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/README.md -------------------------------------------------------------------------------- /hackthebox/blue/exploits/perpetual_melancholy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/exploits/perpetual_melancholy/Dockerfile -------------------------------------------------------------------------------- /hackthebox/blue/exploits/perpetual_melancholy/prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/exploits/perpetual_melancholy/prep.sh -------------------------------------------------------------------------------- /hackthebox/blue/exploits/perpetual_melancholy/requirements.txt: -------------------------------------------------------------------------------- 1 | impacket==0.9.23 2 | -------------------------------------------------------------------------------- /hackthebox/blue/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/ip -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-all.nmap -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-all.xml -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-services.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-services.gnmap -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-services.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-services.nmap -------------------------------------------------------------------------------- /hackthebox/blue/logs/nmap-services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blue/logs/nmap-services.xml -------------------------------------------------------------------------------- /hackthebox/blunder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/README.md -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine off 2 | AddType application/x-httpd-php .png 3 | -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/48701.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/exploits/48701.py -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/48942.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/exploits/48942.py -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/exploits/evil.png -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/pass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/exploits/pass.txt -------------------------------------------------------------------------------- /hackthebox/blunder/exploits/user.txt: -------------------------------------------------------------------------------- 1 | fergus -------------------------------------------------------------------------------- /hackthebox/blunder/files/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/files/users.php -------------------------------------------------------------------------------- /hackthebox/blunder/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/ip -------------------------------------------------------------------------------- /hackthebox/blunder/logs/feroxbuster_80_root_default.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/feroxbuster_80_root_default.log -------------------------------------------------------------------------------- /hackthebox/blunder/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/blunder/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/blunder/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/blunder/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/blunder/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/blunder/screenshots/80_bludit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/screenshots/80_bludit.png -------------------------------------------------------------------------------- /hackthebox/blunder/screenshots/80_bludit_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/screenshots/80_bludit_admin.png -------------------------------------------------------------------------------- /hackthebox/blunder/screenshots/80_bludit_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/screenshots/80_bludit_todo.png -------------------------------------------------------------------------------- /hackthebox/blunder/screenshots/80_bludit_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/screenshots/80_bludit_version.png -------------------------------------------------------------------------------- /hackthebox/blunder/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/blunder/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/cronos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/README.md -------------------------------------------------------------------------------- /hackthebox/cronos/ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackthebox/cronos/logs/linpeas.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/logs/linpeas.log -------------------------------------------------------------------------------- /hackthebox/cronos/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/cronos/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/cronos/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/cronos/screenshots/cronos_admin_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/screenshots/cronos_admin_panel.png -------------------------------------------------------------------------------- /hackthebox/cronos/screenshots/cronos_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/screenshots/cronos_home.png -------------------------------------------------------------------------------- /hackthebox/cronos/screenshots/cronos_nettool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/cronos/screenshots/cronos_nettool.png -------------------------------------------------------------------------------- /hackthebox/delivery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/README.md -------------------------------------------------------------------------------- /hackthebox/delivery/files/base_password: -------------------------------------------------------------------------------- 1 | PleaseSubscribe! 2 | -------------------------------------------------------------------------------- /hackthebox/delivery/files/root_hash: -------------------------------------------------------------------------------- 1 | root:$2a$10$VM6EeymRxJ29r8Wjkr8Dtev0O.1STWb4.4ScG.anuu7v0EFJwgjjO 2 | -------------------------------------------------------------------------------- /hackthebox/delivery/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/ip -------------------------------------------------------------------------------- /hackthebox/delivery/logs/gobuster_8065_root_medium.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackthebox/delivery/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/delivery/logs/linpeas_maildeliverer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/linpeas_maildeliverer.log -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-all.nmap -------------------------------------------------------------------------------- /hackthebox/delivery/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/logs/nmap-all.xml -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/8065_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/8065_home.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/8065_internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/8065_internal.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_contact.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_helpdesk_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_helpdesk_home.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_helpdesk_ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_helpdesk_ticket.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_helpdesk_ticket_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_helpdesk_ticket_email.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_helpdesk_ticket_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_helpdesk_ticket_view.png -------------------------------------------------------------------------------- /hackthebox/delivery/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/delivery/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/devel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/README.md -------------------------------------------------------------------------------- /hackthebox/devel/exploits/cmd.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/exploits/cmd.aspx -------------------------------------------------------------------------------- /hackthebox/devel/exploits/pywes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/exploits/pywes/Dockerfile -------------------------------------------------------------------------------- /hackthebox/devel/exploits/pywes/systeminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/exploits/pywes/systeminfo -------------------------------------------------------------------------------- /hackthebox/devel/exploits/rev.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/exploits/rev.aspx -------------------------------------------------------------------------------- /hackthebox/devel/files/iisstart.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/files/iisstart.htm -------------------------------------------------------------------------------- /hackthebox/devel/files/systeminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/files/systeminfo -------------------------------------------------------------------------------- /hackthebox/devel/files/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/files/welcome.png -------------------------------------------------------------------------------- /hackthebox/devel/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/ip -------------------------------------------------------------------------------- /hackthebox/devel/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/devel/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/devel/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/devel/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/devel/screenshots/80_webshell_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/screenshots/80_webshell_dir.png -------------------------------------------------------------------------------- /hackthebox/devel/screenshots/80_webshell_dosmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/screenshots/80_webshell_dosmode.png -------------------------------------------------------------------------------- /hackthebox/devel/screenshots/80_webshell_find_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/screenshots/80_webshell_find_nc.png -------------------------------------------------------------------------------- /hackthebox/devel/screenshots/80_webshell_ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/devel/screenshots/80_webshell_ping.png -------------------------------------------------------------------------------- /hackthebox/doctor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/README.md -------------------------------------------------------------------------------- /hackthebox/doctor/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/ip -------------------------------------------------------------------------------- /hackthebox/doctor/logs/gobuster_80_doctors_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/gobuster_80_doctors_medium.log -------------------------------------------------------------------------------- /hackthebox/doctor/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/doctor/logs/linpeas_shaun.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/linpeas_shaun.log -------------------------------------------------------------------------------- /hackthebox/doctor/logs/linpeas_web.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/linpeas_web.log -------------------------------------------------------------------------------- /hackthebox/doctor/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/doctor/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/doctor/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/80_doctors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/80_doctors.png -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/80_doctors_ssti_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/80_doctors_ssti_1.png -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/80_doctors_ssti_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/80_doctors_ssti_2.png -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/80_doctors_ssti_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/80_doctors_ssti_3.png -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/doctor/screenshots/ssti_methodology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/doctor/screenshots/ssti_methodology.png -------------------------------------------------------------------------------- /hackthebox/friendzone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/README.md -------------------------------------------------------------------------------- /hackthebox/friendzone/exploits/cmd.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hackthebox/friendzone/files/creds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/files/creds.txt -------------------------------------------------------------------------------- /hackthebox/friendzone/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/ip -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/enum4linux-ng.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/enum4linux-ng.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/enum4linux.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/enum4linux.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/gobuster_443_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/gobuster_443_root_medium.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/gobuster_admin_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/gobuster_admin_medium.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/linpeas_friend.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/linpeas_friend.log -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-smb.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-smb.gnmap -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-smb.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-smb.nmap -------------------------------------------------------------------------------- /hackthebox/friendzone/logs/nmap-smb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/logs/nmap-smb.xml -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_admin.friendzoneportal.red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_admin.friendzoneportal.red.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_admin.friendzoneportal.red_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_admin.friendzoneportal.red_login.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_administrator1.friendzone.red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_administrator1.friendzone.red.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_administrator1.friendzone.red_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_administrator1.friendzone.red_dashboard.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_friendzone_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_friendzone_hint.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_friendzone_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_friendzone_home.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_friendzone_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_friendzone_source.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_friendzoneportal_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_friendzoneportal_home.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_home.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/443_uploads.friendzone.red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/443_uploads.friendzone.red.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/80_robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/80_robots.png -------------------------------------------------------------------------------- /hackthebox/friendzone/screenshots/80_wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/friendzone/screenshots/80_wordpress.png -------------------------------------------------------------------------------- /hackthebox/irked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/README.md -------------------------------------------------------------------------------- /hackthebox/irked/files/irked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/files/irked.jpg -------------------------------------------------------------------------------- /hackthebox/irked/files/pass.txt: -------------------------------------------------------------------------------- 1 | Kab6h+m+bbp2J:HG 2 | -------------------------------------------------------------------------------- /hackthebox/irked/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/ip -------------------------------------------------------------------------------- /hackthebox/irked/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/irked/logs/linpeas_djmardov.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/linpeas_djmardov.log -------------------------------------------------------------------------------- /hackthebox/irked/logs/linpeas_ircd.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/linpeas_ircd.log -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-all.nmap -------------------------------------------------------------------------------- /hackthebox/irked/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/logs/nmap-all.xml -------------------------------------------------------------------------------- /hackthebox/irked/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/irked/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/jerry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/README.md -------------------------------------------------------------------------------- /hackthebox/jerry/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/ip -------------------------------------------------------------------------------- /hackthebox/jerry/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/jerry/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/jerry/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/jerry/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/jerry/screenshots/8080_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/screenshots/8080_home.png -------------------------------------------------------------------------------- /hackthebox/jerry/screenshots/8080_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/screenshots/8080_manager.png -------------------------------------------------------------------------------- /hackthebox/jerry/screenshots/8080_manager_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/screenshots/8080_manager_deploy.png -------------------------------------------------------------------------------- /hackthebox/jerry/screenshots/8080_manager_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/jerry/screenshots/8080_manager_info.png -------------------------------------------------------------------------------- /hackthebox/knife/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/README.md -------------------------------------------------------------------------------- /hackthebox/knife/exploits/49933.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/exploits/49933.py -------------------------------------------------------------------------------- /hackthebox/knife/exploits/own_knife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/exploits/own_knife.py -------------------------------------------------------------------------------- /hackthebox/knife/files/knife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/files/knife -------------------------------------------------------------------------------- /hackthebox/knife/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/ip -------------------------------------------------------------------------------- /hackthebox/knife/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/knife/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/knife/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/knife/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/knife/screenshots/80_curl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/screenshots/80_curl.png -------------------------------------------------------------------------------- /hackthebox/knife/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/knife/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/lame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/lame/README.md -------------------------------------------------------------------------------- /hackthebox/lame/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/lame/ip -------------------------------------------------------------------------------- /hackthebox/lame/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/lame/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/lame/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/lame/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/lame/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/lame/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/legacy/README.md -------------------------------------------------------------------------------- /hackthebox/legacy/exploits/cattime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/legacy/exploits/cattime/Dockerfile -------------------------------------------------------------------------------- /hackthebox/legacy/exploits/cattime/requirements.txt: -------------------------------------------------------------------------------- 1 | impacket==0.9.23 2 | -------------------------------------------------------------------------------- /hackthebox/legacy/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/legacy/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/legacy/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/legacy/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/legacy/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/legacy/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/love/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/README.md -------------------------------------------------------------------------------- /hackthebox/love/exploits/exploit.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/exploits/exploit.msi -------------------------------------------------------------------------------- /hackthebox/love/exploits/php_reverse_shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/exploits/php_reverse_shell.php -------------------------------------------------------------------------------- /hackthebox/love/files/systeminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/files/systeminfo -------------------------------------------------------------------------------- /hackthebox/love/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/ip -------------------------------------------------------------------------------- /hackthebox/love/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/love/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/love/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/love/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/love/logs/winpeas_phoebe.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/logs/winpeas_phoebe.log -------------------------------------------------------------------------------- /hackthebox/love/screenshots/443_cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/443_cert.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/443_forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/443_forbidden.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_admin.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_admin_candidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_admin_candidate.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_admin_code_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_admin_code_execution.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_admin_file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_admin_file_upload.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_admin_php_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_admin_php_upload.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/staging_demoapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/staging_demoapp.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/staging_demoapp_port5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/staging_demoapp_port5000.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/staging_demoapp_port80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/staging_demoapp_port80.png -------------------------------------------------------------------------------- /hackthebox/love/screenshots/staging_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/love/screenshots/staging_home.png -------------------------------------------------------------------------------- /hackthebox/networked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/README.md -------------------------------------------------------------------------------- /hackthebox/networked/exploits/hacktricks.php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/exploits/hacktricks.php.png -------------------------------------------------------------------------------- /hackthebox/networked/files/backup.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/files/backup.tar -------------------------------------------------------------------------------- /hackthebox/networked/files/changename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/files/changename.sh -------------------------------------------------------------------------------- /hackthebox/networked/files/check_attack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/files/check_attack.php -------------------------------------------------------------------------------- /hackthebox/networked/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/ip -------------------------------------------------------------------------------- /hackthebox/networked/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/networked/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/networked/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/networked/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_backup.png -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_code_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_code_execution.png -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_photos.png -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_upload.png -------------------------------------------------------------------------------- /hackthebox/networked/screenshots/80_uploaded_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/networked/screenshots/80_uploaded_image.png -------------------------------------------------------------------------------- /hackthebox/nibbles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/README.md -------------------------------------------------------------------------------- /hackthebox/nibbles/exploits/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/exploits/login.py -------------------------------------------------------------------------------- /hackthebox/nibbles/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/ip -------------------------------------------------------------------------------- /hackthebox/nibbles/logs/gobuster_80_root_common.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/logs/gobuster_80_root_common.log -------------------------------------------------------------------------------- /hackthebox/nibbles/logs/nmap-tcp-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/logs/nmap-tcp-all.gnmap -------------------------------------------------------------------------------- /hackthebox/nibbles/logs/nmap-tcp-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/logs/nmap-tcp-all.nmap -------------------------------------------------------------------------------- /hackthebox/nibbles/logs/nmap-tcp-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/logs/nmap-tcp-all.xml -------------------------------------------------------------------------------- /hackthebox/nibbles/screenshots/nibbleblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/screenshots/nibbleblog.png -------------------------------------------------------------------------------- /hackthebox/nibbles/screenshots/nibbleblog_blacklisted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/screenshots/nibbleblog_blacklisted.png -------------------------------------------------------------------------------- /hackthebox/nibbles/screenshots/nibbleblog_myimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/screenshots/nibbleblog_myimage.png -------------------------------------------------------------------------------- /hackthebox/nibbles/screenshots/nibbleblog_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/screenshots/nibbleblog_update.png -------------------------------------------------------------------------------- /hackthebox/nibbles/screenshots/nibbleblog_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nibbles/screenshots/nibbleblog_version.png -------------------------------------------------------------------------------- /hackthebox/nineveh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/README.md -------------------------------------------------------------------------------- /hackthebox/nineveh/files/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/files/id_rsa -------------------------------------------------------------------------------- /hackthebox/nineveh/files/nineveh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/files/nineveh.png -------------------------------------------------------------------------------- /hackthebox/nineveh/files/ninevehForAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/files/ninevehForAll.png -------------------------------------------------------------------------------- /hackthebox/nineveh/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/ip -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/gobuster_443_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/gobuster_443_root_medium.log -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/linpeas_amrois.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/linpeas_amrois.log -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/nineveh/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/443_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/443_db.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/443_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/443_home.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/443_phpliteadmin_new_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/443_phpliteadmin_new_table.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/80_department.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/80_department.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/80_department_lfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/80_department_lfi.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/nineveh/screenshots/80_trigger_lfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/nineveh/screenshots/80_trigger_lfi.png -------------------------------------------------------------------------------- /hackthebox/openadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/README.md -------------------------------------------------------------------------------- /hackthebox/openadmin/exploits/47691.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/exploits/47691.sh -------------------------------------------------------------------------------- /hackthebox/openadmin/exploits/cmd.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hackthebox/openadmin/exploits/ona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/exploits/ona.py -------------------------------------------------------------------------------- /hackthebox/openadmin/files/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/files/id_rsa -------------------------------------------------------------------------------- /hackthebox/openadmin/files/id_rsa_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/files/id_rsa_hash -------------------------------------------------------------------------------- /hackthebox/openadmin/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/ip -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/linpeas_jimmy.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/linpeas_jimmy.log -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/openadmin/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_internal.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_internal_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_internal_key.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_music.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_ona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_ona.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_ona_burp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_ona_burp.png -------------------------------------------------------------------------------- /hackthebox/openadmin/screenshots/80_ona_codeexecution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/openadmin/screenshots/80_ona_codeexecution.png -------------------------------------------------------------------------------- /hackthebox/ophiuchi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/README.md -------------------------------------------------------------------------------- /hackthebox/ophiuchi/exploits/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/exploits/deploy.sh -------------------------------------------------------------------------------- /hackthebox/ophiuchi/exploits/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/exploits/main.wasm -------------------------------------------------------------------------------- /hackthebox/ophiuchi/exploits/rev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/exploits/rev.sh -------------------------------------------------------------------------------- /hackthebox/ophiuchi/exploits/yaml-payload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/exploits/yaml-payload.jar -------------------------------------------------------------------------------- /hackthebox/ophiuchi/files/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/files/index.go -------------------------------------------------------------------------------- /hackthebox/ophiuchi/files/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/files/main.wasm -------------------------------------------------------------------------------- /hackthebox/ophiuchi/files/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/files/tomcat-users.xml -------------------------------------------------------------------------------- /hackthebox/ophiuchi/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/ip -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/linpeas_admin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/linpeas_admin.log -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/linpeas_tomcat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/linpeas_tomcat.log -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/ophiuchi/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/ophiuchi/screenshots/8080_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/screenshots/8080_error.png -------------------------------------------------------------------------------- /hackthebox/ophiuchi/screenshots/8080_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/screenshots/8080_home.png -------------------------------------------------------------------------------- /hackthebox/ophiuchi/screenshots/8080_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/screenshots/8080_stack.png -------------------------------------------------------------------------------- /hackthebox/ophiuchi/screenshots/wasm2wat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/screenshots/wasm2wat.png -------------------------------------------------------------------------------- /hackthebox/ophiuchi/screenshots/wat2wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/ophiuchi/screenshots/wat2wasm.png -------------------------------------------------------------------------------- /hackthebox/paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/README.md -------------------------------------------------------------------------------- /hackthebox/paper/files/passwd: -------------------------------------------------------------------------------- 1 | dwight:Queenofblad3s!23 2 | -------------------------------------------------------------------------------- /hackthebox/paper/ip: -------------------------------------------------------------------------------- 1 | 10.10.11.143 -------------------------------------------------------------------------------- /hackthebox/paper/logs/linpeas.sh.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/linpeas.sh.log -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-all.nmap -------------------------------------------------------------------------------- /hackthebox/paper/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/nmap-all.xml -------------------------------------------------------------------------------- /hackthebox/paper/logs/office.paper_wpscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/logs/office.paper_wpscan -------------------------------------------------------------------------------- /hackthebox/paper/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/paper/screenshots/chat.office.paper_recyclops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/screenshots/chat.office.paper_recyclops.png -------------------------------------------------------------------------------- /hackthebox/paper/screenshots/chat.office.paper_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/screenshots/chat.office.paper_registration.png -------------------------------------------------------------------------------- /hackthebox/paper/screenshots/office.paper_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/screenshots/office.paper_comment.png -------------------------------------------------------------------------------- /hackthebox/paper/screenshots/office.paper_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/paper/screenshots/office.paper_home.png -------------------------------------------------------------------------------- /hackthebox/popcorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/README.md -------------------------------------------------------------------------------- /hackthebox/popcorn/exploits/full-nelson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/exploits/full-nelson.c -------------------------------------------------------------------------------- /hackthebox/popcorn/files/admin_hash: -------------------------------------------------------------------------------- 1 | d5bfedcee289e5e05b86daad8ee3e2e2 2 | -------------------------------------------------------------------------------- /hackthebox/popcorn/files/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/files/thumbnail.png -------------------------------------------------------------------------------- /hackthebox/popcorn/files/ubuntu-20.04.2-live-server-amd64.iso.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/files/ubuntu-20.04.2-live-server-amd64.iso.torrent -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/les.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/les.log -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/popcorn/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_phpinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_phpinfo.png -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_torrent_codeexecution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_torrent_codeexecution.png -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_torrent_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_torrent_home.png -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_torrent_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_torrent_upload.png -------------------------------------------------------------------------------- /hackthebox/popcorn/screenshots/80_torrent_upload_burp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/popcorn/screenshots/80_torrent_upload_burp.png -------------------------------------------------------------------------------- /hackthebox/postman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/README.md -------------------------------------------------------------------------------- /hackthebox/postman/files/matt/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/files/matt/id_rsa -------------------------------------------------------------------------------- /hackthebox/postman/files/matt/id_rsa_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/files/matt/id_rsa_hash -------------------------------------------------------------------------------- /hackthebox/postman/files/redis/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/files/redis/id_rsa -------------------------------------------------------------------------------- /hackthebox/postman/files/redis/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/files/redis/id_rsa.pub -------------------------------------------------------------------------------- /hackthebox/postman/files/redis/spaced_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/files/redis/spaced_key.txt -------------------------------------------------------------------------------- /hackthebox/postman/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/ip -------------------------------------------------------------------------------- /hackthebox/postman/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/postman/logs/linpeas_Matt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/linpeas_Matt.log -------------------------------------------------------------------------------- /hackthebox/postman/logs/linpeas_redis.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/linpeas_redis.log -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-all.nmap -------------------------------------------------------------------------------- /hackthebox/postman/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/nmap-all.xml -------------------------------------------------------------------------------- /hackthebox/postman/logs/redis_info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/logs/redis_info.log -------------------------------------------------------------------------------- /hackthebox/postman/screenshots/10000_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/screenshots/10000_login.png -------------------------------------------------------------------------------- /hackthebox/postman/screenshots/10000_ssl_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/screenshots/10000_ssl_error.png -------------------------------------------------------------------------------- /hackthebox/postman/screenshots/10000_webmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/screenshots/10000_webmin.png -------------------------------------------------------------------------------- /hackthebox/postman/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/postman/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/schooled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/README.md -------------------------------------------------------------------------------- /hackthebox/schooled/exploits/cve202014321.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/exploits/cve202014321.py -------------------------------------------------------------------------------- /hackthebox/schooled/exploits/x-1.0.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/exploits/x-1.0.txz -------------------------------------------------------------------------------- /hackthebox/schooled/files/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/files/config.php -------------------------------------------------------------------------------- /hackthebox/schooled/files/jamie_hash: -------------------------------------------------------------------------------- 1 | $2y$10$3D/gznFHdpV6PXt1cLPhX.ViTgs87DCE5KqphQhGYR5GFbcl4qTiW 2 | -------------------------------------------------------------------------------- /hackthebox/schooled/files/lianne_hash: -------------------------------------------------------------------------------- 1 | $2y$10$jw.KgN/SIpG2MAKvW8qdiub67JD7STqIER1VeRvAH4fs/DPF57JZe 2 | -------------------------------------------------------------------------------- /hackthebox/schooled/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/ip -------------------------------------------------------------------------------- /hackthebox/schooled/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/schooled/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/schooled/logs/linpes_jamie.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/linpes_jamie.log -------------------------------------------------------------------------------- /hackthebox/schooled/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/schooled/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/schooled/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_moodle_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_moodle_home.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_schooled_announcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_schooled_announcement.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_schooled_dns_leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_schooled_dns_leak.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_schooled_manuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_schooled_manuel.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_schooled_moodlenet_poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_schooled_moodlenet_poc.png -------------------------------------------------------------------------------- /hackthebox/schooled/screenshots/80_schooled_rce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/schooled/screenshots/80_schooled_rce.png -------------------------------------------------------------------------------- /hackthebox/sense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/README.md -------------------------------------------------------------------------------- /hackthebox/sense/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/ip -------------------------------------------------------------------------------- /hackthebox/sense/logs/gobuster_443_root_common.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/logs/gobuster_443_root_common.log -------------------------------------------------------------------------------- /hackthebox/sense/logs/gobuster_443_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/logs/gobuster_443_root_medium.log -------------------------------------------------------------------------------- /hackthebox/sense/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/sense/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/sense/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/sense/screenshots/443_admin_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/screenshots/443_admin_panel.png -------------------------------------------------------------------------------- /hackthebox/sense/screenshots/443_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/screenshots/443_home.png -------------------------------------------------------------------------------- /hackthebox/sense/screenshots/443_pfsense_exploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/sense/screenshots/443_pfsense_exploit.png -------------------------------------------------------------------------------- /hackthebox/shocker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/README.md -------------------------------------------------------------------------------- /hackthebox/shocker/exploits/34900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/exploits/34900.py -------------------------------------------------------------------------------- /hackthebox/shocker/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/ip -------------------------------------------------------------------------------- /hackthebox/shocker/logs/gobuster_80_cgibin_dirbbig.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/gobuster_80_cgibin_dirbbig.log -------------------------------------------------------------------------------- /hackthebox/shocker/logs/gobuster_80_root_dirbbig.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/gobuster_80_root_dirbbig.log -------------------------------------------------------------------------------- /hackthebox/shocker/logs/linpeas_shelly.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/linpeas_shelly.log -------------------------------------------------------------------------------- /hackthebox/shocker/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/shocker/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/shocker/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/shocker/screenshots/burp_cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/screenshots/burp_cookie.png -------------------------------------------------------------------------------- /hackthebox/shocker/screenshots/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/screenshots/web.png -------------------------------------------------------------------------------- /hackthebox/shocker/screenshots/web_forbidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/shocker/screenshots/web_forbidden.png -------------------------------------------------------------------------------- /hackthebox/spectra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/README.md -------------------------------------------------------------------------------- /hackthebox/spectra/exploits/pressexec.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/exploits/pressexec.zip -------------------------------------------------------------------------------- /hackthebox/spectra/exploits/pressexec/pressexec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/exploits/pressexec/pressexec.php -------------------------------------------------------------------------------- /hackthebox/spectra/files/autologin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/files/autologin.conf -------------------------------------------------------------------------------- /hackthebox/spectra/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/ip -------------------------------------------------------------------------------- /hackthebox/spectra/logs/gobuster_80_main_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/gobuster_80_main_medium.log -------------------------------------------------------------------------------- /hackthebox/spectra/logs/gobuster_80_testing_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/gobuster_80_testing_medium.log -------------------------------------------------------------------------------- /hackthebox/spectra/logs/linpeas_katie.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/linpeas_katie.log -------------------------------------------------------------------------------- /hackthebox/spectra/logs/linpeash_nginx.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/linpeash_nginx.log -------------------------------------------------------------------------------- /hackthebox/spectra/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/spectra/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/spectra/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_main.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_main_admin_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_main_admin_panel.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_main_codeexecution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_main_codeexecution.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_main_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_main_plugin.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_testing.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_testing_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_testing_config.png -------------------------------------------------------------------------------- /hackthebox/spectra/screenshots/80_testing_opendir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/spectra/screenshots/80_testing_opendir.png -------------------------------------------------------------------------------- /hackthebox/swagshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/README.md -------------------------------------------------------------------------------- /hackthebox/swagshop/exploits/37811_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/exploits/37811_mod.py -------------------------------------------------------------------------------- /hackthebox/swagshop/exploits/37977_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/exploits/37977_mod.py -------------------------------------------------------------------------------- /hackthebox/swagshop/files/local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/files/local.xml -------------------------------------------------------------------------------- /hackthebox/swagshop/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/ip -------------------------------------------------------------------------------- /hackthebox/swagshop/logs/feroxbuster_80_root_default.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/logs/feroxbuster_80_root_default.log -------------------------------------------------------------------------------- /hackthebox/swagshop/logs/magescan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/logs/magescan.log -------------------------------------------------------------------------------- /hackthebox/swagshop/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/swagshop/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/swagshop/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/swagshop/screenshots/80_admin_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/screenshots/80_admin_login.png -------------------------------------------------------------------------------- /hackthebox/swagshop/screenshots/80_admin_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/screenshots/80_admin_panel.png -------------------------------------------------------------------------------- /hackthebox/swagshop/screenshots/80_dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/screenshots/80_dns.png -------------------------------------------------------------------------------- /hackthebox/swagshop/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/swagshop/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/tabby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/README.md -------------------------------------------------------------------------------- /hackthebox/tabby/exploits/cmd.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/exploits/cmd.war -------------------------------------------------------------------------------- /hackthebox/tabby/exploits/cmdjsp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/exploits/cmdjsp.jsp -------------------------------------------------------------------------------- /hackthebox/tabby/exploits/rev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/exploits/rev.sh -------------------------------------------------------------------------------- /hackthebox/tabby/files/backup_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/files/backup_hash -------------------------------------------------------------------------------- /hackthebox/tabby/files/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/files/tomcat-users.xml -------------------------------------------------------------------------------- /hackthebox/tabby/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/ip -------------------------------------------------------------------------------- /hackthebox/tabby/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/tabby/logs/linpeas_ash.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/linpeas_ash.log -------------------------------------------------------------------------------- /hackthebox/tabby/logs/linpeas_tomcat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/linpeas_tomcat.log -------------------------------------------------------------------------------- /hackthebox/tabby/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/tabby/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/tabby/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/8080_code_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/8080_code_execution.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/8080_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/8080_home.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/8080_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/8080_manager.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/8080_tomcat_users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/8080_tomcat_users.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/80_lfi_passwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/80_lfi_passwd.png -------------------------------------------------------------------------------- /hackthebox/tabby/screenshots/80_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/tabby/screenshots/80_news.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/README.md -------------------------------------------------------------------------------- /hackthebox/thenotebook/exploits/cmd.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hackthebox/thenotebook/exploits/jwt_helper/jwt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/exploits/jwt_helper/jwt_helper.py -------------------------------------------------------------------------------- /hackthebox/thenotebook/exploits/jwt_helper/requirements.txt: -------------------------------------------------------------------------------- 1 | PyJWT==2.1.0 2 | -------------------------------------------------------------------------------- /hackthebox/thenotebook/exploits/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/exploits/main.go -------------------------------------------------------------------------------- /hackthebox/thenotebook/files/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/files/id_rsa -------------------------------------------------------------------------------- /hackthebox/thenotebook/files/privKey.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/files/privKey.key -------------------------------------------------------------------------------- /hackthebox/thenotebook/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/ip -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/linpeas_wwwdata.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/linpeas_wwwdata.log -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/linpeash_noah.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/linpeash_noah.log -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/thenotebook/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_admin_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_admin_panel.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_code_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_code_execution.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_cookie.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_notes.png -------------------------------------------------------------------------------- /hackthebox/thenotebook/screenshots/80_php_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/thenotebook/screenshots/80_php_upload.png -------------------------------------------------------------------------------- /hackthebox/valentine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/README.md -------------------------------------------------------------------------------- /hackthebox/valentine/files/hype_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/files/hype_key -------------------------------------------------------------------------------- /hackthebox/valentine/files/hype_key_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/files/hype_key_enc -------------------------------------------------------------------------------- /hackthebox/valentine/files/hype_key_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/files/hype_key_hash -------------------------------------------------------------------------------- /hackthebox/valentine/files/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/files/notes.txt -------------------------------------------------------------------------------- /hackthebox/valentine/files/omg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/files/omg.jpg -------------------------------------------------------------------------------- /hackthebox/valentine/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/ip -------------------------------------------------------------------------------- /hackthebox/valentine/logs/gobuster_80_root_medium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/gobuster_80_root_medium.log -------------------------------------------------------------------------------- /hackthebox/valentine/logs/linpeas_hype.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/linpeas_hype.log -------------------------------------------------------------------------------- /hackthebox/valentine/logs/lse_hype.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/lse_hype.log -------------------------------------------------------------------------------- /hackthebox/valentine/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/valentine/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /hackthebox/valentine/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/logs/nmap-1000.xml -------------------------------------------------------------------------------- /hackthebox/valentine/screenshots/80_decode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/screenshots/80_decode.png -------------------------------------------------------------------------------- /hackthebox/valentine/screenshots/80_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/screenshots/80_dev.png -------------------------------------------------------------------------------- /hackthebox/valentine/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/valentine/screenshots/80_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/valentine/screenshots/80_notes.png -------------------------------------------------------------------------------- /hackthebox/writeup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/README.md -------------------------------------------------------------------------------- /hackthebox/writeup/exploits/46635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/exploits/46635.py -------------------------------------------------------------------------------- /hackthebox/writeup/files/jkr_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/files/jkr_hash -------------------------------------------------------------------------------- /hackthebox/writeup/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/ip -------------------------------------------------------------------------------- /hackthebox/writeup/logs/linpeas_jkr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/logs/linpeas_jkr.log -------------------------------------------------------------------------------- /hackthebox/writeup/logs/nmap-tcp-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/logs/nmap-tcp-1000.gnmap -------------------------------------------------------------------------------- /hackthebox/writeup/logs/nmap-tcp-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/logs/nmap-tcp-1000.nmap -------------------------------------------------------------------------------- /hackthebox/writeup/logs/nmap-tcp-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/logs/nmap-tcp-1000.xml -------------------------------------------------------------------------------- /hackthebox/writeup/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/screenshots/80_home.png -------------------------------------------------------------------------------- /hackthebox/writeup/screenshots/80_robots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/screenshots/80_robots.png -------------------------------------------------------------------------------- /hackthebox/writeup/screenshots/80_writeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/screenshots/80_writeup.png -------------------------------------------------------------------------------- /hackthebox/writeup/screenshots/80_writeup_cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/hackthebox/writeup/screenshots/80_writeup_cms.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/README.md -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/exploits/cmd.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/ip: -------------------------------------------------------------------------------- 1 | 192.168.220.111 -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/gobuster_80_raftmedium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/gobuster_80_raftmedium.log -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/gobuster_80_raftmedium_php.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/gobuster_80_raftmedium_php.log -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/linpeas_tony.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/linpeas_tony.log -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-1000.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-1000.gnmap -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-1000.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-1000.nmap -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-1000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-1000.xml -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-all.gnmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-all.gnmap -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-all.nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-all.nmap -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/logs/nmap-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/logs/nmap-all.xml -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/80_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/80_home.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/80_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/80_index.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/bookstore_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/bookstore_admin.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/bookstore_admin_image_uploads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/bookstore_admin_image_uploads.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/bookstore_admin_rce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/bookstore_admin_rce.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/bookstore_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/bookstore_home.png -------------------------------------------------------------------------------- /provinggrounds/funboxeasy/screenshots/crm_register_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/provinggrounds/funboxeasy/screenshots/crm_register_account.png -------------------------------------------------------------------------------- /scripts/data/htb_boxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/data/htb_boxes.json -------------------------------------------------------------------------------- /scripts/data/htb_oscp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/data/htb_oscp.json -------------------------------------------------------------------------------- /scripts/data/pg_boxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/data/pg_boxes.json -------------------------------------------------------------------------------- /scripts/data/pg_oscp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/data/pg_oscp.json -------------------------------------------------------------------------------- /scripts/generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/generate_readme.py -------------------------------------------------------------------------------- /scripts/generate_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/generate_summary.py -------------------------------------------------------------------------------- /scripts/htb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/htb.py -------------------------------------------------------------------------------- /scripts/pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/pg.py -------------------------------------------------------------------------------- /scripts/process_htb_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/process_htb_boxes.py -------------------------------------------------------------------------------- /scripts/process_pg_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/process_pg_boxes.py -------------------------------------------------------------------------------- /scripts/start_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomaslaurenson/trophyroom/HEAD/scripts/start_machine.py --------------------------------------------------------------------------------