如何转换编码的pcap文件以在python中解码文本

时间:2019-04-06 08:19:47

标签: python python-3.x python-2.7

我已经编码了.pcap文件,我希望仅使用语音信息(有效载荷)来解码.pcap文件

我正在使用python 3.7

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link rel="stylesheet" href="./css/index.css" />
    <title>MarkDown</title>
  </head>
  <body>
    <!-- HTML -->
    <div id="app">
      <div id="html-container">
        <h2>HTML</h2>
        <section>
          <label for="html-area"></label>
          <textarea
            name="html-area"
            placeholder="type html here..."
            id="html-area"
          ></textarea>
        </section>
      </div>
      <!-- Markdown -->
      <section id="markdown-container">
        <h2>MarkDown</h2>
        <div>
          <div
            id="markdown-area"
          >Markdown text will show here...</div>
        </div>
      </section>
    </div>
    <script src="./index.js"></script>
  </body>
</html>

我必须解码.pcap文件并将.pcap文件保存在文本文档中,该文本文档应仅包含二进制数字且仅包含有效载荷信息

0 个答案:

没有答案