Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saeeddhqan/Maryam
Maryam: Open-source Intelligence(OSINT) Framework
https://github.com/saeeddhqan/Maryam
maryam osint owasp reconnaissance search-engine social-network
Last synced: about 1 month ago
JSON representation
Maryam: Open-source Intelligence(OSINT) Framework
- Host: GitHub
- URL: https://github.com/saeeddhqan/Maryam
- Owner: saeeddhqan
- License: gpl-3.0
- Created: 2019-10-13T18:03:04.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T18:18:53.000Z (3 months ago)
- Last Synced: 2024-10-31T22:16:56.259Z (about 1 month ago)
- Topics: maryam, osint, owasp, reconnaissance, search-engine, social-network
- Language: Python
- Homepage:
- Size: 1.67 MB
- Stars: 1,020
- Watchers: 37
- Forks: 165
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - saeeddhqan/Maryam - Maryam: Open-source Intelligence(OSINT) Framework (Python)
README
[![Build Status](https://app.travis-ci.com/saeeddhqan/Maryam.svg?branch=master)](https://app.travis-ci.com/github/saeeddhqan/Maryam)
![Version 2.5.3](https://img.shields.io/badge/Version-2.5.3-green.svg)
![GPLv3 License](https://img.shields.io/badge/License-GPLv3-green.svg)
![Python 3.12.x](https://img.shields.io/badge/Python-3.12.x-green.svg)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4577/badge)](https://bestpractices.coreinfrastructure.org/projects/4577)# OWASP Maryam
OWASP Maryam is a modular open-source framework based on OSINT and data gathering. It is designed to provide a robust environment to harvest data from open sources and search engines quickly and thoroughly.
# Installation
### Supported OS
- Linux
- FreeBSD
- Darwin
- OSX```bash
$ pip install maryam
```
Alternatively, you can install the latest version with the following command (Recommended):
```bash
pip install git+https://github.com/saeeddhqan/maryam.git
```# Usage
```bash
# Using dns_search. --max means all of resources. --api shows the results as json.
# .. -t means use multi-threading.
maryam -e dns_search -d ibm.com -t 5 --max --api --form
# Using youtube. -q means query
maryam -e youtube -q ""
maryam -e google -q ""
maryam -e dnsbrute -d domain.tld
# Show framework modules
maryam -e show modules
# Set framework options.
maryam -e set proxy ..
maryam -e set agent ..
maryam -e set timeout ..
# Run web API
maryam -e web api 127.0.0.1 1313
```# Contribution
Here is a start guide: [Development Guide](https://github.com/saeeddhqan/maryam/wiki/Development-Guide)
You can add a new search engine to the util classes or use the current search engines to write a new module.
The best help to write a new module is checking the current modules.# Roadmap
- Write a language model based search
# Links
### [OWASP](https://owasp.org/www-project-maryam/)
### [Wiki](https://github.com/saeeddhqan/maryam/wiki)
### [Install](https://github.com/saeeddhqan/maryam/wiki#install)
### [Modules Guide](https://github.com/saeeddhqan/maryam/wiki/modules)
### [Development Guide](https://github.com/saeeddhqan/maryam/wiki/Development-Guide)To report bugs, requests, or any other issues please [create an issue](https://github.com/saeeddhqan/maryam/issues).