How does javascript-PHP determine whether a request comes from the current domain and is an ajax request?

Source: Internet
Author: User
How does PHP determine whether a request comes from the local domain and is an ajax request? How does PHP determine whether a request comes from the local domain and is an ajax request?

Reply content:

How does PHP determine whether a request comes from the local domain and is an ajax request?

In jquery, ajax is written like this. The xhr object has the setRequestHeader method and sets the header:

if ( !options.crossDomain && !headers["X-Requested-With"] ) {    headers["X-Requested-With"] = "XMLHttpRequest";}// Set headersfor ( i in headers ) {    xhr.setRequestHeader( i, headers[ i ] );}

So if it is verified on the PHP side, it is like this:

public static function isAjax() {   return 'XMLHttpRequest' == @$_SERVER['HTTP_X_REQUESTED_WITH'];}

if ( !isset($_SERVER['HTTP_X_REQUESTED_WITH']) || $_SERVER['HTTP_X_REQUESTED_WITH'] !== 'XMLHttpRequest' ) {}

The source can be obtained through the Referer attribute of the Request Header. The X-Requested-With attribute (does not indicate that ajax must require this request header attribute) can be used to determine whether it is ajax. But the request header, as you know, is easy to forge. The request header is sufficient for business judgment. If Security Anti-crawling is performed, the request header will be weak.

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.