Skip to content

mynameisfathima/PenetrationTesting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PT Toolkit,

This outlines all the activities of a drop-in replacment for a pentesting tool, inspired from nuclei. This is a hobby project to learn workings of an application and integrate with LLM in the future


Anatomy of Yaml

id: "login page checker"
info:
  name: "See if Login page exist"
  author: "DanBrown47"
  severity: "medium"

requests:

- method: GET
  path:
  - "{{BaseURL}}/login"
- matchers:
  - type: regex
    pattern: "(?i)login"
  - type: status
    status:

    - 200

In the above yaml it is expected the application sends a request to baseURL and route login, then it checks if the response hits 200 as well as if the page contains the name "login" which is done by the regex.

Test Case 1 python3 main.py https://google.com templates/http ---

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages