mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
20 lines
479 B
Text
20 lines
479 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
# Some of these created malformed parse trees with null pointers for here
|
||
|
|
# documents, causing the here document writing process to segfault.
|
||
|
|
eval ': <<EOF'
|
||
|
|
eval ': <<EOF;'
|
||
|
|
eval '`: <<EOF`'
|
||
|
|
eval '`: <<EOF;`'
|
||
|
|
eval '`: <<EOF`;'
|
||
|
|
eval '`: <<EOF;`;'
|
||
|
|
|
||
|
|
# Some of these created malformed parse trees with null pointers for here
|
||
|
|
# documents, causing sh to segfault.
|
||
|
|
eval ': <<\EOF'
|
||
|
|
eval ': <<\EOF;'
|
||
|
|
eval '`: <<\EOF`'
|
||
|
|
eval '`: <<\EOF;`'
|
||
|
|
eval '`: <<\EOF`;'
|
||
|
|
eval '`: <<\EOF;`;'
|