Welcome to MalayaHunter's Github Page. MalayaHunter is a Cybersecurity group from the University Malaya. This page is an amalgamation of writeups and information from CTF's and other walkthroughs.
This page is created using Jekyll and the Jekyll Chirpy Theme. To learn how to use, develop, and upgrade the project, please refer to the Wiki.
Two ways to contribute to this project.
- Github Fork and Pull Request (Recommended)
- Contacting Webadmin
If you want to submit a writeup, make sure it follows the Writeups Guideline ("Steps for writeups" post)
Contributing to open-source projects on GitHub is a fantastic way to improve your coding skills, collaborate with other developers, and contribute to the software community. This guide will walk you through the process of contributing to a project using the fork and pull request model.
- Find the Repository: Navigate to the GitHub page of the project you want to contribute to.
- Fork the Repository: Click the "Fork" button in the top-right corner of the page. This creates a copy of the repository in your GitHub account.
- Clone Your Fork: On your fork's GitHub page, click the "Clone or download" button and copy the URL.
- Clone Locally: Open your terminal and run the following command:
git clone [URL of the forked repo]
- Navigate to Your Repository: Change directory into the cloned repository:
cd [repository-name]
- Create a New Branch: Use the
git checkout
command to create a new branch:git checkout -b [new-branch-name]
- Make Your Changes: Edit, add, or remove files in your local repository.
- Stage the Changes: Use
git add
to stage your changes:git add .
- Commit the Changes: Commit your changes with a descriptive message:
git commit -m "Add a brief description of your changes"
- Push Your Branch: Push your changes to GitHub:
git push origin [your-branch-name]
- Open Pull Request: Go to the original repository on GitHub. You should see a prompt to create a pull request from your new branch.
- Create Pull Request: Click the "Compare & pull request" button. Add a detailed description of your changes and submit.
- Review and Respond: Maintainers might leave feedback. Be sure to respond and make any necessary changes.
- Update Pull Request: If you make changes after feedback, push them to your branch. The pull request will automatically update.
These are basics steps in contributing to open-source projects using GitHub. By following these steps, you can effectively contribute to projects and collaborate with the global developer community.
Your contributions does not limit to only submitting writeups
- Web improvements
- Fix typos
- Improving the documentations
This method only for submitting writeups to webadmin for it to be on side {: .prompt-info }