feature: nicer ui injectable view

This commit is contained in:
Dobin Rutishauser
2025-06-21 18:54:02 +02:00
parent a782fd0842
commit 2e522de234
2 changed files with 19 additions and 5 deletions
+4 -2
View File
@@ -48,11 +48,13 @@ def injectables_view():
'name': file,
#'exports': superpe.get_exports_full(),
#'iat': superpe.get_iat_entries(),
'sections': superpe.pe_sections,
'superpe': superpe,
#'sections': superpe.pe_sections,
}
injectables.append(e)
#break
return render_template('injectables.html', injectables=injectables)
return render_template('injectables.html',
injectables=injectables)
@views.app_template_filter('hexint')