This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * tripo3d_model_downloader.js | |
| * ───────────────────────────────────────────────────────────────────────────── | |
| * Extracts the loaded 3D model directly from the TresJS/Three.js renderer on | |
| * studio.tripo3d.ai, bypasses the export tool entirely, and triggers a .glb | |
| * download. | |
| * | |
| * HOW IT WORKS | |
| * ───────────────────────────────────────────────────────────────────────────── | |
| * 1. The site is a Nuxt 3 / Vue 3 app using TresJS (Vue wrapper for Three.js). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Function to check if the last command succeeded | |
| check_success() { | |
| if [ $? -ne 0 ]; then | |
| echo "Error: $1" | |
| exit 1 | |
| fi | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PORTED TO MARKDOWN AT https://github.com/JackTYM/THMCyberSecurityNotes | |
| Useful Programs | |
| ffuf/GoBuster/Dirb - Recursively request HTTP endpoints with different sub-pages or form values | |
| BurpSuite - HTTP(S) request related exploits | |
| RequestBin.com - Monitor HTTP requests on a site | |
| Command Syntaxes | |
| Curl |