CaptureServerDemo icon indicating copy to clipboard operation
CaptureServerDemo copied to clipboard

Web structure incomplete?

Open moorer2k opened this issue 6 years ago • 2 comments

I've been trying to get this to work properly, it's sending successfully but no data is being sent to the tomcat server. Could you possibly have this save to a more traditional format, like a cap or pcap, maybe even json or even SAZ (for fiddler importing?).

I love the project! Please keep up the work!

Both of these are from SSLCapture, but neither contain any data, just empty.

image

moorer2k avatar Oct 06 '18 21:10 moorer2k

@huolizhuminh any news?

imKota avatar Jan 04 '19 20:01 imKota

It seems like the upload in the app itself is incomplete.

I wrote a very simple vercel endpoint:

import { send } from 'micro'
import { upload } from 'micro-upload'

export default upload(async (req, res) => {
  console.log((req && req.files && req.files.txt).data.toString())
  send(res, 200, 'OK')
})

I checked req.files for other uploads, and txt is it.

For a pretty big request, I got this:

Request Head:

and that's it.

@huolizhuminh Is upload broken? it seems like save and share is also broken, so I'm going to get a refund for the NetKeeper app. If you fix it, I'll purchase it, again. I agree, pcap would be very easy to work with. You can read more about the format here. Here is a nice java lib for handling the format, but that may be a bit hefty for simply assembling the 2 typedefs.

konsumer avatar Dec 02 '20 08:12 konsumer