Coder Social home page Coder Social logo

Comments (3)

nnposter avatar nnposter commented on July 1, 2024

This is technically doable for the most part. The one issue is that some of the targets are behaving differently if a true default password is used, such as redirecting to a password change dialog, hard or soft, instead of starting a regular authenticated session. Handling such cases would require updating the fingerprint matching logic too, which is impractical.

Just to make sure I understand you correctly, you are not proposing to test additional usernames with passwords, but to try existing default usernames with additional passwords supplied separately, correct?

from nndefaccts.

rufflabs avatar rufflabs commented on July 1, 2024

That is correct. In my particular use case this only applies to printers, as that's all I am interested in. Testing an additional known password against a printer/copier with the normal admin/default username.

This may be pretty niche, and not useful to the masses. If that's the case, my fall back is to just manually edit the relevant fingerprint login_combos to add my additional password for my own use.

from nndefaccts.

nnposter avatar nnposter commented on July 1, 2024

The scenario is not quite fitting the intended use so I do not want to "pollute" the standard Nmap script. On the other hand, it should be relatively straightforward to handle this natively inside Lua, instead of having to edit the source code of individual fingerprints.

Append the following Lua fragment to the end of the fingerprint file and adjust the filename on the last line as needed.

local io = require "io"

local function expand_combos (fingerprints, filename)
  for pwd in io.lines(filename) do
    for _, fp in ipairs(fingerprints) do
      local combos = fp.login_combos
      local usernames = {}
      for _, combo in ipairs(combos) do
        if pwd == combo.password then
          usernames = {}
          break
        end
        usernames[combo.username] = 1
      end
      for usr in pairs(usernames) do
        table.insert(combos, {username = usr, password = pwd})
      end
    end
  end
end
        
expand_combos(fingerprints, "/tmp/my_passwords.txt")

This will dynamically modify all fingerprints one by one, enumerating existing fingerprint usernames and adding new username/password combinations from passwords in file /tmp/my_passwords.txt.

from nndefaccts.

Related Issues (4)

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.