项目作者: SV-ZeroOne

项目描述 :
Repository of Personal Python Hacking Projects and Scripts
高级语言: Python
项目地址: git://github.com/SV-ZeroOne/Python-Projects.git
创建时间: 2017-06-24T14:25:48Z
项目社区:https://github.com/SV-ZeroOne/Python-Projects

开源协议:

下载


Python-Projects

This repo use to be my private hacking repository for Personal Python Hacking Projects and Scripts

I have now made it public for those who which to make use of some of the scripts

I cannot be held liable for any use of these scripts for malicious purposes, they should be strictly used for educational purposes!

Python Powered Scripts

Markdown Resources and Examples

:panda_face:

Bold

Beautiful

Bold and Beautiful

Test plain text

HTML Tags also seem to work in markdown

Image below ise inserted and formated with HTML img tag

Rick Sanchez

This line is inspired by Rick Sanchez:

To life is to risk it all, otherwise you are an inherent chuck of particles drifting wherver the universe takes you.

Code Block Example

Syntax highliting can be achieved by putting the programming language name beind the 3 ```

  1. import socket
  2. print "System Initializing"
  3. print "Establashing server"
  4. print "Hello World"
  5. def make_server(address, port):
  6. server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  7. server.bind((address, port))
  8. server.listen(5)
  9. make_server("localhost", 1337)
  10. print "We are listing"
  11. `
  1. No language indicated, so no syntax highlighting in Markdown Here (varies on Github).
  2. But let's throw in a <b>tag</b>.

Tables

There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don’t need to make the
raw Markdown line up prettily. You can also use inline Markdown.

Markdown Table Pretty
Still renders nicely
1 2 3