The way search results are displayed has been modified (pwsh-vault-cli)

This commit is contained in:
q3aql 2022-06-24 15:36:42 +02:00
parent 578601c3f6
commit 247d88c1de

View File

@ -953,8 +953,6 @@ function search_entries_vault() {
echo "" echo ""
echo "# pwsh-vault-cli ${VERSION}" echo "# pwsh-vault-cli ${VERSION}"
echo "" echo ""
echo "# Preparing Vault List Entries:"
echo ""
rm -rf ${pwsh_vault_cache_logins} rm -rf ${pwsh_vault_cache_logins}
rm -rf ${pwsh_vault_cache_logins_otp} rm -rf ${pwsh_vault_cache_logins_otp}
rm -rf ${pwsh_vault_cache_bcard} rm -rf ${pwsh_vault_cache_bcard}
@ -962,34 +960,28 @@ function search_entries_vault() {
list_logins_count=$(ls -1 logins/ | wc -l) list_logins_count=$(ls -1 logins/ | wc -l)
list_bcard_count=$(ls -1 bcard/ | wc -l) list_bcard_count=$(ls -1 bcard/ | wc -l)
list_notes_count=$(ls -1 notes/ | wc -l) list_notes_count=$(ls -1 notes/ | wc -l)
total_count_vaults=$(expr ${list_logins_count} + ${list_bcard_count} + ${list_notes_count})
echo "# Preparing Vault List Entries (${total_count_vaults}):"
echo ""
if [ ${list_logins_count} -ne 0 ] ; then if [ ${list_logins_count} -ne 0 ] ; then
list_logins=$(ls -1 logins/) list_logins=$(ls -1 logins/)
username_show="Hidden User"
password_show="Encrypted Password"
url_show="Hidden URL"
otp_show="Hidden OTP"
for login in ${list_logins} ; do for login in ${list_logins} ; do
echo "logins/${login},${username_show},${password_show},${url_show},${otp_show}" >> ${pwsh_vault_cache_logins_otp} echo "logins/${login}" >> ${pwsh_vault_cache_logins_otp}
echo "logins/${login},${username_show},${password_show},${url_show},${otp_show}" >> ${pwsh_vault_cache_logins} echo "logins/${login}" >> ${pwsh_vault_cache_logins}
done done
fi fi
cd ${pwsh_vault} cd ${pwsh_vault}
if [ ${list_bcard_count} -ne 0 ] ; then if [ ${list_bcard_count} -ne 0 ] ; then
list_bcard=$(ls -1 bcard/) list_bcard=$(ls -1 bcard/)
owner_show="Hidden Owner"
num_card_show="Hidden Card"
expiry_show="Hidden Expiry"
cvv_show="Encrypted CVV"
for card in ${list_bcard} ; do for card in ${list_bcard} ; do
echo "bcard/${card},${owner_show},${num_card_show},${expiry_show},${cvv_show}" >> ${pwsh_vault_cache_bcard} echo "bcard/${card}" >> ${pwsh_vault_cache_bcard}
done done
fi fi
cd ${pwsh_vault} cd ${pwsh_vault}
if [ ${list_notes_count} -ne 0 ] ; then if [ ${list_notes_count} -ne 0 ] ; then
list_notes=$(ls -1 notes/) list_notes=$(ls -1 notes/)
note_show="Encrypted Note"
for note in ${list_notes} ; do for note in ${list_notes} ; do
echo "notes/${note},${note_show}" >> ${pwsh_vault_cache_notes} echo "notes/${note}" >> ${pwsh_vault_cache_notes}
done done
fi fi
echo " l --> Search Login/Website Entry" echo " l --> Search Login/Website Entry"
@ -1017,8 +1009,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_logins} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_logins}) ; do
echo " ${count} --> ${show},${username_show},${password_show},${url_show},${otp_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1086,8 +1086,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_logins} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_logins}) ; do
echo " ${count} --> ${show},${username_show},${password_show},${url_show},${otp_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1161,8 +1169,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_logins} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_logins}) ; do
echo " ${count} --> ${show},${username_show},${password_show},${url_show},${otp_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1227,8 +1243,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_logins} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_logins}) ; do
echo " ${count} --> ${show},${username_show},${password_show},${url_show},${otp_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1297,8 +1321,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_bcard} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_bcard}) ; do
echo " ${count} --> ${show},${owner_show},${num_card_show},${expiry_show},${cvv_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1361,8 +1393,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_bcard} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_bcard}) ; do
echo " ${count} --> ${show},${owner_show},${num_card_show},${expiry_show},${cvv_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1430,8 +1470,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_notes} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_notes}) ; do
echo " ${count} --> ${show},${note_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""
@ -1486,8 +1534,16 @@ function search_entries_vault() {
echo -n "# Press enter key to continue " ; read enter_continue echo -n "# Press enter key to continue " ; read enter_continue
else else
count=1 count=1
for show in $(cat ${pwsh_vault_cache_notes} | cut -d "," -f 1) ; do for show in $(cat ${pwsh_vault_cache_notes}) ; do
echo " ${count} --> ${show},${note_show}" if [ ${count} -lt 100 ] ; then
if [ ${count} -lt 10 ] ; then
echo " ${count} --> ${show}"
else
echo " ${count} --> ${show}"
fi
else
echo " ${count} --> ${show}"
fi
count=$(expr ${count} + 1) count=$(expr ${count} + 1)
done done
echo "" echo ""