├── README.md ├── WordPress_Malware_Scanner └── wp_malware_scan.sh ├── airflow ├── pve_auto_migrate.py ├── pve_auto_snapshot.py └── pve_monitor.py ├── amviz ├── amviz.html ├── demo0.png └── demo1.png ├── graylog ├── AD_Auditing_Content_Pack_for_Graylog_3.json ├── export_wdrop_iplist_to_file.py ├── get_blocklist_ciarmy_malicious.sh ├── get_blocklist_de.sh ├── get_extractor_exec_top.py ├── graylog-ntnx-pipeline │ ├── README.md │ ├── requirements.txt │ ├── setup_ntnx_pipeline.py │ └── 帳號登入範例.png ├── resend_adguardhome_log.py ├── resend_adguardhome_log_dashboard.json ├── resend_log_from_accesslog.py ├── resend_log_from_accesslog_bashboard.json ├── resend_packets_from_pcap.py ├── resend_packets_from_pcap_dashboard.json ├── resend_twstock-dashboard.json ├── resend_twstock.py ├── rscef-srv.py └── rscef.py ├── jt_log_analyzer ├── README.md ├── README_EN.md ├── demo1.png ├── demo2.png ├── demo3.png ├── jt_log_analyzer.py └── realtime1.gif ├── jt_nicmon ├── README.md ├── README_en.md └── jt_nicmon.sh ├── jt_pve2ova ├── README.md ├── README_zh-TW.md ├── jt_pve2ova.sh └── pve_vmdisk_zfs_to_ova.png ├── librenms ├── add_ips_device.sh ├── del_rrd_port_disable.py ├── email_gitshow_bydevice 通知郵件範例.png ├── email_gitshow_bydevice.py └── oxidized_dumpto_zip.py ├── mcp ├── README.md ├── mcp_graylog │ └── mcp_graylog.py ├── mcp_librenms │ ├── README.md │ └── mcp_librenms.py ├── mcp_odoo │ ├── README.md │ └── mcp_odoo.py ├── mcp_opnsense │ ├── README.md │ └── mcp_opnsense.py ├── mcp_phpipam │ ├── README.md │ └── mcp_phpipam.py └── mcp_pve │ ├── README.md │ ├── README_zh-TW.md │ └── mcp_pve.py ├── nagios_plugons ├── check_diff_webhtml ├── check_ext_ip ├── check_graylog_if ├── check_graylog_journal ├── check_pmg_queue ├── check_pve_cephosd └── check_udp_nmap ├── oomkill ├── README.md └── oomkill_java.sh ├── proxmoxve ├── README.md ├── bakpveconf.sh ├── pve01removevol.sh └── pve02migrate.sh ├── pve-disk-led ├── README.md ├── README_zh-TW.md ├── pve-disk-led.sh └── screenshot01.png ├── ubddns ├── README.md ├── renew_ubddns └── renew_ubddns.sh ├── wazuh ├── README.md ├── decoders │ ├── jasontools-sharetech-decorder.xml │ └── jasontools-zenarmor-decoder.xml ├── rules │ ├── jasontools-sharetech-rule.xml │ └── jasontools-zenarmor-rule.xml ├── update-malicious-ip.sh └── update-malware-hash-list.py └── zimbra ├── check_pwd_expire.py ├── gen_rand_all_pwd.py ├── get_account_quota_all.py ├── jt_zmmsgtrace ├── CHANGELOG.md ├── CHANGELOG_EN.md ├── README.md ├── README_EN.md ├── SECURITY.md ├── SECURITY_EN.md ├── images │ ├── 1 login.png │ ├── 1 login_en.png │ ├── 2 search.png │ ├── 2 search_en.png │ ├── 3 viewmail.png │ ├── 3 viewmail_en.png │ ├── 4 mailroute.png │ ├── 4 mailroute_en.png │ ├── 5 mailbody.png │ ├── 5 mailbody_en.png │ └── README.md └── jt_zmmsgtrace.py └── zm-reindex-all.sh /README.md: -------------------------------------------------------------------------------- 1 | # it-scripts 2 | 3 | 存放系統管理相關 script,以便取用。 -------------------------------------------------------------------------------- /WordPress_Malware_Scanner/wp_malware_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/WordPress_Malware_Scanner/wp_malware_scan.sh -------------------------------------------------------------------------------- /airflow/pve_auto_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/airflow/pve_auto_migrate.py -------------------------------------------------------------------------------- /airflow/pve_auto_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/airflow/pve_auto_snapshot.py -------------------------------------------------------------------------------- /airflow/pve_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/airflow/pve_monitor.py -------------------------------------------------------------------------------- /amviz/amviz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/amviz/amviz.html -------------------------------------------------------------------------------- /amviz/demo0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/amviz/demo0.png -------------------------------------------------------------------------------- /amviz/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/amviz/demo1.png -------------------------------------------------------------------------------- /graylog/AD_Auditing_Content_Pack_for_Graylog_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/AD_Auditing_Content_Pack_for_Graylog_3.json -------------------------------------------------------------------------------- /graylog/export_wdrop_iplist_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/export_wdrop_iplist_to_file.py -------------------------------------------------------------------------------- /graylog/get_blocklist_ciarmy_malicious.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/get_blocklist_ciarmy_malicious.sh -------------------------------------------------------------------------------- /graylog/get_blocklist_de.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/get_blocklist_de.sh -------------------------------------------------------------------------------- /graylog/get_extractor_exec_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/get_extractor_exec_top.py -------------------------------------------------------------------------------- /graylog/graylog-ntnx-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/graylog-ntnx-pipeline/README.md -------------------------------------------------------------------------------- /graylog/graylog-ntnx-pipeline/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.31.0 2 | -------------------------------------------------------------------------------- /graylog/graylog-ntnx-pipeline/setup_ntnx_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/graylog-ntnx-pipeline/setup_ntnx_pipeline.py -------------------------------------------------------------------------------- /graylog/graylog-ntnx-pipeline/帳號登入範例.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/graylog-ntnx-pipeline/帳號登入範例.png -------------------------------------------------------------------------------- /graylog/resend_adguardhome_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_adguardhome_log.py -------------------------------------------------------------------------------- /graylog/resend_adguardhome_log_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_adguardhome_log_dashboard.json -------------------------------------------------------------------------------- /graylog/resend_log_from_accesslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_log_from_accesslog.py -------------------------------------------------------------------------------- /graylog/resend_log_from_accesslog_bashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_log_from_accesslog_bashboard.json -------------------------------------------------------------------------------- /graylog/resend_packets_from_pcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_packets_from_pcap.py -------------------------------------------------------------------------------- /graylog/resend_packets_from_pcap_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_packets_from_pcap_dashboard.json -------------------------------------------------------------------------------- /graylog/resend_twstock-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_twstock-dashboard.json -------------------------------------------------------------------------------- /graylog/resend_twstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/resend_twstock.py -------------------------------------------------------------------------------- /graylog/rscef-srv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/rscef-srv.py -------------------------------------------------------------------------------- /graylog/rscef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/graylog/rscef.py -------------------------------------------------------------------------------- /jt_log_analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/README.md -------------------------------------------------------------------------------- /jt_log_analyzer/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/README_EN.md -------------------------------------------------------------------------------- /jt_log_analyzer/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/demo1.png -------------------------------------------------------------------------------- /jt_log_analyzer/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/demo2.png -------------------------------------------------------------------------------- /jt_log_analyzer/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/demo3.png -------------------------------------------------------------------------------- /jt_log_analyzer/jt_log_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/jt_log_analyzer.py -------------------------------------------------------------------------------- /jt_log_analyzer/realtime1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_log_analyzer/realtime1.gif -------------------------------------------------------------------------------- /jt_nicmon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_nicmon/README.md -------------------------------------------------------------------------------- /jt_nicmon/README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_nicmon/README_en.md -------------------------------------------------------------------------------- /jt_nicmon/jt_nicmon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_nicmon/jt_nicmon.sh -------------------------------------------------------------------------------- /jt_pve2ova/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_pve2ova/README.md -------------------------------------------------------------------------------- /jt_pve2ova/README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_pve2ova/README_zh-TW.md -------------------------------------------------------------------------------- /jt_pve2ova/jt_pve2ova.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_pve2ova/jt_pve2ova.sh -------------------------------------------------------------------------------- /jt_pve2ova/pve_vmdisk_zfs_to_ova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/jt_pve2ova/pve_vmdisk_zfs_to_ova.png -------------------------------------------------------------------------------- /librenms/add_ips_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/librenms/add_ips_device.sh -------------------------------------------------------------------------------- /librenms/del_rrd_port_disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/librenms/del_rrd_port_disable.py -------------------------------------------------------------------------------- /librenms/email_gitshow_bydevice 通知郵件範例.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/librenms/email_gitshow_bydevice 通知郵件範例.png -------------------------------------------------------------------------------- /librenms/email_gitshow_bydevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/librenms/email_gitshow_bydevice.py -------------------------------------------------------------------------------- /librenms/oxidized_dumpto_zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/librenms/oxidized_dumpto_zip.py -------------------------------------------------------------------------------- /mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/README.md -------------------------------------------------------------------------------- /mcp/mcp_graylog/mcp_graylog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_graylog/mcp_graylog.py -------------------------------------------------------------------------------- /mcp/mcp_librenms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_librenms/README.md -------------------------------------------------------------------------------- /mcp/mcp_librenms/mcp_librenms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_librenms/mcp_librenms.py -------------------------------------------------------------------------------- /mcp/mcp_odoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_odoo/README.md -------------------------------------------------------------------------------- /mcp/mcp_odoo/mcp_odoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_odoo/mcp_odoo.py -------------------------------------------------------------------------------- /mcp/mcp_opnsense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_opnsense/README.md -------------------------------------------------------------------------------- /mcp/mcp_opnsense/mcp_opnsense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_opnsense/mcp_opnsense.py -------------------------------------------------------------------------------- /mcp/mcp_phpipam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_phpipam/README.md -------------------------------------------------------------------------------- /mcp/mcp_phpipam/mcp_phpipam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_phpipam/mcp_phpipam.py -------------------------------------------------------------------------------- /mcp/mcp_pve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_pve/README.md -------------------------------------------------------------------------------- /mcp/mcp_pve/README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_pve/README_zh-TW.md -------------------------------------------------------------------------------- /mcp/mcp_pve/mcp_pve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/mcp/mcp_pve/mcp_pve.py -------------------------------------------------------------------------------- /nagios_plugons/check_diff_webhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_diff_webhtml -------------------------------------------------------------------------------- /nagios_plugons/check_ext_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_ext_ip -------------------------------------------------------------------------------- /nagios_plugons/check_graylog_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_graylog_if -------------------------------------------------------------------------------- /nagios_plugons/check_graylog_journal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_graylog_journal -------------------------------------------------------------------------------- /nagios_plugons/check_pmg_queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_pmg_queue -------------------------------------------------------------------------------- /nagios_plugons/check_pve_cephosd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_pve_cephosd -------------------------------------------------------------------------------- /nagios_plugons/check_udp_nmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/nagios_plugons/check_udp_nmap -------------------------------------------------------------------------------- /oomkill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/oomkill/README.md -------------------------------------------------------------------------------- /oomkill/oomkill_java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/oomkill/oomkill_java.sh -------------------------------------------------------------------------------- /proxmoxve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/proxmoxve/README.md -------------------------------------------------------------------------------- /proxmoxve/bakpveconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/proxmoxve/bakpveconf.sh -------------------------------------------------------------------------------- /proxmoxve/pve01removevol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/proxmoxve/pve01removevol.sh -------------------------------------------------------------------------------- /proxmoxve/pve02migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/proxmoxve/pve02migrate.sh -------------------------------------------------------------------------------- /pve-disk-led/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/pve-disk-led/README.md -------------------------------------------------------------------------------- /pve-disk-led/README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/pve-disk-led/README_zh-TW.md -------------------------------------------------------------------------------- /pve-disk-led/pve-disk-led.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/pve-disk-led/pve-disk-led.sh -------------------------------------------------------------------------------- /pve-disk-led/screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/pve-disk-led/screenshot01.png -------------------------------------------------------------------------------- /ubddns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/ubddns/README.md -------------------------------------------------------------------------------- /ubddns/renew_ubddns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/ubddns/renew_ubddns -------------------------------------------------------------------------------- /ubddns/renew_ubddns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/ubddns/renew_ubddns.sh -------------------------------------------------------------------------------- /wazuh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/README.md -------------------------------------------------------------------------------- /wazuh/decoders/jasontools-sharetech-decorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/decoders/jasontools-sharetech-decorder.xml -------------------------------------------------------------------------------- /wazuh/decoders/jasontools-zenarmor-decoder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/decoders/jasontools-zenarmor-decoder.xml -------------------------------------------------------------------------------- /wazuh/rules/jasontools-sharetech-rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/rules/jasontools-sharetech-rule.xml -------------------------------------------------------------------------------- /wazuh/rules/jasontools-zenarmor-rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/rules/jasontools-zenarmor-rule.xml -------------------------------------------------------------------------------- /wazuh/update-malicious-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/update-malicious-ip.sh -------------------------------------------------------------------------------- /wazuh/update-malware-hash-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/wazuh/update-malware-hash-list.py -------------------------------------------------------------------------------- /zimbra/check_pwd_expire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/check_pwd_expire.py -------------------------------------------------------------------------------- /zimbra/gen_rand_all_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/gen_rand_all_pwd.py -------------------------------------------------------------------------------- /zimbra/get_account_quota_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/get_account_quota_all.py -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/CHANGELOG.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/CHANGELOG_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/CHANGELOG_EN.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/README.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/README_EN.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/SECURITY.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/SECURITY_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/SECURITY_EN.md -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/1 login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/1 login.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/1 login_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/1 login_en.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/2 search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/2 search.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/2 search_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/2 search_en.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/3 viewmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/3 viewmail.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/3 viewmail_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/3 viewmail_en.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/4 mailroute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/4 mailroute.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/4 mailroute_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/4 mailroute_en.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/5 mailbody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/5 mailbody.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/5 mailbody_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/images/5 mailbody_en.png -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/images/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /zimbra/jt_zmmsgtrace/jt_zmmsgtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/jt_zmmsgtrace/jt_zmmsgtrace.py -------------------------------------------------------------------------------- /zimbra/zm-reindex-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasoncheng7115/it-scripts/HEAD/zimbra/zm-reindex-all.sh --------------------------------------------------------------------------------