python server.py下载dns上文件

Posted journeyIT

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python server.py下载dns上文件相关的知识,希望对你有一定的参考价值。

1、对需要运行server.py脚本的服务器进行配置
2、在服务器上,执行python server.py -f fielname
3、在客户端上,运行sh client.sh dns.testdomain.com
4、这时你应该看到client和server开始产生base64的调试输出。client会把base64的编码写到本地文件中,同时在结束传输时解码

server.py下载地址

https://github.com/breenmachine/dnsftp

client.sh脚本

#!bash
#!/bin/bash
error=‘;; connection timed out; no servers could be reached‘
i=0
echo ‘‘> output.b64
while :
do
  RESP=`dig +short $i.$1 TXT | cut -d‘"‘ -f 2`
  if [ "$RESP" = "$error" ];
  then
    echo "Timeout - done"
    break
  fi
  echo -ne $RESP >> output.b64
  echo $RESP
  i=$((i+1))
done
cat output.b64 | base64 -d >> output

 

以上是关于python server.py下载dns上文件的主要内容,如果未能解决你的问题,请参考以下文章

python与html5 websocket开发聊天对话窗

文件传输server.py

python简易FTP服务器

python http通信实现

Python DNS模块导入错误

从 Python 中的相对路径导入