Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## -*- docker-image-name: "libmatch" -*-
FROM angr/angr
MAINTAINER edg@cs.ucsb.edu
USER root
RUN apt-get update && apt-get install -y sudo automake virtualenvwrapper python3-pip python3-dev python-dev build-essential libxml2-dev \
libxslt1-dev git libffi-dev cmake libreadline-dev libtool debootstrap debian-archive-keyring \
libglib2.0-dev libpixman-1-dev screen binutils-multiarch nasm vim libssl-dev
Expand Down
2 changes: 2 additions & 0 deletions bdsig/lmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ def __init__(self, project, function):
self.call_sites[n] = call_targets

def __getattr__(self, a):
if a == "__getstate__" or a == "__setstate__": # to ensure correct pickling
raise AttributeError
if "orig_function" in self.__dict__:
return getattr(self.orig_function, a)
else:
Expand Down