- Kali Linux Web Penetration Testing Cookbook
- Gilberto Nájera Gutiérrez
- 307字
- 2021-07-16 12:53:48
Taking advantage of robots.txt
One step further into reconnaissance, we need to figure out if there is any page or directory in the site that is not linked to what is shown to the common user. For example, a login page to the intranet or to the content management systems (CMS) administration. Finding a site similar to this will expand our testing surface considerably and can give us some important clues about the application and its infrastructure.
In this recipe, we will use the robots.txt
file to discover some files and directories that may not be linked to anywhere in the main application.
How to do it...
- Browse to
http://192.168.56.102/vicnum/
. - Now we add
robots.txt
to the URL and we will see the following screnshot:This file tells search engines that the indexing of the directories
jotto
andcgi-bin
is not allowed for every browser (user agent). However, this doesn't mean that we cannot browse them. - Let's browse to
http:
//192.168.56.102/vicnum/cgi-bin/
:We can click and navigate directly to any of the Perl scripts in this directory.
- Let's browse to
htt
p://192.168.56.102/vicnum/jotto/
: - Click on the file named
jotto
:. You will see something similar to the following screenshot:Jotto is a game about guessing five-character words; could this be the list of possible answers? Check it by playing the game; if it is, we have already hacked the game!
How it works...
robots.txt
is a file used by web servers to tell search engines about the directories or files that they should index and what they are not allowed to look into. Taking the perspective of an attacker, this tells us if there is a directory in the server that is accessible but hidden to the public using what is called "security through obscurity" (that is, assuming that users won't discover the existence of something, if they are not told about it).
- Learning Python Web Penetration Testing
- LaTeX Cookbook
- Mastering Swift 2
- C++程序設(shè)計(jì)基礎(chǔ)教程
- Java 11 Cookbook
- Mastering ServiceNow(Second Edition)
- Unreal Engine 4 Shaders and Effects Cookbook
- 利用Python進(jìn)行數(shù)據(jù)分析(原書第3版)
- 學(xué)習(xí)正則表達(dá)式
- Swift Playgrounds少兒趣編程
- Mastering Backbone.js
- Solutions Architect's Handbook
- Training Systems Using Python Statistical Modeling
- AutoCAD基礎(chǔ)教程
- Android技術(shù)內(nèi)幕(系統(tǒng)卷)