Skip to content

Commit

Permalink
Update cashApp.py
Browse files Browse the repository at this point in the history
Ignore decoding errors and show field content.
  • Loading branch information
abrignoni committed Nov 8, 2021
1 parent b144405 commit b03f84e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/artifacts/cashApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def get_cashApp(files_found, report_folder, seeker):

if file_found.endswith('.sqlite'):
db = open_sqlite_db_readonly(file_found)
db.text_factory = lambda b: b.decode(errors = 'ignore')
cursor = db.cursor()
cursor.execute('''SELECT
Expand Down

0 comments on commit b03f84e

Please sign in to comment.