Store Java raw InputStream data as PCAP to view in Wireshark
I'm trying to build a transparent proxy in Java with the ability to record data that passed through to be viewed later in wireshark.
I was able to get the proxy working correctly with this snippet
private static final int BUFFER_SIZE = 8192;
...
public void run() {
PcapHandle handle = null;
PcapDumper dumper;
try {
InetAddress addr = InetAddress.getByName("localhost");
PcapNetworkInterface nif = Pcaps.getDevByAddress(addr);
int snapLen = 65536;
PcapNetworkInterface.PromiscuousMode mode = PcapNetworkInterface.PromiscuousMode.PROMISCUOUS;
int timeout = 10;
handle = nif.openLive(snapLen, mode, timeout);
dumper = handle.dumpOpen("cap.pcap");
byte buffer = new byte[BUFFER_SIZE];
try {
while (true) {
int bytesRead = mInputStream.read(buffer);
if (bytesRead == -1)
break; // End of stream is reached --> exit
mOutputStream.write(buffer, 0, bytesRead);
dumper.dumpRaw(Arrays.copyOfRange(buffer, 0, bytesRead));
mOutputStream.flush();
}
} catch (IOException e) {
// Read/write failed --> connection is broken
}
dumper.close();
} catch (PcapNativeException e) {
e.printStackTrace();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (NotOpenException e) {
e.printStackTrace();
}
}
As you may notice I'm using Pcap4J to store raw bytes into a pcap file. The saving of the bytes works well but when I try to open it on wireshark it shows this message:
Error
And every packet shows as malformed. Ideally I would be seeing TCP and CQL (Cassandra) packets.
Can anyone tell me what I'm doing wrong here?
java inputstream wireshark pcap pcap4j
add a comment |
I'm trying to build a transparent proxy in Java with the ability to record data that passed through to be viewed later in wireshark.
I was able to get the proxy working correctly with this snippet
private static final int BUFFER_SIZE = 8192;
...
public void run() {
PcapHandle handle = null;
PcapDumper dumper;
try {
InetAddress addr = InetAddress.getByName("localhost");
PcapNetworkInterface nif = Pcaps.getDevByAddress(addr);
int snapLen = 65536;
PcapNetworkInterface.PromiscuousMode mode = PcapNetworkInterface.PromiscuousMode.PROMISCUOUS;
int timeout = 10;
handle = nif.openLive(snapLen, mode, timeout);
dumper = handle.dumpOpen("cap.pcap");
byte buffer = new byte[BUFFER_SIZE];
try {
while (true) {
int bytesRead = mInputStream.read(buffer);
if (bytesRead == -1)
break; // End of stream is reached --> exit
mOutputStream.write(buffer, 0, bytesRead);
dumper.dumpRaw(Arrays.copyOfRange(buffer, 0, bytesRead));
mOutputStream.flush();
}
} catch (IOException e) {
// Read/write failed --> connection is broken
}
dumper.close();
} catch (PcapNativeException e) {
e.printStackTrace();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (NotOpenException e) {
e.printStackTrace();
}
}
As you may notice I'm using Pcap4J to store raw bytes into a pcap file. The saving of the bytes works well but when I try to open it on wireshark it shows this message:
Error
And every packet shows as malformed. Ideally I would be seeing TCP and CQL (Cassandra) packets.
Can anyone tell me what I'm doing wrong here?
java inputstream wireshark pcap pcap4j
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36
add a comment |
I'm trying to build a transparent proxy in Java with the ability to record data that passed through to be viewed later in wireshark.
I was able to get the proxy working correctly with this snippet
private static final int BUFFER_SIZE = 8192;
...
public void run() {
PcapHandle handle = null;
PcapDumper dumper;
try {
InetAddress addr = InetAddress.getByName("localhost");
PcapNetworkInterface nif = Pcaps.getDevByAddress(addr);
int snapLen = 65536;
PcapNetworkInterface.PromiscuousMode mode = PcapNetworkInterface.PromiscuousMode.PROMISCUOUS;
int timeout = 10;
handle = nif.openLive(snapLen, mode, timeout);
dumper = handle.dumpOpen("cap.pcap");
byte buffer = new byte[BUFFER_SIZE];
try {
while (true) {
int bytesRead = mInputStream.read(buffer);
if (bytesRead == -1)
break; // End of stream is reached --> exit
mOutputStream.write(buffer, 0, bytesRead);
dumper.dumpRaw(Arrays.copyOfRange(buffer, 0, bytesRead));
mOutputStream.flush();
}
} catch (IOException e) {
// Read/write failed --> connection is broken
}
dumper.close();
} catch (PcapNativeException e) {
e.printStackTrace();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (NotOpenException e) {
e.printStackTrace();
}
}
As you may notice I'm using Pcap4J to store raw bytes into a pcap file. The saving of the bytes works well but when I try to open it on wireshark it shows this message:
Error
And every packet shows as malformed. Ideally I would be seeing TCP and CQL (Cassandra) packets.
Can anyone tell me what I'm doing wrong here?
java inputstream wireshark pcap pcap4j
I'm trying to build a transparent proxy in Java with the ability to record data that passed through to be viewed later in wireshark.
I was able to get the proxy working correctly with this snippet
private static final int BUFFER_SIZE = 8192;
...
public void run() {
PcapHandle handle = null;
PcapDumper dumper;
try {
InetAddress addr = InetAddress.getByName("localhost");
PcapNetworkInterface nif = Pcaps.getDevByAddress(addr);
int snapLen = 65536;
PcapNetworkInterface.PromiscuousMode mode = PcapNetworkInterface.PromiscuousMode.PROMISCUOUS;
int timeout = 10;
handle = nif.openLive(snapLen, mode, timeout);
dumper = handle.dumpOpen("cap.pcap");
byte buffer = new byte[BUFFER_SIZE];
try {
while (true) {
int bytesRead = mInputStream.read(buffer);
if (bytesRead == -1)
break; // End of stream is reached --> exit
mOutputStream.write(buffer, 0, bytesRead);
dumper.dumpRaw(Arrays.copyOfRange(buffer, 0, bytesRead));
mOutputStream.flush();
}
} catch (IOException e) {
// Read/write failed --> connection is broken
}
dumper.close();
} catch (PcapNativeException e) {
e.printStackTrace();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (NotOpenException e) {
e.printStackTrace();
}
}
As you may notice I'm using Pcap4J to store raw bytes into a pcap file. The saving of the bytes works well but when I try to open it on wireshark it shows this message:
Error
And every packet shows as malformed. Ideally I would be seeing TCP and CQL (Cassandra) packets.
Can anyone tell me what I'm doing wrong here?
java inputstream wireshark pcap pcap4j
java inputstream wireshark pcap pcap4j
edited Nov 20 '18 at 12:38
ggfpc
asked Nov 19 '18 at 20:08
ggfpcggfpc
316
316
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36
add a comment |
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381909%2fstore-java-raw-inputstream-data-as-pcap-to-view-in-wireshark%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53381909%2fstore-java-raw-inputstream-data-as-pcap-to-view-in-wireshark%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@KarolDowbecki It's 8192, I edited the post to reflect that.
– ggfpc
Nov 19 '18 at 20:15
Are you running on Windows or Linux ? Check the file correctly starts with the magic bytes as suggested on Hani's blog. The problem can be further, but let's start by the beginning.
– Eugène Adell
Nov 19 '18 at 22:12
@EugèneAdell I'm running Ubuntu. I managed to surpass the error by only writing to the file the amount of data read from the inputstream instead of the full buffer, but every packet looks like an ethernet packet in wireshark instead of CQL
– ggfpc
Nov 20 '18 at 12:36