0w0
[primalsecurity] 0x00 - python tutorials 본문
Primalsecurity/Primalsecurity_Python-tutorials
[primalsecurity] 0x00 - python tutorials
0w0 2019. 12. 10. 04:51728x90
반응형
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>
보안전문가들을 위한 파이썬 스크립트 튜토리얼
0x7 – Web Scanning and Exploitation
0xA – Python for Metasploit Automation
728x90
반응형
'Primalsecurity > Primalsecurity_Python-tutorials' 카테고리의 다른 글
[primalsecurity] 0x3 – Fuzzer (0) | 2019.12.21 |
---|---|
[primalsecurity] 0x2 – Reverse Shell (0) | 2019.12.19 |
[primalsecurity] 0x1 – Port Scanner (0) | 2019.12.18 |
[primalsecurity] 0x0 – Getting Started Pt.2 (0) | 2019.12.17 |
[primalsecurity] 0x0 – Getting Started (0) | 2019.12.14 |
Comments