Change IDA xmlrpc default port (#462)

pull/463/head
Disconnect3d 8 years ago committed by GitHub
parent 824dd9645c
commit 96b226f7d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -50,7 +50,7 @@ xmlrpclib.Marshaller.dispatch[type(0)] = create_marshaller("<value><i8>%d</i8></
xmlrpclib.Marshaller.dispatch[idaapi.cfuncptr_t] = create_marshaller(just_to_str=True)
host = '127.0.0.1'
port = 8888
port = 31337
orig_LineA = idc.LineA

@ -37,7 +37,7 @@ except:
ida_rpc_host = pwndbg.config.Parameter('ida-rpc-host', '127.0.0.1', 'ida xmlrpc server address')
ida_rpc_port = pwndbg.config.Parameter('ida-rpc-port', 8888, 'ida xmlrpc server port')
ida_rpc_port = pwndbg.config.Parameter('ida-rpc-port', 31337, 'ida xmlrpc server port')
ida_enabled = pwndbg.config.Parameter('ida-enabled', True, 'whether to enable ida integration')
ida_timeout = pwndbg.config.Parameter('ida-timeout', 2, 'time to wait for ida xmlrpc in seconds')

Loading…
Cancel
Save