diff options
Diffstat (limited to 'bin/rdsquashfs')
-rw-r--r-- | bin/rdsquashfs/Makemodule.am | 8 | ||||
-rw-r--r-- | bin/rdsquashfs/test/pathtraversal.sh.in | 12 | ||||
-rw-r--r-- | bin/rdsquashfs/test/pathtraversal.sqfs | bin | 0 -> 4096 bytes |
3 files changed, 20 insertions, 0 deletions
diff --git a/bin/rdsquashfs/Makemodule.am b/bin/rdsquashfs/Makemodule.am index f8f9d3d..380883e 100644 --- a/bin/rdsquashfs/Makemodule.am +++ b/bin/rdsquashfs/Makemodule.am @@ -9,3 +9,11 @@ rdsquashfs_LDADD += libfstree.a $(LZO_LIBS) $(PTHREAD_LIBS) dist_man1_MANS += bin/rdsquashfs/rdsquashfs.1 bin_PROGRAMS += rdsquashfs + +if WINDOWS +else +check_SCRIPTS += bin/rdsquashfs/test/pathtraversal.sh +TESTS += bin/rdsquashfs/test/pathtraversal.sh +endif + +EXTRA_DIST += $(top_srcdir)/bin/rdsquashfs/test/pathtraversal.sqfs diff --git a/bin/rdsquashfs/test/pathtraversal.sh.in b/bin/rdsquashfs/test/pathtraversal.sh.in new file mode 100644 index 0000000..5b19c4d --- /dev/null +++ b/bin/rdsquashfs/test/pathtraversal.sh.in @@ -0,0 +1,12 @@ +#!/bin/sh + +RDSQFS="@abs_top_builddir@/rdsquashfs" +REFFILE="@abs_top_srcdir@/bin/rdsquashfs/test/pathtraversal.sqfs" +GOTCHA="/tmp/gotcha.txt" + +if "$RDSQFS" -u / -p . "$REFFILE"; then + if [ -e "$GOTCHA" ]; then + echo "Found $GOTCHA which should not be there" + exit 1 + fi +fi diff --git a/bin/rdsquashfs/test/pathtraversal.sqfs b/bin/rdsquashfs/test/pathtraversal.sqfs Binary files differnew file mode 100644 index 0000000..0c33bb3 --- /dev/null +++ b/bin/rdsquashfs/test/pathtraversal.sqfs |