nerdexam
EC-Council

312-50V11 · Question #895

What would be the fastest way to perform content enumeration on a given web server by using the Gobuster tool?

The correct answer is C. Performing content enumeration using a wordlist. Using a wordlist with Gobuster is the fastest enumeration method because it tests only known, high-probability paths rather than generating all possible character combinations.

Enumeration

Question

What would be the fastest way to perform content enumeration on a given web server by using the Gobuster tool?

Options

  • APerforming content enumeration using the bruteforce mode and 10 threads
  • BShipping SSL certificate verification
  • CPerforming content enumeration using a wordlist
  • DPerforming content enumeration using the bruteforce mode and random file extensions

How the community answered

(20 responses)
  • A
    10% (2)
  • B
    5% (1)
  • C
    85% (17)

Why each option

Using a wordlist with Gobuster is the fastest enumeration method because it tests only known, high-probability paths rather than generating all possible character combinations.

APerforming content enumeration using the bruteforce mode and 10 threads

Brute-force mode, even with 10 threads, is slower than wordlist mode because it algorithmically generates all character combinations rather than targeting known-good paths.

BShipping SSL certificate verification

Skipping SSL certificate verification reduces connection overhead marginally but does not change the enumeration strategy or significantly impact overall speed.

CPerforming content enumeration using a wordlistCorrect

Gobuster's dir mode with a wordlist (gobuster dir -w wordlist.txt) is the fastest approach because it limits requests to predefined, commonly found directory and file names from a curated list. This is exponentially faster than brute-force modes that must generate and test every possible character permutation, resulting in far fewer total HTTP requests to reach meaningful findings.

DPerforming content enumeration using the bruteforce mode and random file extensions

Combining brute-force mode with random file extensions multiplies the number of generated permutations exponentially, making this the slowest possible enumeration approach.

Concept tested: Gobuster wordlist-based web content enumeration efficiency

Source: https://github.com/OJ/gobuster

Topics

#Gobuster#directory enumeration#wordlist#web content discovery

Community Discussion

No community discussion yet for this question.

Full 312-50V11 Practice