Skip to content
Merged
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
2 changes: 1 addition & 1 deletion scapy/layers/kerberos.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@
)
from scapy.layers.inet import TCP, UDP
from scapy.layers.smb import _NV_VERSION
from scapy.layers.smb2 import STATUS_ERREF
from scapy.layers.tls.cert import (
Cert,
CertList,
Expand All @@ -161,6 +160,7 @@
Hash_SHA512,
)
from scapy.layers.tls.crypto.groups import _ffdh_groups
from scapy.layers.windows.erref import STATUS_ERREF
from scapy.layers.x509 import (
_CMS_ENCAPSULATED,
CMS_ContentInfo,
Expand Down
2 changes: 1 addition & 1 deletion scapy/layers/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
NETLOGON,
NETLOGON_SAM_LOGON_RESPONSE_EX,
)
from scapy.layers.smb2 import STATUS_ERREF
from scapy.layers.windows.erref import STATUS_ERREF

# Typing imports
from typing import (
Expand Down
4 changes: 2 additions & 2 deletions scapy/layers/msrpce/msnrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
from scapy.layers.msrpce.rpcclient import (
DCERPC_Client,
DCERPC_Transport,
STATUS_ERREF,
)
from scapy.layers.windows.erref import STATUS_ERREF
from scapy.layers.msrpce.raw.ms_nrpc import (
NetrServerAuthenticate3_Request,
NetrServerAuthenticate3_Response,
Expand Down Expand Up @@ -610,7 +610,7 @@ def __init__(

def connect(self, host, **kwargs):
"""
This calls DCERPC_Client's connect_and_bind to bind the 'logon' interface.
This calls DCERPC_Client's connect to bind the 'logon' interface.
"""
super(NetlogonClient, self).connect(
host=host,
Expand Down
2 changes: 1 addition & 1 deletion scapy/layers/msrpce/mspac.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
_NTLMPayloadField,
_NTLMPayloadPacket,
)
from scapy.layers.smb2 import WINNT_SID
from scapy.layers.windows.security import WINNT_SID

# sect 2.4

Expand Down
Loading
Loading