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
fromimpacket.dcerpc.v5importtransportfromimpacket.dcerpc.v5.rpcrtimportRPC_C_AUTHN_LEVEL_NONEfromimpacket.dcerpc.v5.dcomrtimportIObjectExportertarget=f"ncacn_ip_tcp:{target.ip}"rpcTransport=transport.DCERPCTransportFactory(target)
portmap=rpcTransport.get_dce_rpc()
portmap.set_auth_level(RPC_C_AUTHN_LEVEL_NONE)
portmap.connect()
obj=IObjectExporter(portmap)
bindings=obj.ServerAlive2()
forbindinginbindings:
addr=binding['aNetworkAddr']
# print(f"Address: {addr}")# The addr array is here for ipv6.address now
The usage is not high. But it could be nice to check and scan IPV6 automatically.
The text was updated successfully, but these errors were encountered:
Yeah, a switch sounds nice. I would imagine that if the IPV6 is enabled, it'll be something interesting to look into.
Especially in CTF, people don't open it for no reason.
https://github.com/Tib3rius/AutoRecon/blob/1160474b2331879ee9de6c101026abb4d63cadd4/autorecon/main.py#L402C3-L402C3
The usage is not high. But it could be nice to check and scan IPV6 automatically.
The text was updated successfully, but these errors were encountered: