Skip to content

Instantly share code, notes, and snippets.

View rixafy's full-sized avatar
🧬
Amy Was a Player

Rix rixafy

🧬
Amy Was a Player
  • Doofenshmirtz Evil Inc.
  • 09:02 (UTC +01:00)
View GitHub Profile
@bohwaz
bohwaz / dns_get_record_from.php
Last active September 3, 2025 17:34
PHP script to retrieve a DNS record from a custom nameserver
<?php
/**
* Make a DNS a request to a custom nameserver, this is similar to dns_get_record, but allows you to query any nameserver
* Usage: dns_get_record_from('ns.server.tld', 'A', 'mydomain.tld');
* => ['42.42.42.42']
* @author bohwaz
*/
function dns_get_record_from(string $server, string $type, string $record, string $protocol = 'udp'): array
{