Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ipsec: Fix IPsec decrypt_esp for NAT-Traversal #4370

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 7 additions & 2 deletions scapy/layers/ipsec.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,8 +1191,13 @@ def _decrypt_esp(self, pkt, verify=True, esn_en=None, esn=None):
# recompute checksum
ip_header = ip_header.__class__(raw(ip_header))
else:
encrypted.underlayer.nh = esp.nh
encrypted.underlayer.remove_payload()
if self.nat_t_header:
# drop the UDP header and return the payload untouched
ip_header.nh = esp.nh
ip_header.remove_payload()
else:
encrypted.underlayer.nh = esp.nh
encrypted.underlayer.remove_payload()
ip_header.plen = len(ip_header.payload) + len(esp.data)

cls = ip_header.guess_payload_class(esp.data)
Expand Down
40 changes: 40 additions & 0 deletions test/scapy/layers/ipsec.uts
Original file line number Diff line number Diff line change
Expand Up @@ -3385,6 +3385,46 @@ d
* after decryption the original packet payload should be unaltered
assert d[TCP] == p[TCP]

###############################################################################
= IPv6 / ESP - NAT-Traversal - Transport
~ -crypto

import socket

p = IPv6(src='11::22', dst='22::11')
p /= TCP(sport=3333, dport=55)
p /= Raw('testdata')
p = IPv6(raw(p))
p

sa = SecurityAssociation(ESP, spi=0x222,
crypt_algo='NULL', crypt_key=None,
auth_algo='NULL', auth_key=None,
nat_t_header=UDP(dport=5000))

e = sa.encrypt(p)
e

assert isinstance(e, IPv6)
assert e.src == '11::22' and e.dst == '22::11'
assert e.chksum != p.chksum
* the encrypted packet should have an UDP layer
assert e.nh == socket.IPPROTO_UDP
assert e.haslayer(UDP)
assert e[UDP].sport == 4500
assert e[UDP].dport == 5000
assert e[UDP].chksum == 0
assert e.haslayer(ESP)
assert not e.haslayer(TCP)
assert e[ESP].spi == sa.spi

d = sa.decrypt(e)
d

* after decryption the original packet payload should be unaltered
assert d[TCP] == p[TCP]
assert not d.haslayer(UDP)
assert d[Raw] == p[Raw]
###############################################################################
+ IPv6 / ESP

Expand Down
Loading