-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated org api and fixed search apis in dashboard
- Loading branch information
1 parent
e907c7f
commit 93f43ea
Showing
17 changed files
with
180 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
|
||
<title>Mantis</title> | ||
<style> | ||
*{ | ||
box-sizing: border-box; | ||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; | ||
|
||
} | ||
.card { | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
.card:hover { | ||
transform: scale(1.05); /* Enlarge the card on hover */ | ||
} | ||
|
||
|
||
</style> | ||
</head> | ||
<body class="bg-gray-900"> | ||
<pre class="text-green-500"> | ||
|
||
__ __ _ _ | ||
| \/ | __ _ _ __ | |_(_)___ | ||
| |\/| |/ _` | '_ \| __| / __| | ||
| | | | (_| | | | | |_| \__ \ | ||
|_| |_|\__,_|_| |_|\__|_|___/ | ||
|
||
Recon Automation Framework (v1.0) | ||
|
||
usage: | ||
ONBOARD: (First time scan, Run this !!) | ||
|
||
mantis onboard -o example_org -t www.example.org | ||
mantis onboard -o example_org -f file.txt | ||
|
||
SCAN: | ||
|
||
mantis scan -o example_org | ||
mantis scan -o example_org -a example_app | ||
|
||
|
||
1. You can find the Mantis shell below where you can run mantis commands. Run help for further instructions. | ||
- You can always access Mantis container again using: docker exec -it mantis bash | ||
- For ease of use, run mantis-activate command anywhere on the system to exec into Mantis docker | ||
|
||
2. Mantis dashboard is accessible on the host's localhost port 8000 | ||
- For ease of use, you can access dashboard from your system at http://mantis.dashboard:8000 | ||
- You can access dashboard container using - docker exec -it mantis-dashboard bash | ||
|
||
3. You can access MongoDB container using: docker exec -it mongodb bash | ||
|
||
4. Mantis documentation is available at https://phonepe.github.io/mantis | ||
5. Get help and give feedback at https://discord.gg/uJV8Y3uSGu | ||
|
||
Mantis has been setup successfully on docker! | ||
|
||
<a href="/login" class="border-2 border-indigo-600 text-indigo-600 py-2 px-4 rounded-2xl">Login </a> | ||
</pre> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.