Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarunkoyalwar/matthew
Cmd Client For Sandman
https://github.com/tarunkoyalwar/matthew
Last synced: 2 months ago
JSON representation
Cmd Client For Sandman
- Host: GitHub
- URL: https://github.com/tarunkoyalwar/matthew
- Owner: tarunKoyalwar
- License: bsd-3-clause
- Created: 2022-02-04T14:22:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-16T00:38:12.000Z (6 months ago)
- Last Synced: 2024-06-20T08:11:58.867Z (6 months ago)
- Language: Go
- Size: 3.44 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# matthew
Matthew is client app for [Sandman](https://github.com/tarunKoyalwar/Sandman.git)
This App is similar to linux `tee` and can be easily integrated to existing bash scripts .
# Installation Instructions
- Install Go
- Make Sure $GOPATH/bin is added to PATH env Variable
```sh
go install github.com/tarunKoyalwar/matthew@latest
```
# Usage
Before Using this Make Sure that Sandman App is Running . And WebServer is Started
You Can Start WebServer In Settings Page of Sandman App. By Default WebServer is always off
- Gets all Inscope Data
```sh
matthew pages -p in-scope
```
- Adds all unique subs to all-subs page```sh
bash subdomains.sh | matthew pages -p all-subs --post
```
- Adds all unique urls to all-urls page```sh
echo abc.com | gau | matthew pages -p all-urls --post
```
- Prints Your CheckList```sh
matthew web -L
```- Fetches sublist3r results of abc.com subdomain
```sh
matthew org -s abc.com -t sublist3r
```- Posts assetfinder results to checklist entry
that contains keyword assetfinder```sh
asserfinder abc.com | matthew org -t assetfinder --post
```- Prints Your Web CheckList
```sh
matthew web -L
```- Fetches nmap results of abc.com subdomain
```sh
matthew web -s abc.com -t nmap
```
- Posts assetfinder results```sh
asserfinder abc.com | matthew web -s abc.com -t assetfinder --post
```
- Fetches Subdomain that is currently Used```sh
matthew web --working
```## Other Options
```console
./matthew -h
An Awesome Client for Sandman that can easily be integrated to reconUsage:
matthew [command]Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
org Organization Checklist Page
pages Interact with other pages
web Web Checklists PageFlags:
-a, --append Append to Existing Data
-c, --chunk int Chunk Size While Writing to Network (default 10)
-h, --help help for matthew
--post Post Data to CheckList Item
-x, --proxy string Proxy URL
-u, --url string Rest API URL (default "http://127.0.0.1:8088")Use "matthew [command] --help" for more information about a command.
```