Last active
April 16, 2016 05:25
-
-
Save kaitoy/b6ee844ad2353585a30984ef0bedf844 to your computer and use it in GitHub Desktop.
Packet capture with Pcap4J in Kotlin script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.pcap4j.core.BpfProgram.BpfCompileMode | |
import org.pcap4j.core.NotOpenException | |
import org.pcap4j.core.PacketListener | |
import org.pcap4j.core.PcapHandle | |
import org.pcap4j.core.PcapNativeException | |
import org.pcap4j.core.PcapNetworkInterface | |
import org.pcap4j.core.PcapNetworkInterface.PromiscuousMode | |
import org.pcap4j.core.PcapStat | |
import org.pcap4j.packet.Packet | |
import org.pcap4j.util.NifSelector | |
fun PcapHandle.printLoop(count: Int) { | |
loop(count, {packet: Packet -> | |
println("A packet captured at ${getTimestamp()}:") | |
println(packet) | |
}) | |
} | |
val filter = if (args.size != 0) args[0] else null | |
val nif = NifSelector().selectNetworkInterface() | |
nif ?: System.exit(1) | |
val handle = nif.openLive(65536, PromiscuousMode.PROMISCUOUS, 10) | |
filter?.let { | |
if (filter.length != 0) { | |
handle.setFilter(filter, BpfCompileMode.OPTIMIZE) | |
} | |
} | |
handle.printLoop(count = 5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment