Saker: Penetrate Testing Auxiliary Suite

Saker is a penetration utility suite . It can be used to gather information of subdomains, infiltrate / scan the website, hide some vulnerabilities, brute password and dirs.

Installation

git clone https://github.com/LyleMi/Saker.git
pip -r requirements.txt
python setup.py install

or

pip install Saker

Use

Scan Website

from saker.core.scaner import Saker s = Saker ("http://127.0.0.1") s.scan (filename = "index.php", ext = "php")

Generate fuzz

from saker.fuzzer.code import Code payload = Code.fuzzErrorUnicode (payload)
from saker.fuzzers.ssi import SSI payloads = SSI.test ()

Brute password or others

from saker.brute.dir import DirBrute dirBrute = DirBrute ("php", "index.php") paths = dirBrute.weakfiles ()

Call Third Party APIs

Crt.sh

from saker.api.crtsh import crtsh crtsh ("github.com")

DNSDumper

from saker.api.dnsdumper import DNSdumpster DNSdumpster ("github.com")

Github API

from saker.api.githubapi import GithubAPI g = GithubAPI () g.gatherByEmail ("@ github.com")

SQLMap API

from saker.api.sqlmap import SQLMap options = {"url": "https://github.com"} SQLMap (). scan (options)

Handle HTML

from saker.handler.htmlhandler import HTMLHandler h = HTMLHandler("title") print(h.title)

Scanner Port

from saker.port.nmap import Nmap n = Nmap (domain) ret = n.run () print (n.ret)

Special

from saker..socket.dnsrebinding import RebindingServer values ​​= { 'result': ['8.8.8.8', '127.0.0.1'], 'index': 0 } dnsServer = RebindingServer(values) dnsServer.serve_forever()

Information about the application, you will find here.

iGuRu.gr The Best Technology Site in Greecefgns

every publication, directly to your inbox

Join the 2.086 registrants.

Written by Anastasis Vasileiadis

Translations are like women. When they are beautiful they are not faithful and when they are faithful they are not beautiful.

Leave a reply

Your email address is not published. Required fields are mentioned with *

Your message will not be published if:
1. Contains insulting, defamatory, racist, offensive or inappropriate comments.
2. Causes harm to minors.
3. It interferes with the privacy and individual and social rights of other users.
4. Advertises products or services or websites.
5. Contains personal information (address, phone, etc.).