This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ΰ² _ΰ² extends Exception { | |
public function __construct($msg, $code=0, Exception $prev=null) { | |
parent::__construct("ΰ² _ΰ² ", $code, $prev); | |
} | |
public function __toString() { | |
return "ΰ² _ΰ² "; | |
} | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
from datetime import datetime | |
import time | |
from time import sleep | |
from dnslib import DNSLabel, QTYPE, RD, RR, RCODE | |
from dnslib import A, AAAA, CNAME, MX, NS, SOA, TXT | |
from dnslib.server import DNSServer |