Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

How does intellitamper work?


ghost's Avatar
0 0

I just wonder how this tool works. If you try to view a directory and directory listings is off you cannot see whats in the folder. How does intellitamper give you a listing of the directory anyway? Is this because you are viewing through a web browser and intellitamper has more control over the type of request its sending? how is it possible to get a directory listing when directory listing seems to be disabled? i.e. when you try to access the directory it says denied or forbidden.

Couple related questions not worth creating threads over.

Is there anyway to type in a username/password to view a blocked directory or file?

what is .htaccess and .htpasswd?


spyware's Avatar
Banned
0 0

Obviously, when a server is telling you 'denied', you can conclude something is there. Only a 404 would (most of the times) mean there is nothing there.

Your last two questions are related and incredibly easy to answer for yourself by visiting http://ddg.gg


ellipsis's Avatar
...
0 -1

@ the intellitamper question:

My guess would be it creates a url to try against using a database of known files and directories.

use this url: http://www.website.com/

for each known directory
   new_url is url + guessed_dirname

   if new_url does not 404
      inform me of this

      for each known file
          new_url is new_url + / + guessed_filename

          if new_url does not 404
               inform me of this
          or if new_url does 404
               ignore it
          end if
      end for
   or if new_url does 404
      ignore it
   end if
end for