fork download
  1. <?php
  2. header("Access-Control-Allow-Origin: *"); // CORS'u aç
  3. header("Content-Type: text/html; charset=UTF-8");
  4.  
  5. // Blockscan'den cüzdan sayfasını çek
  6.  
  7. if (isset($_GET['address']) || 1 == 1) {
  8. $walletAddress = "0x0000000000000000000000000000000000000000";
  9. $url = "https://b...content-available-to-author-only...n.com/address/" . urlencode($walletAddress);
  10.  
  11. $ch = curl_init();
  12. curl_setopt($ch, CURLOPT_URL, $url);
  13. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  14. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // SSL doğrulamasını kapat
  15. $htmlContent = curl_exec($ch);
  16. curl_close($ch);
  17.  
  18. echo $htmlContent;
  19. } else {
  20. echo "Cüzdan adresi belirtilmedi!";
  21. }
  22. ?>
  23.  
Success #stdin #stdout 0.04s 26140KB
stdin
Standard input is empty
stdout
Standard output is empty