Skip to content

Commit fee4e87

Browse files
authored
Parse ASN.1 root record in x509 certificates (seladb#1540)
1 parent ee49adb commit fee4e87

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

Packet++/header/SSLHandshake.h

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include <utility>
44
#include "SSLCommon.h"
55
#include "PointerVector.h"
6+
#include "Asn1Codec.h"
67

78
/**
89
* @file
@@ -301,6 +302,12 @@ namespace pcpp
301302
return m_DataLen;
302303
}
303304

305+
/**
306+
* @return The root ASN.1 record of the certificate data. All of the certificate data will be under this record.
307+
* If the Root ASN.1 record is malformed, an exception is thrown
308+
*/
309+
Asn1SequenceRecord* getRootAsn1Record();
310+
304311
/**
305312
* Certificate messages usually spread on more than 1 packet. So a certificate is likely to split between 2
306313
* packets or more. This method provides an indication whether all certificate data exists or only part of it
@@ -312,6 +319,7 @@ namespace pcpp
312319
}
313320

314321
private:
322+
std::unique_ptr<Asn1Record> m_Asn1Record;
315323
uint8_t* m_Data;
316324
size_t m_DataLen;
317325
bool m_AllDataExists;

Packet++/src/SSLHandshake.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,20 @@ namespace pcpp
12161216
return result;
12171217
}
12181218

1219+
// --------------------------
1220+
// SSLx509Certificate methods
1221+
// --------------------------
1222+
1223+
Asn1SequenceRecord* SSLx509Certificate::getRootAsn1Record()
1224+
{
1225+
if (m_Asn1Record == nullptr)
1226+
{
1227+
m_Asn1Record = Asn1Record::decode(m_Data, m_DataLen);
1228+
}
1229+
1230+
return m_Asn1Record->castAs<Asn1SequenceRecord>();
1231+
}
1232+
12191233
// ---------------------------
12201234
// SSLHandshakeMessage methods
12211235
// ---------------------------

Tests/Packet++Test/Tests/SSLTests.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -353,13 +353,18 @@ PTF_TEST_CASE(SSLMultipleRecordParsing3Test)
353353
PTF_ASSERT_TRUE(pos != std::string::npos);
354354
pos = certBuffer.find("Internal Development CA");
355355
PTF_ASSERT_EQUAL(pos, std::string::npos, ptr);
356+
auto asn1Record = cert->getRootAsn1Record();
357+
PTF_ASSERT_NOT_NULL(asn1Record);
358+
PTF_ASSERT_EQUAL(asn1Record->getSubRecords().size(), 3);
359+
356360
cert = certMsg->getCertificate(1);
357361
PTF_ASSERT_NOT_NULL(cert);
358362
PTF_ASSERT_TRUE(cert->allDataExists());
359363
PTF_ASSERT_EQUAL(cert->getDataLength(), 1728);
360364
certBuffer = std::string(cert->getData(), cert->getData() + cert->getDataLength());
361365
pos = certBuffer.find("Internal Development CA");
362366
PTF_ASSERT_TRUE(pos != std::string::npos);
367+
363368
cert = certMsg->getCertificate(2);
364369
PTF_ASSERT_NOT_NULL(cert);
365370
PTF_ASSERT_TRUE(cert->allDataExists());

0 commit comments

Comments
 (0)