You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Easy EASM is just that... the easiest to set-up tool to give your organization visibility into its external facing assets.
6
8
7
9
The industry is dominated by $30k vendors selling "Attack Surface Management," but OG bug bounty hunters and red teamers know the truth. External ASM was born out of the bug bounty scene. Most of these $30k vendors use this open-source tooling on the backend.
8
10
9
11
With ten lines of setup or less, using open source tools, and one button deployment, Easy EASM will give your organization a complete view of your online assets. Easy EASM scans you daily and alerts you via Slack or Discord on newly found assets! Easy EASM also spits out an Excel skeleton for a Risk Register or Asset Database! This isn't rocket science.. but it's USEFUL. Don't get scammed. Grab Easy EASM and feel confident you know what's facing attackers on the internet.
10
12
11
-
# Installation
13
+
## Installation
14
+
12
15
```sh
13
16
go install github.com/g0ldencybersec/EasyEASM/easyeasm@latest
14
17
```
15
18
16
-
# Example Config file
17
-
The tool will expect a configuration file named "config.yml" to be in the directory you are running from. An example of this yml file is below:
19
+
## Example Config file
20
+
21
+
The tool expects a configuration file named `config.yml` to be in the directory you are running from.
22
+
23
+
Here is example of this yaml file:
24
+
18
25
```yaml
19
26
# EasyEASM configurations
20
27
runConfig:
21
28
domains: # List root domains here.
22
29
- example.com
23
30
- mydomain.com
24
-
slack: https://hooks.slack.com/services/DUMMYDATA/DUMMYDATA/RANDOM # Slack webhook url for slack notificaitions.
25
-
discord: https://discord.com/api/webhooks/DUMMYURL/Dasdfsdf # Discord webhook for discord notifications.
26
-
runType: fast # Set to either fast (Passive enum) or complete (Active enumeration).
31
+
slack: https://hooks.slack.com/services/DUMMYDATA/DUMMYDATA/RANDOM # Slack webhook url for Slack notifications.
32
+
discord: https://discord.com/api/webhooks/DUMMYURL/Dasdfsdf # Discord webhook for Discord notifications.
33
+
runType: fast # Set to either fast (passive enum) or complete (active enumeration).
27
34
activeWordList: subdomainWordlist.txt
28
35
activeThreads: 100
29
36
```
30
37
31
-
# Running the tool
32
-
To run the tool, fill out the config file then simply run the easyeasm module:
38
+
## Usage
39
+
40
+
To run the tool, fill out the config file: `config.yml`. Then, run the `easyeasm` module:
41
+
33
42
```sh
34
-
$ ./easyeasm
43
+
./easyeasm
35
44
```
36
-
After the run is complete you should see the output CSV (EasyEASM.csv) in the run directory. This can be added to your asset database and risk register!
45
+
46
+
After the run is complete, you should see the output CSV (`EasyEASM.csv`) in the run directory. This CSV can be added to your asset database and risk register!
47
+
48
+
## Warranty
49
+
50
+
## License
51
+
52
+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) for details.
0 commit comments