This is a wiki for BlackArch, a complete Linux distribution for penetration testers and security researchers. These docs are rendered and deployed to:
Join the BlackArch Matrix to find other people interested in or using BlackArch Linux. If you want to support the project, consider donating.
This wiki belongs to the BlackArch Community, and contributions are welcome from anyone. Any member of the BlackArch GitHub organization can merge pull requests. BlackArch members can push directly to the main
branch, which is the deployed branch.
Content is formatted using markdown syntax. There are multiple ways to contribute content:
Links to edit content using Prose.io
are embedded into the site in the top right corner:
Clicking these links should drop you into a content editor in your browser:
There’s a preview button to see your changes rendered in markdown:
Images can be uploaded either by dragging and dropping the image into the prose editor or by clicking the image button in the markdown editor bar. These photos will be uploaded to the media
directory and you should see some markdown generated for you:
Prose by default suggests a filename with a date, and there isn’t a way currently to turn of this behavior. Please remove the date from the suggested filename, for example don’t use 2023-04-20-your-filename.md
and instead name it without a date like your-filename.md
. Remember to use the .md
file extension. Files without the extension will not be rendered by jekyll.
Click the save button, which will commit your changes. If you are a member of the BlackArch github organization, your changes will be committed directly to the deploy branch main
and will show up https://wiki.blackarch.org once the site is rebuilt. If you are not a member of BlackArch Linux, saving your changes will create a Pull Request on Github. Any member of BlackArch can merge the changes after review.
There are links in the top right corner of the site to edit the content in GitHub. Clicking Add new
, for example, will drop you into a GiHub UI for adding a new file:
The GitHub UI provides an option to either commit directly to main
branch (if you are a member of BlackArch Linux) or submit a pull request, which can be merged by a member of BlackArch Linux.
New pages can be added to the root directory - no need to add to any subfolder. Pages should include the .md
file extension or they will not be rendered.
Add images to the media
directory and include in markdown using the syntax:
![github_image_upload.png](media/github_image_upload.png)
All changes merged to main
branch will be automatically deployed using Netlify to the domain https://blackarch.wiki
. There is some delay between merge and when site is refreshed with the new content, so expect changes to take a moment. If you are a member of BlackArch, you have write access and can merge your own changes.
If you are only looking to add content to the wiki, you should not need to do any of the following setup. This is only relevant if you want to make changes to the wiki site itself or you want to preview locally instead of using prose or GitHub UI.
This wiki is built using:
The theme is built directly into the repository so we could patch any changes as needed.
This wiki is built using a custom theme, but it is possible to override any of the style in overrides/css/custom.css
.
Follow the instructions in the Quickstart jekyll docs to setup a Ruby environment and install bundler. To build the site and make it available to a local server, run:
bundle exec jekyll serve
and open http://localhost:4000
in a browser.
Some functionality, such as the editing with prose, cannot be easily tested locally.