Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Brigs working #344

Merged
merged 2 commits into from
Mar 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions scripts/artifacts/NQVault.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,14 @@ def file_decryption(files_found, file_match_dict, xor_key, report_folder):
# MAIN #
def get_NQVault(files_found, report_folder, seeker, wrap_text):
data_list = []

sucess = 0
# Get the "encrypted" PIN from DB
try:
encoded_PIN, file_found_pin = extract_PIN_from_db(files_found)
except:

for file_found in files_found:
if file_found.endswith('322w465ay423xy11'):
encoded_PIN, file_found_pin = extract_PIN_from_db(files_found)
sucess = 1
if sucess == 0:
logfunc('No Database DB Found or no hashed PIN present.')
return

Expand Down Expand Up @@ -193,7 +196,7 @@ def get_NQVault(files_found, report_folder, seeker, wrap_text):
__artifacts__ = {
"NQVault": (
"Encrypting Media apps",
('*/emulated/0/Android/data/com.netqin.ps/files/Documents/SystemAndroid/Data/322w465ay423xy11', '*/SystemAndroid/Data/*'),
('*/emulated/0/Android/data/com.netqin.ps/files/Documents/SystemAndroid/Data/322w465ay423xy11', '*/SystemAndroid/Data/*', '/media/0/SystemAndroid/Data/322w465ay423xy11'),
get_NQVault)
}

Expand Down