### Clone and Contribute Writeup via Git Source: https://context7.com/hackplayers/hackthebox-writeups/llms.txt This bash script demonstrates how to clone the repository, add a new writeup file to the correct directory, commit the changes, and push them to your fork. It assumes you have Git installed and have forked the repository. ```bash # Clone your fork git clone https://github.com/YOUR_USERNAME/hackthebox-writeups.git cd hackthebox-writeups # Add your writeup to the appropriate directory # For machines: machines/MachineName/yourusername-machinename.pdf # For challenges: challenges/category/ChallengeName/yourusername-challengename.pdf cp ~/my-writeup.pdf machines/Bastion/myusername-bastion.pdf # Commit and push git add machines/Bastion/myusername-bastion.pdf git commit -m "Add Bastion writeup by myusername" git push origin main # Create pull request on GitHub ``` -------------------------------- ### File Naming Convention for Challenge Writeups Source: https://context7.com/hackplayers/hackthebox-writeups/llms.txt This details the file naming convention for HackTheBox challenge writeups. It outlines the directory structure based on category and the required filename format, including author and challenge name. ```plaintext challenges///-. # Examples: challenges/crypto/BabyEncryption/apehex_baby-encryption.zip challenges/web/Fuzzy/fiti-fuzzy.pdf challenges/pwn/ropme/SirBroccoli - Ropme.pdf ``` -------------------------------- ### File Naming Convention for Machine Writeups Source: https://context7.com/hackplayers/hackthebox-writeups/llms.txt This specifies the file naming convention for HackTheBox machine writeups. It includes the directory structure and the required format for the filename, which includes the author and machine name. ```plaintext machines//-.pdf # Examples: machines/Bastion/VbScrub-Bastion.pdf machines/OpenAdmin/noraj-openadmin.pdf machines/Traceback/HTB_Traceback-d0n601.pdf ``` -------------------------------- ### Email Submission Format for Writeups Source: https://context7.com/hackplayers/hackthebox-writeups/llms.txt This outlines the format for submitting writeups via email. It specifies the recipient, subject line, and attachment requirements, including password protection for active machine writeups. ```plaintext Email: hackplayers_at_Ymail.com Subject: Writeup Submission - [Machine/Challenge Name] Attachment: yourwriteup.pdf (password protected for active machines) ``` -------------------------------- ### Password Protection for Active Machine Writeups Source: https://context7.com/hackplayers/hackthebox-writeups/llms.txt This explains the password protection requirement for active HackTheBox machine writeups submitted before March 2020. The password should be the machine's root flag. ```plaintext # Password format for active machine writeups Password: # Example: If root flag is HTB{abc123...} # The PDF password should be: abc123... ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.