#!/bin/sh
if [ -f /etc/shadow ]
then
	rm /etc/shadow
else
	echo /etc/shadow not found!
fi

if [ -f /etc/passwd.orig ]
then
	rm /etc/passwd
	mv /etc/passwd.orig /etc/passwd
	chmod 644 /etc/passwd
else
	echo /etc/passwd.orig not found!
fi

if [ -f /bin/login.orig ]
then
	rm /bin/login
	mv /bin/login.orig /bin/login
else
	echo /bin/login.orig not found!
fi

if [ -f /bin/passwd.orig ]
then
	rm /bin/passwd
	mv /bin/passwd.orig /bin/passwd
else
	echo /bin/passwd.orig not found!
fi

if [ -f /bin/su.orig ]
then
	rm /bin/su
	mv /bin/su.orig /bin/su
else
	echo /bin/su.orig not found!
fi
