wr0x00 / Lizard

A python-based network security penetration testing tool.一款基于python的web安全渗透测试集成工具

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lizard

English|简体中文

https://www.python.org OSCS Status

本程序屎山代码已不再维护,请各位客官移步至升级版Lsploit,继承并扩充了更丰富的功能,速度更加高效,代码更加简洁,易操作 以品尝沥血之作😅😅

Lizard is a python-based network security penetration testing tool,integrate multiple functions and it can even run on termux(Android).

Function

  • Sniffing: port scanning, IP probing, blasting, shodan scanning, website directory background scanning, whois query, CMS scanning, poc detection

  • Webshell connection (currently only supports analog terminal function, will be improved in the future)

  • dos attack, ddos attack (external module, python2 required, python3 is under development)

  • exp utilization

Tested on

  • Windows
  • kali Linux
  • termux(Android)
  • Debian
  • Arch Linux

Installing

  git clone https://github.com/wr0x00/Lizard
  cd Lizard
  python.exe -m pip install --upgrade pip
  pip install -r requirement.txt

Usage

   python lizard.py --help
  • -a Enable proxy, enter the address, and if necessary, add this parameter after the following options
  • -m Connect to MySQL, enter the address, username, password in turn
    • Example: python lizard.py -m localhost root 1234
  • -sp Scan open ports, enter target IP
    • Example: python lizard.py -sp 192.168.1.1
  • -whois whois lookup, enter the URL
  • -shodan shodan keyword batch search IP, can also scan the port individually
    • Example: python lizard.py -shodan abc
    • Example: python lizard.py -shodan www.xxx.com *-sw scans the website directory, enters the URL, -d specifies the dictionary, the default dictionary dict .txt, -t specifies the thread, defaults to 60
    • Example: python lizard.py -sw www.xxx.com (-d xxx.txt)(-t xx)
  • -c Perform a CMS scan, enter the URL
  • -ssh ssh Brute force cracking, -rh specifies the address, -u specifies the user (default root), -rp specifies the port (default 22), -d specifies the dictionary (default modelespwddicpasswordtop1000.txt)
    • Example: python lizard.py -ssh -rp 192.168.1.1 (-u xxx -rp xx -d xxx.txt)
    • Webshell Connect php one sentence, enter the URL, password in turn Example: python lizard.py -webshell www.xxx.com/abc.php 123
  • -ddos ddos attack
    • Example: Python lizard.py -ddos
  • -poc poc batch scan -rp specified port (default 80)
    • Example: python lizard.py -poc 192.168.1.1 (-rp xx)
  • -exp - Specify multiple exp (vulnerability name with short horizontal strips after cve and written in cveXXXX-XXXX format) - expip target ip -rp specify port (automatically scan if not specified)
    • Example: python lizard.py -exp cve2018-9995 -expip xxx.xxx.xxx.xxx -rp xx
    • Example: python lizard.py -exp cve2018-9995 cve2022-21907 -expip xxx.xxx.xxx.xxx -rp xx
  • -subdomain blast directory subdomain, -d specifies dictionary (default modulessubdomain.txt)
    • Example: python lizard.py -subdomain www.xxx.com (-d xxx.txt)

Tip:The first time you use the program, you will be asked to select the language

  choose your local language/选择你的语言(EN|CN):

choose EN.

API usage

Lizard has Python API that can be invoked by importing lizard's modules to your code.

import modules.~

#Modules' files and functions:
   modules.sniff:
      whois_sniff(URL) #whois lookup
      shodan_search(str) #shodan keyword batch search IP
      start_dirscan(URL,Dict,thread)  # scans the website directory
      isurl(url)->bool #determine if the address is online
      ScanPort(url).start() #scan opened port
   modules.ssh:
      force_ssh(host,pwddict,users='root',port=22)#ssh Brute force cracking
   modules.webshell:
      exp(url,passwd)#webshell connect
   modules.cms:
      cms(url) #Perform a CMS scan
   modules.subdomain:
      subdomain(domain, dictonary)#blast directory subdomain
   modules.dosattack:
      exp(host:str,port:str,thread:int)#dos attack

Example

scan www.xxx.com directory

from modules.sniff import start_dirscan
start_dirscan(www.xxx.com)

The project is only used for the purpose of learning and communication, Any legal liability violated by the user has nothing to do with the author of this project, and all unauthorized test actions are illegal, please stay sober.

About

A python-based network security penetration testing tool.一款基于python的web安全渗透测试集成工具

License:Other


Languages

Language:Python 100.0%