程序日记2018-05-14

新项目研究微擎 暂停cmswing研究

准备给一个项目扫描一下php后门,然后在伙伴的centos主机安装 php-malware-finder ,采用git clone 方式下载,谁知出现错误了!

  • git clone 提示 HTTP request failed

解决办法参考 https://blog.csdn.net/bravezhe/article/details/80192188
安装需求:

yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc
yum install gcc perl-ExtUtils-MakeMaker

卸载Centos自带的git1.7.1:

通过git –version查看系统带的版本,Cento6.5应该自带的是git版本是1.7.1

yum remove git
下载git2.2.1并将git添加到环境变量中

wget https://github.com/git/git/archive/v2.2.1.tar.gz
tar zxvf v2.2.1.tar.gz
cd git-2.2.1
make configure
./configure --prefix=/usr/local/git --with-iconv=/usr/local/libiconv
make all doc
make install install-doc install-html
echo "export PATH=$PATH:/usr/local/git/bin" >> /etc/bashrc
source /etc/bashrc

安装出现问题:

/bin/sh: line 1: xmlto: command not found
make[1]: *** [git-add.1] Error 127
make[1]: Leaving directory `/root/src/git/Documentation'
make: *** [doc] Error 2

4.2 安装xmlto
yum install xmlto

查看版本号

git --version
git version 2.2.1

发现仍然有问题,于是 :

yum -y update

成功了!

运行发现提示没有安装yara ```

./phpmalwarefinder -h

在这里复制一个最新版连接地址tar包 https://github.com/virustotal/yara/releases/tag/v3.7.1

wget ...

然后按照教程 https://yara.readthedocs.io/en/v3.7.0/gettingstarted.html
安装完了,扫描发现一些问题
需要时间分析一下。


  • 解决了微信调用地图问题

参考:https://blog.csdn.net/dunegao/article/details/76683505
微信小程序--wx:openLocation的坑
微信小程序api中没有详细介绍wx:openLocation的坑
错误写法:仅支持android,不支持iso

 gotothere:function(e){
        wx.openLocation({
          latitude: e.currentTarget.dataset.yaxis,
          longitude: e.currentTarget.dataset.xaxis,
          name: e.currentTarget.dataset.title,
          scale: 28
        })
  },
正确写法:
 gotothere:function(e){
        wx.openLocation({
          latitude: Number(e.currentTarget.dataset.yaxis),
          longitude: Number(e.currentTarget.dataset.xaxis),
          name: e.currentTarget.dataset.title,
          scale: 28
        })
  },

你可能感兴趣的:(程序日记2018-05-14)