0w0

[primalsecurity] 0x00 - python tutorials 본문

Primalsecurity/Primalsecurity_Python-tutorials

[primalsecurity] 0x00 - python tutorials

0w0 2019. 12. 10. 04:51
728x90
반응형
1
2
3
4
5
6
7
import urllib.request
from bs4 import BeautifulSoup
 
url=urllib.request.urlopen("http://www.primalsecurity.net/tutorials/python-tutorials/")
output=BeautifulSoup(url.read(),'lxml')
print(output.title)
 
cs

출력

<title>Python Tutorials</title>

보안전문가들을 위한 파이썬 스크립트 튜토리얼

 

0x0 – Getting Started

0x0 – Getting Started Pt.2

0×1 – Port Scanner

0x2 – Reverse Shell

0x3 – Fuzzer

0x4 – Python to EXE

0x5 – Web Requests

0x6 – Spidering

0x7 – Web Scanning and Exploitation

0x8 – Whois Automation

0x9 – Command Automation

0xA – Python for Metasploit Automation

0xB – Pseudo-Terminal

0xC – Python Malware

Use Case: CVE-2014-6271

Use Case: CVE-2012-1823

Use Case: CVE-2012-3152

Use Case: CVE-2014-3704

 

 

728x90
반응형
Comments