Results 1 to 6 of 6

Thread: hex dump help

  1. #1

    hex dump help

    how can u capture packets and turn them into a file? what kind of packet catcher or hex dump would i use?

  2. #2
    Senior Member
    Join Date
    Mar 2004
    Location
    Colorado
    Posts
    421
    While I would love to help you, your question lacks enough detail to respond in a properly pithy
    manner.

    This quideline may help you form better questions.

    http://www.catb.org/~esr/faqs/smart-questions.html

  3. #3
    "They know what your downloading by the requests to and from servers... if that isn't obvious enought... hex values of headers MZ, PE, (ect). This would indicate that you downloaded an executable even if its been renamed to executable.mp3

    If they could get a good hex dump from within the logs then they could have this converted back useing debug or something and have the file right on their own hard-drive. Or look back on the things you've connected to and then check it out themselves." Thespecialist


    what hex dump is that? and What kind or packet sniffer is that if it is one that they are using to make the logs?

  4. #4
    A hex dump, its just something that stores values to be converted back into an executable, jpg, mp3, & (ect)... don't worry about it. Almost any worthwhile network analysis tool will present the hex representation of characters. This is why I said it would be possable to rake through log files, grab the values from specific traffic in relation to ftp, tftp, & other services, then feed this into something like debug.

    Now stop makeing a big deal out of nothing and leave me the hell alone.

  5. #5
    well then what would u say is the most "worthwhile network analysis tool?"

  6. #6
    Just Another Geek
    Join Date
    Jul 2002
    Location
    Rotterdam, Netherlands
    Posts
    3,401

    Re: hex dump help

    Originally posted here by mad_fox9007
    how can u capture packets and turn them into a file? what kind of packet catcher or hex dump would i use?
    Code:
    # tcpdump -w mypackets.bin
    To read it do
    Code:
    # tcpdump -r mypackets.bin
    If you want the hex
    Code:
    # tcpdump -x -r mypackets.bin
    Oliver's Law:
    Experience is something you don't get until just after you need it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •