---
title: Introducción a Hack The Box
author:
tags: [HTB, hack the box]
date: 2022-09-02
layout: post
categories: [sesiones]
excerpt_separator: <!--more-->
---
Abstract: poner un resumen de pocas lineas acá.
<!--more-->
## Section 1
Recuerda definir la variable `GIT_USER` en el perfil de tu shell
```bash
echo export GIT_USER=MyGithubUser >> ~/.bashrc
source ~/.bash_profile
```
o de manera temporal
```bash
GIT_USER=MyGithubUser
echo $GIT_USER
```
### Subsection 1.1
Body of Section 1.1
## Section 2
Cuerpo de la sección 2 $\mathrm{e} = \sum_{n=0}^{\infty} \dfrac{1}{n!}$ con ecuación en línea.
A continuación un bloque de ecuaciones alineadas:
$$
\begin{align}
Then,\ (x+z)+t & = x+(z+t)\ (\because Rule2) \\
& = x+0_V \\
& = x\ (\because Rule3) \\
\end{align}
$$
## Sección 3
A continuación un diagrama renderizado de Github.
https://github.blog/2022-02-14-include-diagrams-markdown-files-mermaid/
```mermaid
sequenceDiagram
participant Alice
participant Bob
Alice-\>>John: Hello John, how are you\?
loop Healthcheck
John-\>>John: Fight against hypochondria
end
Note right of John: Rational thoughts <br/>prevail\!
John--\>>Alice: Great\!
John-\>>Bob: How about you\?
Bob--\>>John: Jolly good\!
```