> For the complete documentation index, see [llms.txt](https://sec88.0x88.online/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sec88.0x88.online/web-appsec/reconnaissance/attacking-organizations-with-big-scopes.md).

# Attacking Organizations with big scopes

### Subdomain Enumeration

* Use BBOT it is the best <https://github.com/blacklanternsecurity/bbot>
* ```
  bbot -t ebay.com -f subdomain-enum
  ```

<figure><img src="/files/PpmW0G7K9YTftnvwoVDp" alt=""><figcaption></figcaption></figure>

### Reverse Whois

* <https://www.whoxy.com/>

### Virtual Hosts Identification

* Using Burp Intruder

<figure><img src="/files/OQme2o6qV8w51f9QSwI2" alt=""><figcaption></figcaption></figure>

* Using FFUF

```bash
ffuf -w namelist.txt -u http://10.129.184.109 -H "HOST: FUZZ.inlanefreight.htb".
```

* Gobuster

{% code overflow="wrap" %}

```bash
gobuster vhost -u http://10.129.118.153 -w namelist.txt -p pattern --exclude-length 301 -t 10
```

{% endcode %}

### ASN Mapping

* <https://bgp.he.net/>

```bash
cat iplist | cut -fi 
for i in $(cat iplist | cut -fi); do prips $i >> ips;done
cat fbsubs  
```

### Brute force IPs & Subdomains

```bash
for i in $(cat ips);do ffuf -w subs -u https://$i -H 'Host: FUZZ' -of csv -o $1.csv ; done
```

### Web Fuzzing

> Create Custom Wordlist of the target

* Grap All URLs using (gau,katana)

```bash
cat "$RESULTS_DIR/subs.txt" | gau | sort -u >> "$RESULTS_DIR/urls"
cat domains | httpx | katana | sort -u >> "$RESULTS_DIR/urls"
```

* LinkFinder on all urls

```bash
cat urls | rush -j10 "python3 LinkFinder/linkfinder.py -o cli -i {} | sort -u >> ouput"
```

* Sorting

```bash
cat urls output | tr "/" "\n" | sort -u | more 
```

* Dorking\
  The asterisks (\*) are wildcards that match any character(s). In this case, the dork will match any domain or subdomain that contains the word "example".

```bash
site:*<example>* 
site:atlassian>*
site:*<atlassian.*>* 
site:*<*yahoo.*>*
site:*yahoo.*
```

* Bing Dorking
  * Remember the IP list we got from ASN?
  * Use bing to find valid hosts on the server

```bash
Dork: “ip:127.0.0.1”
inbody:example
instreamset:(title url):example
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sec88.0x88.online/web-appsec/reconnaissance/attacking-organizations-with-big-scopes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
