Added more screenshots

This commit is contained in:
2020-12-03 13:01:03 +01:00
parent 65cd7ce05f
commit 992f1da53c
10 changed files with 15 additions and 13 deletions

View File

@ -149,13 +149,13 @@ if ${FSSTAT_BIN} -o "${OFFSET}" "${SOURCE}" > /dev/null 2>&1 ; then
if ! ${ICAT_BIN} -o "${OFFSET}" "${SOURCE}" "${user}" > "/tmp/${user}.plist" ; then
echo " During the execution of icat an error occurred." >> "${CREDENTIALS}"
fi
${PLUTIL_BIN} -i "/tmp/${user}.plist" -o "${DIRNAME}/${user}.plist"
${PLUTIL_BIN} -i "/tmp/${user}.plist" -o "${TMP}/${user}.plist"
${RM_BIN} "/tmp/${user}.plist"
fi
echo -e -n " " >> "${CREDENTIALS}"
${PPEPY_BIN} "${DIRNAME}/${user}.plist" "name" >> "${CREDENTIALS}"
${PPEPY_BIN} "${TMP}/${user}.plist" "name" >> "${CREDENTIALS}"
echo -e -n " " >> "${CREDENTIALS}"
${PPEPY_BIN} "${DIRNAME}/${user}.plist" "hint" >> "${CREDENTIALS}"
${PPEPY_BIN} "${TMP}/${user}.plist" "hint" >> "${CREDENTIALS}"
echo >> "${CREDENTIALS}"
done
else
@ -172,15 +172,15 @@ if ${FSSTAT_BIN} -o "${OFFSET}" "${SOURCE}" > /dev/null 2>&1 ; then
echo " During the execution of icat an error occurred." \
>> "${CREDENTIALS}"
fi
${PLUTIL_BIN} -i "/tmp/${calp}.plist" -o "${DIRNAME}/${calp}.plist"
${PLUTIL_BIN} -i "/tmp/${calp}.plist" -o "${TMP}/${calp}.plist"
${RM_BIN} "/tmp/${calp}.plist"
fi
echo -e -n " Some content from com.apple.loginwindow.plist:\n " \
>> "${CREDENTIALS}"
${PPEPY_BIN} "${DIRNAME}/${calp}.plist" "lastUserName" \
${PPEPY_BIN} "${TMP}/${calp}.plist" "lastUserName" \
>> "${CREDENTIALS}"
echo -e -n " " >> "${CREDENTIALS}"
${PPEPY_BIN} "${DIRNAME}/${calp}.plist" "autoLoginUser" \
${PPEPY_BIN} "${TMP}/${calp}.plist" "autoLoginUser" \
>> "${CREDENTIALS}"
echo >> "${CREDENTIALS}"
else