Skip to content

Instantly share code, notes, and snippets.

View wangxiaomo's full-sized avatar
🇨🇳
hacking

wangxiaomo wangxiaomo

🇨🇳
hacking
View GitHub Profile
@wangxiaomo
wangxiaomo / WAHH_Task_Checklist.md
Created February 22, 2022 06:29 — forked from amotmot/WAHH_Task_Checklist.md
The Web Application Hacker's Handbook - Task Checklist - Github-Flavored Markdown
@wangxiaomo
wangxiaomo / ctf古典密码集合
Created August 31, 2021 07:12 — forked from wh1t3p1g/ctf古典密码集合
古典密码集合
下述密码均摘自互联网
【字母表顺序】-数字 
  加密的时候,经常要把A~Z这26个字母转换成数字,最常见的一种方法就是取字母表中的数字序号。A代表1,B代表2,C代表3... 
  字母 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
  数字 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 
@wangxiaomo
wangxiaomo / phpdangerousfuncs.md
Created August 2, 2021 14:08 — forked from mccabe615/phpdangerousfuncs.md
Dangerous PHP Functions

Command Execution

exec           - Returns last line of commands output
passthru       - Passes commands output directly to the browser
system         - Passes commands output directly to the browser and returns last line
shell_exec     - Returns commands output
\`\` (backticks) - Same as shell_exec()
popen          - Opens read or write pipe to process of a command
proc_open      - Similar to popen() but greater degree of control
pcntl_exec - Executes a program
@wangxiaomo
wangxiaomo / ip2dh.py
Created July 30, 2021 06:36 — forked from mzfr/ip2dh.py
Convert IP address to Decimal or hexadecimal format
"""
You can run this in the following format:
For decimal: python3 ip2dh.py D <Ip-address>
For Hexadecimal: python3 ip2dh.py H <Ip-address>
"""
#!/usr/bin/python3
import sys
if len(sys.argv) < 3: