#!/bin/sh

RES=`node debian/tests/CVE-2021-23434.js`

if test "$RES" = "yes"; then
	echo "Vulnerable to CVE-2021-23434"
	exit 1;
fi
