GNU awk solution:
awk -F'/' '{ d=$3$1$2 }
NR==FNR{ t=d; nextfile }
d > t't{
print "file2 has date(s) greater than in file1";
exit
}' file1 file2
The output:
12/23/2017file2 has date(s) greater than in file1