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
from binascii import unhexlify
from pyasn1.codec.der.decoder import decode as der_decoder
from pyasn1.codec.ber.decoder import decode as ber_decoder
from pyasn1 import debug
from impacket.ldap.ldapasn1 import LDAPMessage
debug.setLogger(debug.Debug('all'))
data = unhexlify('30560201026351041064633d6578616d6c652c64633d6f72670a01020a0100020100020100010100a02c870b6f626a656374436c617373a31d040e73616d4163636f756e744e616d65040b6578616d706c65557365723000')
obj, rest_of_input = ber_decoder(data, asn1Spec=LDAPMessage())
print(data)
print(obj)
print(rest_of_input)
Uh oh!
There was an error while loading. Please reload this page.
The following code
fails as follows
Applying
results in
similar to issue #17
The text was updated successfully, but these errors were encountered: