Jump to content
Usr6

Python for InfoSec professionals

Recommended Posts

Posted

~# python

>>> import urllib

>>> from bs4 import BeautifulSoup

>>> url = urllib.urlopen("http://www.primalsecurity.net")

>>> output = BeautifulSoup(url.read(), 'lxml')

>>> output.title

<title>Primal Security Podcast</title>

>>>

This tutorial series is designed for those who don’t come from a programming background. Each tutorial will cover common use cases for Python scripting geared for InfoSec professionals. From “Hello World” to custom Python malware, and exploits:

  • 0×0 – Getting Started
  • 0×1 – Port Scanner
  • 0×2 – Reverse Shell
  • 0×3 – Fuzzer
  • 0×4 – Python to EXE
  • 0×5 – Web Requests
  • 0×6 – Spidering
  • 0×7 – Web Scanning and Exploitation
  • 0×8 – Whois Automation
  • 0×9 – Command Automation
  • 0xA – Python for Metasploit Automation
  • 0xB – Pseudo-Terminal
  • 0xC – Python Malware

Python Tutorials ? Primal Security Podcast

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...