@ -35,6 +35,7 @@ from mythril.ethereum.interface.leveldb.client import EthLevelDB
# logging.basicConfig(level=logging.DEBUG)
# logging.basicConfig(level=logging.DEBUG)
class Mythril ( object ) :
class Mythril ( object ) :
"""
"""
Mythril main interface class .
Mythril main interface class .
@ -75,8 +76,8 @@ class Mythril(object):
mythril . get_state_variable_from_storage ( args )
mythril . get_state_variable_from_storage ( args )
"""
"""
def __init__ ( self , solv = None ,
solc_args = None , dynld = False ) :
def __init__ ( self , solv = None , solc_args = None , dynld = False ) :
self . solv = solv
self . solv = solv
self . solc_args = solc_args
self . solc_args = solc_args
@ -89,13 +90,21 @@ class Mythril(object):
self . sigs . open ( ) # tries mythril_dir/signatures.json by default (provide path= arg to make this configurable)
self . sigs . open ( ) # tries mythril_dir/signatures.json by default (provide path= arg to make this configurable)
except FileNotFoundError as fnfe :
except FileNotFoundError as fnfe :
logging . info (
logging . info (
" No signature database found. Creating database if sigs are loaded in: " + self . sigs . signatures_file + " \n " +
" No signature database found. Creating database if sigs are loaded in: "
" Consider replacing it with the pre-initialized database at https://raw.githubusercontent.com/ConsenSys/mythril/master/signatures.json " )
+ self . sigs . signatures_file
+ " \n "
+ " Consider replacing it with the pre-initialized database at https://raw.githubusercontent.com/ConsenSys/mythril/master/signatures.json "
)
except json . JSONDecodeError as jde :
except json . JSONDecodeError as jde :
raise CriticalError ( " Invalid JSON in signatures file " + self . sigs . signatures_file + " \n " + str ( jde ) )
raise CriticalError (
" Invalid JSON in signatures file "
+ self . sigs . signatures_file
+ " \n "
+ str ( jde )
)
self . solc_binary = self . _init_solc_binary ( solv )
self . solc_binary = self . _init_solc_binary ( solv )
self . config_path = os . path . join ( self . mythril_dir , ' config.ini ' )
self . config_path = os . path . join ( self . mythril_dir , " config.ini " )
self . leveldb_dir = self . _init_config ( )
self . leveldb_dir = self . _init_config ( )
self . eth = None # ethereum API client
self . eth = None # ethereum API client
@ -106,9 +115,9 @@ class Mythril(object):
@staticmethod
@staticmethod
def _init_mythril_dir ( ) :
def _init_mythril_dir ( ) :
try :
try :
mythril_dir = os . environ [ ' MYTHRIL_DIR ' ]
mythril_dir = os . environ [ " MYTHRIL_DIR " ]
except KeyError :
except KeyError :
mythril_dir = os . path . join ( os . path . expanduser ( ' ~ ' ) , " .mythril " )
mythril_dir = os . path . join ( os . path . expanduser ( " ~ " ) , " .mythril " )
# Initialize data directory and signature database
# Initialize data directory and signature database
@ -126,59 +135,75 @@ class Mythril(object):
"""
"""
system = platform . system ( ) . lower ( )
system = platform . system ( ) . lower ( )
leveldb_fallback_dir = os . path . expanduser ( ' ~ ' )
leveldb_fallback_dir = os . path . expanduser ( " ~ " )
if system . startswith ( " darwin " ) :
if system . startswith ( " darwin " ) :
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " Library " , " Ethereum " )
leveldb_fallback_dir = os . path . join (
leveldb_fallback_dir , " Library " , " Ethereum "
)
elif system . startswith ( " windows " ) :
elif system . startswith ( " windows " ) :
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " AppData " , " Roaming " , " Ethereum " )
leveldb_fallback_dir = os . path . join (
leveldb_fallback_dir , " AppData " , " Roaming " , " Ethereum "
)
else :
else :
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " .ethereum " )
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " .ethereum " )
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " geth " , " chaindata " )
leveldb_fallback_dir = os . path . join ( leveldb_fallback_dir , " geth " , " chaindata " )
if not os . path . exists ( self . config_path ) :
if not os . path . exists ( self . config_path ) :
logging . info ( " No config file found. Creating default: " + self . config_path )
logging . info ( " No config file found. Creating default: " + self . config_path )
open ( self . config_path , ' a ' ) . close ( )
open ( self . config_path , " a " ) . close ( )
config = ConfigParser ( allow_no_value = True )
config = ConfigParser ( allow_no_value = True )
config . optionxform = str
config . optionxform = str
config . read ( self . config_path , ' utf-8 ' )
config . read ( self . config_path , " utf-8 " )
if ' defaults ' not in config . sections ( ) :
if " defaults " not in config . sections ( ) :
self . _add_default_options ( config )
self . _add_default_options ( config )
if not config . has_option ( ' defaults ' , ' leveldb_dir ' ) :
if not config . has_option ( " defaults " , " leveldb_dir " ) :
self . _add_leveldb_option ( config , leveldb_fallback_dir )
self . _add_leveldb_option ( config , leveldb_fallback_dir )
if not config . has_option ( ' defaults ' , ' dynamic_loading ' ) :
if not config . has_option ( " defaults " , " dynamic_loading " ) :
self . _add_dynamic_loading_option ( config )
self . _add_dynamic_loading_option ( config )
with codecs . open ( self . config_path , ' w ' , ' utf-8 ' ) as fp :
with codecs . open ( self . config_path , " w " , " utf-8 " ) as fp :
config . write ( fp )
config . write ( fp )
leveldb_dir = config . get ( ' defaults ' , ' leveldb_dir ' , fallback = leveldb_fallback_dir )
leveldb_dir = config . get (
" defaults " , " leveldb_dir " , fallback = leveldb_fallback_dir
)
return os . path . expanduser ( leveldb_dir )
return os . path . expanduser ( leveldb_dir )
@staticmethod
@staticmethod
def _add_default_options ( config ) :
def _add_default_options ( config ) :
config . add_section ( ' defaults ' )
config . add_section ( " defaults " )
@staticmethod
@staticmethod
def _add_leveldb_option ( config , leveldb_fallback_dir ) :
def _add_leveldb_option ( config , leveldb_fallback_dir ) :
config . set ( ' defaults ' , " #Default chaindata locations: " )
config . set ( " defaults " , " #Default chaindata locations: " )
config . set ( ' defaults ' , " #– Mac: ~/Library/Ethereum/geth/chaindata " )
config . set ( " defaults " , " #– Mac: ~/Library/Ethereum/geth/chaindata " )
config . set ( ' defaults ' , " #– Linux: ~/.ethereum/geth/chaindata " )
config . set ( " defaults " , " #– Linux: ~/.ethereum/geth/chaindata " )
config . set ( ' defaults ' , " #– Windows: % USERPROFILE % \\ AppData \\ Roaming \\ Ethereum \\ geth \\ chaindata " )
config . set (
config . set ( ' defaults ' , ' leveldb_dir ' , leveldb_fallback_dir )
" defaults " ,
" #– Windows: % USERPROFILE % \\ AppData \\ Roaming \\ Ethereum \\ geth \\ chaindata " ,
)
config . set ( " defaults " , " leveldb_dir " , leveldb_fallback_dir )
@staticmethod
@staticmethod
def _add_dynamic_loading_option ( config ) :
def _add_dynamic_loading_option ( config ) :
config . set ( ' defaults ' , ' #– To connect to Infura use dynamic_loading: infura ' )
config . set ( " defaults " , " #– To connect to Infura use dynamic_loading: infura " )
config . set ( ' defaults ' , ' #– To connect to Rpc use '
config . set (
' dynamic_loading: HOST:PORT / ganache / infura-[network_name] ' )
" defaults " ,
config . set ( ' defaults ' , ' #– To connect to local host use dynamic_loading: localhost ' )
" #– To connect to Rpc use "
config . set ( ' defaults ' , ' dynamic_loading ' , ' infura ' )
" dynamic_loading: HOST:PORT / ganache / infura-[network_name] " ,
)
config . set (
" defaults " , " #– To connect to local host use dynamic_loading: localhost "
)
config . set ( " defaults " , " dynamic_loading " , " infura " )
def analyze_truffle_project ( self , * args , * * kwargs ) :
def analyze_truffle_project ( self , * args , * * kwargs ) :
return analyze_truffle_project ( self . sigs , * args , * * kwargs ) # just passthru by passing signatures for now
return analyze_truffle_project (
self . sigs , * args , * * kwargs
) # just passthru by passing signatures for now
@staticmethod
@staticmethod
def _init_solc_binary ( version ) :
def _init_solc_binary ( version ) :
@ -188,27 +213,31 @@ class Mythril(object):
if version :
if version :
# tried converting input to semver, seemed not necessary so just slicing for now
# tried converting input to semver, seemed not necessary so just slicing for now
if version == str ( solc . main . get_solc_version ( ) ) [ : 6 ] :
if version == str ( solc . main . get_solc_version ( ) ) [ : 6 ] :
logging . info ( ' Given version matches installed version ' )
logging . info ( " Given version matches installed version " )
try :
try :
solc_binary = os . environ [ ' SOLC ' ]
solc_binary = os . environ [ " SOLC " ]
except KeyError :
except KeyError :
solc_binary = ' solc '
solc_binary = " solc "
else :
else :
if util . solc_exists ( version ) :
if util . solc_exists ( version ) :
logging . info ( ' Given version is already installed ' )
logging . info ( " Given version is already installed " )
else :
else :
try :
try :
solc . install_solc ( ' v ' + version )
solc . install_solc ( " v " + version )
except SolcError :
except SolcError :
raise CriticalError ( " There was an error when trying to install the specified solc version " )
raise CriticalError (
" There was an error when trying to install the specified solc version "
)
solc_binary = os . path . join ( os . environ [ ' HOME ' ] , " .py-solc/solc-v " + version , " bin/solc " )
solc_binary = os . path . join (
os . environ [ " HOME " ] , " .py-solc/solc-v " + version , " bin/solc "
)
logging . info ( " Setting the compiler to " + str ( solc_binary ) )
logging . info ( " Setting the compiler to " + str ( solc_binary ) )
else :
else :
try :
try :
solc_binary = os . environ [ ' SOLC ' ]
solc_binary = os . environ [ " SOLC " ]
except KeyError :
except KeyError :
solc_binary = ' solc '
solc_binary = " solc "
return solc_binary
return solc_binary
def set_api_leveldb ( self , leveldb ) :
def set_api_leveldb ( self , leveldb ) :
@ -217,22 +246,24 @@ class Mythril(object):
return self . eth
return self . eth
def set_api_rpc_infura ( self ) :
def set_api_rpc_infura ( self ) :
self . eth = EthJsonRpc ( ' mainnet.infura.io ' , 443 , True )
self . eth = EthJsonRpc ( " mainnet.infura.io " , 443 , True )
logging . info ( " Using INFURA for RPC queries " )
logging . info ( " Using INFURA for RPC queries " )
def set_api_rpc ( self , rpc = None , rpctls = False ) :
def set_api_rpc ( self , rpc = None , rpctls = False ) :
if rpc == ' ganache ' :
if rpc == " ganache " :
rpcconfig = ( ' localhost ' , 8545 , False )
rpcconfig = ( " localhost " , 8545 , False )
else :
else :
m = re . match ( r ' infura-(.*) ' , rpc )
m = re . match ( r " infura-(.*) " , rpc )
if m and m . group ( 1 ) in [ ' mainnet ' , ' rinkeby ' , ' kovan ' , ' ropsten ' ] :
if m and m . group ( 1 ) in [ " mainnet " , " rinkeby " , " kovan " , " ropsten " ] :
rpcconfig = ( m . group ( 1 ) + ' .infura.io ' , 443 , True )
rpcconfig = ( m . group ( 1 ) + " .infura.io " , 443 , True )
else :
else :
try :
try :
host , port = rpc . split ( " : " )
host , port = rpc . split ( " : " )
rpcconfig = ( host , int ( port ) , rpctls )
rpcconfig = ( host , int ( port ) , rpctls )
except ValueError :
except ValueError :
raise CriticalError ( " Invalid RPC argument, use ' ganache ' , ' infura-[network] ' or ' HOST:PORT ' " )
raise CriticalError (
" Invalid RPC argument, use ' ganache ' , ' infura-[network] ' or ' HOST:PORT ' "
)
if rpcconfig :
if rpcconfig :
self . eth = EthJsonRpc ( rpcconfig [ 0 ] , int ( rpcconfig [ 1 ] ) , rpcconfig [ 2 ] )
self . eth = EthJsonRpc ( rpcconfig [ 0 ] , int ( rpcconfig [ 1 ] ) , rpcconfig [ 2 ] )
@ -241,26 +272,25 @@ class Mythril(object):
raise CriticalError ( " Invalid RPC settings, check help for details. " )
raise CriticalError ( " Invalid RPC settings, check help for details. " )
def set_api_rpc_localhost ( self ) :
def set_api_rpc_localhost ( self ) :
self . eth = EthJsonRpc ( ' localhost ' , 8545 )
self . eth = EthJsonRpc ( " localhost " , 8545 )
logging . info ( " Using default RPC settings: http://localhost:8545 " )
logging . info ( " Using default RPC settings: http://localhost:8545 " )
def set_api_from_config_path ( self ) :
def set_api_from_config_path ( self ) :
config = ConfigParser ( allow_no_value = False )
config = ConfigParser ( allow_no_value = False )
config . optionxform = str
config . optionxform = str
config . read ( self . config_path , ' utf-8 ' )
config . read ( self . config_path , " utf-8 " )
if config . has_option ( ' defaults ' , ' dynamic_loading ' ) :
if config . has_option ( " defaults " , " dynamic_loading " ) :
dynamic_loading = config . get ( ' defaults ' , ' dynamic_loading ' )
dynamic_loading = config . get ( " defaults " , " dynamic_loading " )
else :
else :
dynamic_loading = ' infura '
dynamic_loading = " infura "
if dynamic_loading == ' infura ' :
if dynamic_loading == " infura " :
self . set_api_rpc_infura ( )
self . set_api_rpc_infura ( )
elif dynamic_loading == ' localhost ' :
elif dynamic_loading == " localhost " :
self . set_api_rpc_localhost ( )
self . set_api_rpc_localhost ( )
else :
else :
self . set_api_rpc ( dynamic_loading )
self . set_api_rpc ( dynamic_loading )
def search_db ( self , search ) :
def search_db ( self , search ) :
def search_callback ( contract , address , balance ) :
def search_callback ( contract , address , balance ) :
print ( " Address: " + address + " , balance: " + str ( balance ) )
print ( " Address: " + address + " , balance: " + str ( balance ) )
@ -272,7 +302,7 @@ class Mythril(object):
raise CriticalError ( " Syntax error in search expression. " )
raise CriticalError ( " Syntax error in search expression. " )
def contract_hash_to_address ( self , hash ) :
def contract_hash_to_address ( self , hash ) :
if not re . match ( r ' 0x[a-fA-F0-9] {64} ' , hash ) :
if not re . match ( r " 0x[a-fA-F0-9] {64} " , hash ) :
raise CriticalError ( " Invalid address hash. Expected format is ' 0x... ' . " )
raise CriticalError ( " Invalid address hash. Expected format is ' 0x... ' . " )
print ( self . eth_db . contract_hash_to_address ( hash ) )
print ( self . eth_db . contract_hash_to_address ( hash ) )
@ -283,7 +313,7 @@ class Mythril(object):
return address , self . contracts [ - 1 ] # return address and contract object
return address , self . contracts [ - 1 ] # return address and contract object
def load_from_address ( self , address ) :
def load_from_address ( self , address ) :
if not re . match ( r ' 0x[a-fA-F0-9] {40} ' , address ) :
if not re . match ( r " 0x[a-fA-F0-9] {40} " , address ) :
raise CriticalError ( " Invalid contract address. Expected format is ' 0x... ' . " )
raise CriticalError ( " Invalid contract address. Expected format is ' 0x... ' . " )
try :
try :
@ -291,12 +321,16 @@ class Mythril(object):
except FileNotFoundError as e :
except FileNotFoundError as e :
raise CriticalError ( " IPC error: " + str ( e ) )
raise CriticalError ( " IPC error: " + str ( e ) )
except ConnectionError as e :
except ConnectionError as e :
raise CriticalError ( " Could not connect to RPC server. Make sure that your node is running and that RPC parameters are set correctly. " )
raise CriticalError (
" Could not connect to RPC server. Make sure that your node is running and that RPC parameters are set correctly. "
)
except Exception as e :
except Exception as e :
raise CriticalError ( " IPC / RPC error: " + str ( e ) )
raise CriticalError ( " IPC / RPC error: " + str ( e ) )
else :
else :
if code == " 0x " or code == " 0x0 " :
if code == " 0x " or code == " 0x0 " :
raise CriticalError ( " Received an empty response from eth_getCode. Check the contract address and verify that you are on the correct chain. " )
raise CriticalError (
" Received an empty response from eth_getCode. Check the contract address and verify that you are on the correct chain. "
)
else :
else :
self . contracts . append ( ETHContract ( code , name = address ) )
self . contracts . append ( ETHContract ( code , name = address ) )
return address , self . contracts [ - 1 ] # return address and contract object
return address , self . contracts [ - 1 ] # return address and contract object
@ -319,57 +353,105 @@ class Mythril(object):
try :
try :
# import signatures from solidity source
# import signatures from solidity source
self . sigs . import_from_solidity_source ( file , solc_binary = self . solc_binary , solc_args = self . solc_args )
self . sigs . import_from_solidity_source (
file , solc_binary = self . solc_binary , solc_args = self . solc_args
)
# Save updated function signatures
# Save updated function signatures
self . sigs . write ( ) # dump signatures to disk (previously opened file or default location)
self . sigs . write ( ) # dump signatures to disk (previously opened file or default location)
if contract_name is not None :
if contract_name is not None :
contract = SolidityContract ( file , contract_name , solc_args = self . solc_args )
contract = SolidityContract (
file , contract_name , solc_args = self . solc_args
)
self . contracts . append ( contract )
self . contracts . append ( contract )
contracts . append ( contract )
contracts . append ( contract )
else :
else :
for contract in get_contracts_from_file ( file , solc_args = self . solc_args ) :
for contract in get_contracts_from_file (
file , solc_args = self . solc_args
) :
self . contracts . append ( contract )
self . contracts . append ( contract )
contracts . append ( contract )
contracts . append ( contract )
except FileNotFoundError :
except FileNotFoundError :
raise CriticalError ( " Input file not found: " + file )
raise CriticalError ( " Input file not found: " + file )
except CompilerError as e :
except CompilerError as e :
raise CriticalError ( e )
raise CriticalError ( e )
except NoContractFoundError :
except NoContractFoundError :
logging . info ( " The file " + file + " does not contain a compilable contract. " )
logging . info (
" The file " + file + " does not contain a compilable contract. "
)
return address , contracts
return address , contracts
def dump_statespace ( self , strategy , contract , address = None , max_depth = None ,
def dump_statespace (
execution_timeout = None , create_timeout = None ) :
self ,
strategy ,
sym = SymExecWrapper ( contract , address , strategy ,
contract ,
address = None ,
max_depth = None ,
execution_timeout = None ,
create_timeout = None ,
) :
sym = SymExecWrapper (
contract ,
address ,
strategy ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
max_depth = max_depth , execution_timeout = execution_timeout , create_timeout = create_timeout )
max_depth = max_depth ,
execution_timeout = execution_timeout ,
create_timeout = create_timeout ,
)
return get_serializable_statespace ( sym )
return get_serializable_statespace ( sym )
def graph_html ( self , strategy , contract , address , max_depth = None , enable_physics = False ,
def graph_html (
phrackify = False , execution_timeout = None , create_timeout = None ) :
self ,
sym = SymExecWrapper ( contract , address , strategy ,
strategy ,
contract ,
address ,
max_depth = None ,
enable_physics = False ,
phrackify = False ,
execution_timeout = None ,
create_timeout = None ,
) :
sym = SymExecWrapper (
contract ,
address ,
strategy ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
max_depth = max_depth , execution_timeout = execution_timeout , create_timeout = create_timeout )
max_depth = max_depth ,
execution_timeout = execution_timeout ,
create_timeout = create_timeout ,
)
return generate_graph ( sym , physics = enable_physics , phrackify = phrackify )
return generate_graph ( sym , physics = enable_physics , phrackify = phrackify )
def fire_lasers ( self , strategy , contracts = None , address = None ,
def fire_lasers (
modules = None , verbose_report = False , max_depth = None , execution_timeout = None , create_timeout = None ,
self ,
max_transaction_count = None ) :
strategy ,
contracts = None ,
address = None ,
modules = None ,
verbose_report = False ,
max_depth = None ,
execution_timeout = None ,
create_timeout = None ,
max_transaction_count = None ,
) :
all_issues = [ ]
all_issues = [ ]
for contract in ( contracts or self . contracts ) :
for contract in contracts or self . contracts :
sym = SymExecWrapper ( contract , address , strategy ,
sym = SymExecWrapper (
contract ,
address ,
strategy ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
dynloader = DynLoader ( self . eth ) if self . dynld else None ,
max_depth = max_depth , execution_timeout = execution_timeout ,
max_depth = max_depth ,
execution_timeout = execution_timeout ,
create_timeout = create_timeout ,
create_timeout = create_timeout ,
max_transaction_count = max_transaction_count )
max_transaction_count = max_transaction_count ,
)
issues = fire_lasers ( sym , modules )
issues = fire_lasers ( sym , modules )
@ -397,9 +479,14 @@ class Mythril(object):
position = int ( params [ 1 ] )
position = int ( params [ 1 ] )
position_formatted = utils . zpad ( utils . int_to_big_endian ( position ) , 32 )
position_formatted = utils . zpad ( utils . int_to_big_endian ( position ) , 32 )
for i in range ( 2 , len ( params ) ) :
for i in range ( 2 , len ( params ) ) :
key = bytes ( params [ i ] , ' utf8 ' )
key = bytes ( params [ i ] , " utf8 " )
key_formatted = utils . rzpad ( key , 32 )
key_formatted = utils . rzpad ( key , 32 )
mappings . append ( int . from_bytes ( utils . sha3 ( key_formatted + position_formatted ) , byteorder = ' big ' ) )
mappings . append (
int . from_bytes (
utils . sha3 ( key_formatted + position_formatted ) ,
byteorder = " big " ,
)
)
length = len ( mappings )
length = len ( mappings )
if length == 1 :
if length == 1 :
@ -414,30 +501,51 @@ class Mythril(object):
if len ( params ) > = 2 :
if len ( params ) > = 2 :
length = int ( params [ 1 ] )
length = int ( params [ 1 ] )
if len ( params ) == 3 and params [ 2 ] == " array " :
if len ( params ) == 3 and params [ 2 ] == " array " :
position_formatted = utils . zpad ( utils . int_to_big_endian ( position ) , 32 )
position_formatted = utils . zpad (
position = int . from_bytes ( utils . sha3 ( position_formatted ) , byteorder = ' big ' )
utils . int_to_big_endian ( position ) , 32
)
position = int . from_bytes (
utils . sha3 ( position_formatted ) , byteorder = " big "
)
except ValueError :
except ValueError :
raise CriticalError ( " Invalid storage index. Please provide a numeric value. " )
raise CriticalError (
" Invalid storage index. Please provide a numeric value. "
)
outtxt = [ ]
outtxt = [ ]
try :
try :
if length == 1 :
if length == 1 :
outtxt . append ( " {} : {} " . format ( position , self . eth . eth_getStorageAt ( address , position ) ) )
outtxt . append (
" {} : {} " . format (
position , self . eth . eth_getStorageAt ( address , position )
)
)
else :
else :
if len ( mappings ) > 0 :
if len ( mappings ) > 0 :
for i in range ( 0 , len ( mappings ) ) :
for i in range ( 0 , len ( mappings ) ) :
position = mappings [ i ]
position = mappings [ i ]
outtxt . append ( " {} : {} " . format ( hex ( position ) , self . eth . eth_getStorageAt ( address , position ) ) )
outtxt . append (
" {} : {} " . format (
hex ( position ) ,
self . eth . eth_getStorageAt ( address , position ) ,
)
)
else :
else :
for i in range ( position , position + length ) :
for i in range ( position , position + length ) :
outtxt . append ( " {} : {} " . format ( hex ( i ) , self . eth . eth_getStorageAt ( address , i ) ) )
outtxt . append (
" {} : {} " . format (
hex ( i ) , self . eth . eth_getStorageAt ( address , i )
)
)
except FileNotFoundError as e :
except FileNotFoundError as e :
raise CriticalError ( " IPC error: " + str ( e ) )
raise CriticalError ( " IPC error: " + str ( e ) )
except ConnectionError as e :
except ConnectionError as e :
raise CriticalError ( " Could not connect to RPC server. Make sure that your node is running and that RPC parameters are set correctly. " )
raise CriticalError (
return ' \n ' . join ( outtxt )
" Could not connect to RPC server. Make sure that your node is running and that RPC parameters are set correctly. "
)
return " \n " . join ( outtxt )
@staticmethod
@staticmethod
def disassemble ( contract ) :
def disassemble ( contract ) :