在编译 PHP 时,如无特殊需要,一定禁止编译生成 CLI 命令行模式的 PHP 解析支持。可在编译时使用 –disable-CLI。一旦编译生成 CLI 模式的PHP,则可能会被入侵者利用该程序建立一个WEB Shell 后门进程或通过PHP 执行任意代码。 1.phpinfo() 功能描述:输出 ...
分类:
Web程序 时间:
2020-04-24 01:29:02
阅读次数:
64
全网最简单明了配置 当满足某些条件的时候,zabbix会以什么媒体类型(微信,百度,邮件,短信)发送给谁就是zabbix报警 作为运维人员,
分类:
其他好文 时间:
2020-04-12 10:46:52
阅读次数:
87
list1 = ['邮箱1', '邮箱2', '邮箱3']for username_recv in list1: mailserver = "smtp.163.com" # 邮箱服务器地址 username_send = '发送方邮箱名' # 邮箱用户名 password = '邮箱名' # 邮箱密 ...
分类:
编程语言 时间:
2020-04-01 12:53:42
阅读次数:
81
目前,随着新型冠状病毒(COVID-19)的全球范围内蔓延,海外地区现有确诊已经上升至 293683 (数据更新至 2020.03.25 16:54) 。为了更好了保证自身健康,我们必须了解正在影响?活所在地区的实际统计数据。 如何利用现有工具来事实追踪病情分布呢?近日,一个有趣的开源项目正好解决了 ...
分类:
编程语言 时间:
2020-03-28 16:27:41
阅读次数:
150
很久没有安装过zabbix,理论上应该是很简单,但是还是遇到好几个小问题,导致浪费了两个小时时间了要,特此记录一下 如果没有研发源码的能力,建议选择LTS版本 zabbix 4.0 官方安装文档: https://www.zabbix.com/documentation/4.0/zh/manual/ ...
分类:
其他好文 时间:
2020-03-21 18:06:21
阅读次数:
2412
email 模块 func SendMail(i int, err error) { e := email.NewEmail() e.From = "zj <896829948@qq.com>" e.To = []string{"13864264702@163.com"} e.Subject = " ...
分类:
其他好文 时间:
2020-03-20 17:17:46
阅读次数:
82
实现的功能 1.连接数据库 2.执行SQL 3.结果发邮件 4.使用crontab定时执行 使用到的shell命令 date mysql sendmail ...
分类:
系统相关 时间:
2020-02-23 20:11:37
阅读次数:
86
using System; using Outlook = Microsoft.Office.Interop.Outlook; namespace ConsoleApp5 { public static class MailHelper { public static void SendMail() ...
``` // SendMail connects to the server at addr, switches to TLS if // possible, authenticates with the optional mechanism a if possible, // and then s... ...
分类:
其他好文 时间:
2020-02-16 20:48:34
阅读次数:
77
效果图 main.cpp 1 #include <iostream> 2 #include "SendMail.h" 3 #include <string> 4 using namespace std; 5 6 int main() 7 { 8 char EmailContents[255]="Fr ...
分类:
其他好文 时间:
2020-02-12 13:03:41
阅读次数:
85