You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/angr/misc/bug_report.py:1: DeprecationWarning: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses
import imp
angr environment report
=============================
Date: 2023-08-15 17:46:16.938857
Running in virtual environment at /home/jmill/.virtualenvs/angr
Platform: linux-x86_64
Python version: 3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0]
######## angr #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/angr
Pip version angr 9.2.64
Couldn't find git info
######## ailment #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/ailment
Pip version ailment 9.2.64
Couldn't find git info
######## cle #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/cle
Pip version cle 9.2.64
Couldn't find git info
######## pyvex #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/pyvex
Pip version pyvex 9.2.64
Couldn't find git info
######## claripy #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/claripy
Pip version claripy 9.2.64
Couldn't find git info
######## archinfo #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/archinfo
Pip version archinfo 9.2.64
Couldn't find git info
######## z3 #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/z3
Pip version z3-solver 4.10.2.0
Couldn't find git info
######## unicorn #########
Python found it in /home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/unicorn
Pip version unicorn 2.0.1.post1
Couldn't find git info
######### Native Module Info ##########
angr: <CDLL '/home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/angr/state_plugins/../lib/angr_native.so', handle 55c12e4eda10 at 0x7f8b22438af0>
unicorn: <CDLL '/home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/unicorn/lib/libunicorn.so.2', handle 55c12df79160 at 0x7f8b25081d80>
pyvex: <cffi.api._make_ffi_library.<locals>.FFILibrary object at 0x7f8b25da7a00>
z3: <CDLL '/home/jmill/.virtualenvs/angr/lib/python3.10/site-packages/z3/lib/libz3.so', handle 55c12dd13420 at 0x7f8b27cff970>
Additional context
breaking commit: 0833a23
using self.arch = ... is no longer valid for backends, self._arch = ... or self.set_arch(...) should be used instead
The text was updated successfully, but these errors were encountered:
Description
when loading a UEFI image, an error will occur trying to set the backend's arch attribute.
Steps to reproduce the bug
with:
pip install uefi-firmware==1.9
FV_RECOVERY.tar.gz
Environment
Additional context
breaking commit: 0833a23
using
self.arch = ...
is no longer valid for backends,self._arch = ...
orself.set_arch(...)
should be used insteadThe text was updated successfully, but these errors were encountered: