Code Monkey home page Code Monkey logo

Comments (7)

epi052 avatar epi052 commented on June 12, 2024

howdy! if you're referencing the paths from your other issue #1007, those are the requests used to determine what the site uses as its 404 (whether it's a 404 or not).

the related code is here and the comments explain what's going on as well as some of the reasoning/decisions

from feroxbuster.

rew1nter avatar rew1nter commented on June 12, 2024

Hey. No this is not related to the other issue.
I just fired off another scan before commenting here. I'm seeing paths like:

/account
/oauth
/e
/s/
/5acab48dfbaf49b5bcf77d77a5edfae5

I assume the last one is also from feroxbuster intentionally along with the other like .admin and .htaccess. I'm using a wordlist of 3 words for test and none of these are present in my wordlist.

from feroxbuster.

epi052 avatar epi052 commented on June 12, 2024

correct, the last one is part of the heuristic check for determining 404s.

Could you take a look at the /robots.txt for your target? Those paths may be coming from there.

from feroxbuster.

rew1nter avatar rew1nter commented on June 12, 2024

You're right. /account and /oauth is in the robotx.txt of my target. I ran it across a large list so I can't confirm the other two

from feroxbuster.

epi052 avatar epi052 commented on June 12, 2024

morning! i just wrote a test to see whether or not --dont-extract-links controls requests to /robots.txt.

both in the code and in my test, /robots.txt is not requested when --dont-extract-links is used. Can you confirm that's the behavior you're seeing? The relevant code is below and requests for /robots.txt is gated behind the check for extract_links.

        if self.handles.config.extract_links && matches!(self.order, ScanOrder::Initial) {
            // check for robots.txt (cannot be in sub-directories, so limited to Initial)
            let mut extractor = ExtractorBuilder::default()
                .target(ExtractionTarget::RobotsTxt)
                .url(&self.target_url)
                .handles(self.handles.clone())
                .build()?;

            let result = extractor.extract().await?;
            extraction_tasks.push(extractor.request_links(result).await?)
        }

from feroxbuster.

stale avatar stale commented on June 12, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from feroxbuster.

epi052 avatar epi052 commented on June 12, 2024

doing some housekeeping, feel free to reopen if this is still an issue.

from feroxbuster.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.