Skip to content

Commit d0379a1

Browse files
author
Dr. Brandon Wiley
committed
Require fixed bulk string parser from Redshot
1 parent acc1143 commit d0379a1

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

AdversaryLabSwift/Features/Protocols/TLS12.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ func isTls12(forConnection connection: ObservedConnection) -> Bool
4343
return false
4444
}
4545

46-
NSLog("Found TLS: \(requestRange) \(responseRange)")
46+
NSLog("Found TLS: \(requestRange) \(responseRange) \(outPacket.count)")
4747

4848
return true
4949
}
@@ -63,6 +63,7 @@ func processTls12(_ connection: ObservedConnection) {
6363
let maybeBegin = findCommonNameStart(outPacket)
6464
guard let begin = maybeBegin else {
6565
NSLog("No common name beginning found \(outPacket as! NSData)")
66+
NSLog("\(connection.outgoingKey) \(connection.connectionID) \(outPacket.count)")
6667
return
6768
}
6869

AdversaryLabSwiftPackage/Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AdversaryLabSwiftPackage/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "AdversaryLabSwiftPackage",
77
dependencies: [
8-
.package(url: "https://github.com/OperatorFoundation/Auburn.git", from: "0.1.9"),
8+
.package(url: "https://github.com/OperatorFoundation/Auburn.git", from: "0.1.10"),
99
],
1010
targets: [
1111
.target(

0 commit comments

Comments
 (0)