123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819 |
- <?php
- /* Poweradmin, a friendly web-based admin tool for PowerDNS.
- * See <http://www.poweradmin.org> for more details.
- *
- * Copyright 2007-2009 Rejo Zenger <rejo@zenger.nl>
- * Copyright 2010-2017 Poweradmin Development Team
- * <http://www.poweradmin.org/credits.html>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- /**
- * Toolkit functions
- *
- * @package Poweradmin
- * @copyright 2007-2010 Rejo Zenger <rejo@zenger.nl>
- * @copyright 2010-2017 Poweradmin Development Team
- * @license http://opensource.org/licenses/GPL-3.0 GPL
- */
- // TODO: display elapsed time and memory consumption,
- // used to check improvements in refactored version
- $display_stats = false;
- if ($display_stats)
- include('inc/benchmark.php');
-
- ob_start();
-
- require_once("error.inc.php");
-
- if (!function_exists('session_start'))
- die(error('You have to install PHP session extension!'));
- if (!function_exists('_'))
- die(error('You have to install PHP gettext extension!'));
- if (!function_exists('mcrypt_encrypt'))
- die(error('You have to install PHP mcrypt extension!'));
-
- session_start();
-
- include_once("config-me.inc.php");
-
- if (!@include_once("config.inc.php")) {
- error(_('You have to create a config.inc.php!'));
- }
-
- /* * ***********
- * Constants *
- * *********** */
-
- if (isset($_GET["start"])) {
- define('ROWSTART', (($_GET["start"] - 1) * $iface_rowamount));
- } else {
- /** Starting row
- */
- define('ROWSTART', 0);
- }
-
- if (isset($_GET["letter"])) {
- define('LETTERSTART', $_GET["letter"]);
- $_SESSION["letter"] = $_GET["letter"];
- } elseif (isset($_SESSION["letter"])) {
- define('LETTERSTART', $_SESSION["letter"]);
- } else {
- /** Starting letter
- */
- define('LETTERSTART', "a");
- }
-
- if (isset($_GET["zone_sort_by"]) && preg_match("/^[a-z_]+$/", $_GET["zone_sort_by"])) {
- define('ZONE_SORT_BY', $_GET["zone_sort_by"]);
- $_SESSION["zone_sort_by"] = $_GET["zone_sort_by"];
- } elseif (isset($_POST["zone_sort_by"]) && preg_match("/^[a-z_]+$/", $_POST["zone_sort_by"])) {
- define('ZONE_SORT_BY', $_POST["zone_sort_by"]);
- $_SESSION["zone_sort_by"] = $_POST["zone_sort_by"];
- } elseif (isset($_SESSION["zone_sort_by"])) {
- define('ZONE_SORT_BY', $_SESSION["zone_sort_by"]);
- } else {
- /** Field to sort zone by
- */
- define('ZONE_SORT_BY', "name");
- }
-
- if (isset($_SESSION["userlang"])) {
- $iface_lang = $_SESSION["userlang"];
- }
-
- if (isset($_GET["record_sort_by"]) && preg_match("/^[a-z_]+$/", $_GET["record_sort_by"])) {
- define('RECORD_SORT_BY', $_GET["record_sort_by"]);
- $_SESSION["record_sort_by"] = $_GET["record_sort_by"];
- } elseif (isset($_POST["record_sort_by"]) && preg_match("/^[a-z_]+$/", $_POST["record_sort_by"])) {
- define('RECORD_SORT_BY', $_POST["record_sort_by"]);
- $_SESSION["record_sort_by"] = $_POST["record_sort_by"];
- } elseif (isset($_SESSION["record_sort_by"])) {
- define('RECORD_SORT_BY', $_SESSION["record_sort_by"]);
- } else {
- /** Record to sort zone by
- */
- define('RECORD_SORT_BY', "name");
- }
-
- // Updated on 2017011600 - 1592 TLDs
- // http://data.iana.org/TLD/tlds-alpha-by-domain.txt
- $valid_tlds = array("aaa", "aarp", "abarth", "abb", "abbott", "abbvie", "abc", "able",
- "abogado", "abudhabi", "ac", "academy", "accenture", "accountant",
- "accountants", "aco", "active", "actor", "ad", "adac", "ads", "adult", "ae",
- "aeg", "aero", "aetna", "af", "afamilycompany", "afl", "ag", "agakhan",
- "agency", "ai", "aig", "aigo", "airbus", "airforce", "airtel", "akdn", "al",
- "alfaromeo", "alibaba", "alipay", "allfinanz", "allstate", "ally", "alsace",
- "alstom", "am", "americanexpress", "americanfamily", "amex", "amfam", "amica",
- "amsterdam", "analytics", "android", "anquan", "anz", "ao", "aol", "apartments",
- "app", "apple", "aq", "aquarelle", "ar", "aramco", "archi", "army", "arpa",
- "art", "arte", "as", "asda", "asia", "associates", "at", "athleta", "attorney",
- "au", "auction", "audi", "audible", "audio", "auspost", "author", "auto",
- "autos", "avianca", "aw", "aws", "ax", "axa", "az", "azure", "ba", "baby",
- "baidu", "banamex", "bananarepublic", "band", "bank", "bar", "barcelona",
- "barclaycard", "barclays", "barefoot", "bargains", "baseball", "basketball",
- "bauhaus", "bayern", "bb", "bbc", "bbt", "bbva", "bcg", "bcn", "bd", "be",
- "beats", "beauty", "beer", "bentley", "berlin", "best", "bestbuy", "bet", "bf",
- "bg", "bh", "bharti", "bi", "bible", "bid", "bike", "bing", "bingo", "bio",
- "biz", "bj", "black", "blackfriday", "blanco", "blockbuster", "blog",
- "bloomberg", "blue", "bm", "bms", "bmw", "bn", "bnl", "bnpparibas", "bo",
- "boats", "boehringer", "bofa", "bom", "bond", "boo", "book", "booking", "boots",
- "bosch", "bostik", "boston", "bot", "boutique", "box", "br", "bradesco",
- "bridgestone", "broadway", "broker", "brother", "brussels", "bs", "bt",
- "budapest", "bugatti", "build", "builders", "business", "buy", "buzz", "bv",
- "bw", "by", "bz", "bzh", "ca", "cab", "cafe", "cal", "call", "calvinklein",
- "cam", "camera", "camp", "cancerresearch", "canon", "capetown", "capital",
- "capitalone", "car", "caravan", "cards", "care", "career", "careers", "cars",
- "cartier", "casa", "case", "caseih", "cash", "casino", "cat", "catering",
- "catholic", "cba", "cbn", "cbre", "cbs", "cc", "cd", "ceb", "center", "ceo",
- "cern", "cf", "cfa", "cfd", "cg", "ch", "chanel", "channel", "chase", "chat",
- "cheap", "chintai", "chloe", "christmas", "chrome", "chrysler", "church", "ci",
- "cipriani", "circle", "cisco", "citadel", "citi", "citic", "city", "cityeats",
- "ck", "cl", "claims", "cleaning", "click", "clinic", "clinique", "clothing",
- "cloud", "club", "clubmed", "cm", "cn", "co", "coach", "codes", "coffee",
- "college", "cologne", "com", "comcast", "commbank", "community", "company",
- "compare", "computer", "comsec", "condos", "construction", "consulting",
- "contact", "contractors", "cooking", "cookingchannel", "cool", "coop",
- "corsica", "country", "coupon", "coupons", "courses", "cr", "credit",
- "creditcard", "creditunion", "cricket", "crown", "crs", "cruise", "cruises",
- "csc", "cu", "cuisinella", "cv", "cw", "cx", "cy", "cymru", "cyou", "cz",
- "dabur", "dad", "dance", "data", "date", "dating", "datsun", "day", "dclk",
- "dds", "de", "deal", "dealer", "deals", "degree", "delivery", "dell",
- "deloitte", "delta", "democrat", "dental", "dentist", "desi", "design", "dev",
- "dhl", "diamonds", "diet", "digital", "direct", "directory", "discount",
- "discover", "dish", "diy", "dj", "dk", "dm", "dnp", "do", "docs", "doctor",
- "dodge", "dog", "doha", "domains", "dot", "download", "drive", "dtv", "dubai",
- "duck", "dunlop", "duns", "dupont", "durban", "dvag", "dvr", "dz", "earth",
- "eat", "ec", "eco", "edeka", "edu", "education", "ee", "eg", "email", "emerck",
- "energy", "engineer", "engineering", "enterprises", "epost", "epson",
- "equipment", "er", "ericsson", "erni", "es", "esq", "estate", "esurance", "et",
- "eu", "eurovision", "eus", "events", "everbank", "exchange", "expert",
- "exposed", "express", "extraspace", "fage", "fail", "fairwinds", "faith",
- "family", "fan", "fans", "farm", "farmers", "fashion", "fast", "fedex",
- "feedback", "ferrari", "ferrero", "fi", "fiat", "fidelity", "fido", "film",
- "final", "finance", "financial", "fire", "firestone", "firmdale", "fish",
- "fishing", "fit", "fitness", "fj", "fk", "flickr", "flights", "flir", "florist",
- "flowers", "fly", "fm", "fo", "foo", "food", "foodnetwork", "football", "ford",
- "forex", "forsale", "forum", "foundation", "fox", "fr", "free", "fresenius",
- "frl", "frogans", "frontdoor", "frontier", "ftr", "fujitsu", "fujixerox", "fun",
- "fund", "furniture", "futbol", "fyi", "ga", "gal", "gallery", "gallo", "gallup",
- "game", "games", "gap", "garden", "gb", "gbiz", "gd", "gdn", "ge", "gea",
- "gent", "genting", "george", "gf", "gg", "ggee", "gh", "gi", "gift", "gifts",
- "gives", "giving", "gl", "glade", "glass", "gle", "global", "globo", "gm",
- "gmail", "gmbh", "gmo", "gmx", "gn", "godaddy", "gold", "goldpoint", "golf",
- "goo", "goodhands", "goodyear", "goog", "google", "gop", "got", "gov", "gp",
- "gq", "gr", "grainger", "graphics", "gratis", "green", "gripe", "group", "gs",
- "gt", "gu", "guardian", "gucci", "guge", "guide", "guitars", "guru", "gw", "gy",
- "hair", "hamburg", "hangout", "haus", "hbo", "hdfc", "hdfcbank", "health",
- "healthcare", "help", "helsinki", "here", "hermes", "hgtv", "hiphop",
- "hisamitsu", "hitachi", "hiv", "hk", "hkt", "hm", "hn", "hockey", "holdings",
- "holiday", "homedepot", "homegoods", "homes", "homesense", "honda", "honeywell",
- "horse", "hospital", "host", "hosting", "hot", "hoteles", "hotmail", "house",
- "how", "hr", "hsbc", "ht", "htc", "hu", "hughes", "hyatt", "hyundai", "ibm",
- "icbc", "ice", "icu", "id", "ie", "ieee", "ifm", "ikano", "il", "im", "imamat",
- "imdb", "immo", "immobilien", "in", "industries", "infiniti", "info", "ing",
- "ink", "institute", "insurance", "insure", "int", "intel", "international",
- "intuit", "investments", "io", "ipiranga", "iq", "ir", "irish", "is", "iselect",
- "ismaili", "ist", "istanbul", "it", "itau", "itv", "iveco", "iwc", "jaguar",
- "java", "jcb", "jcp", "je", "jeep", "jetzt", "jewelry", "jio", "jlc", "jll",
- "jm", "jmp", "jnj", "jo", "jobs", "joburg", "jot", "joy", "jp", "jpmorgan",
- "jprs", "juegos", "juniper", "kaufen", "kddi", "ke", "kerryhotels",
- "kerrylogistics", "kerryproperties", "kfh", "kg", "kh", "ki", "kia", "kim",
- "kinder", "kindle", "kitchen", "kiwi", "km", "kn", "koeln", "komatsu", "kosher",
- "kp", "kpmg", "kpn", "kr", "krd", "kred", "kuokgroup", "kw", "ky", "kyoto",
- "kz", "la", "lacaixa", "ladbrokes", "lamborghini", "lamer", "lancaster",
- "lancia", "lancome", "land", "landrover", "lanxess", "lasalle", "lat", "latino",
- "latrobe", "law", "lawyer", "lb", "lc", "lds", "lease", "leclerc", "lefrak",
- "legal", "lego", "lexus", "lgbt", "li", "liaison", "lidl", "life",
- "lifeinsurance", "lifestyle", "lighting", "like", "lilly", "limited", "limo",
- "lincoln", "linde", "link", "lipsy", "live", "living", "lixil", "lk", "loan",
- "loans", "locker", "locus", "loft", "lol", "london", "lotte", "lotto", "love",
- "lpl", "lplfinancial", "lr", "ls", "lt", "ltd", "ltda", "lu", "lundbeck",
- "lupin", "luxe", "luxury", "lv", "ly", "ma", "macys", "madrid", "maif",
- "maison", "makeup", "man", "management", "mango", "market", "marketing",
- "markets", "marriott", "marshalls", "maserati", "mattel", "mba", "mc", "mcd",
- "mcdonalds", "mckinsey", "md", "me", "med", "media", "meet", "melbourne",
- "meme", "memorial", "men", "menu", "meo", "metlife", "mg", "mh", "miami",
- "microsoft", "mil", "mini", "mint", "mit", "mitsubishi", "mk", "ml", "mlb",
- "mls", "mm", "mma", "mn", "mo", "mobi", "mobile", "mobily", "moda", "moe",
- "moi", "mom", "monash", "money", "monster", "montblanc", "mopar", "mormon",
- "mortgage", "moscow", "moto", "motorcycles", "mov", "movie", "movistar", "mp",
- "mq", "mr", "ms", "msd", "mt", "mtn", "mtpc", "mtr", "mu", "museum", "mutual",
- "mv", "mw", "mx", "my", "mz", "na", "nab", "nadex", "nagoya", "name",
- "nationwide", "natura", "navy", "nba", "nc", "ne", "nec", "net", "netbank",
- "netflix", "network", "neustar", "new", "newholland", "news", "next",
- "nextdirect", "nexus", "nf", "nfl", "ng", "ngo", "nhk", "ni", "nico", "nike",
- "nikon", "ninja", "nissan", "nissay", "nl", "no", "nokia", "northwesternmutual",
- "norton", "now", "nowruz", "nowtv", "np", "nr", "nra", "nrw", "ntt", "nu",
- "nyc", "nz", "obi", "observer", "off", "office", "okinawa", "olayan",
- "olayangroup", "oldnavy", "ollo", "om", "omega", "one", "ong", "onl", "online",
- "onyourside", "ooo", "open", "oracle", "orange", "org", "organic",
- "orientexpress", "origins", "osaka", "otsuka", "ott", "ovh", "pa", "page",
- "pamperedchef", "panasonic", "panerai", "paris", "pars", "partners", "parts",
- "party", "passagens", "pay", "pccw", "pe", "pet", "pf", "pfizer", "pg", "ph",
- "pharmacy", "philips", "phone", "photo", "photography", "photos", "physio",
- "piaget", "pics", "pictet", "pictures", "pid", "pin", "ping", "pink", "pioneer",
- "pizza", "pk", "pl", "place", "play", "playstation", "plumbing", "plus", "pm",
- "pn", "pnc", "pohl", "poker", "politie", "porn", "post", "pr", "pramerica",
- "praxi", "press", "prime", "pro", "prod", "productions", "prof", "progressive",
- "promo", "properties", "property", "protection", "pru", "prudential", "ps",
- "pt", "pub", "pw", "pwc", "py", "qa", "qpon", "quebec", "quest", "qvc",
- "racing", "radio", "raid", "re", "read", "realestate", "realtor", "realty",
- "recipes", "red", "redstone", "redumbrella", "rehab", "reise", "reisen", "reit",
- "reliance", "ren", "rent", "rentals", "repair", "report", "republican", "rest",
- "restaurant", "review", "reviews", "rexroth", "rich", "richardli", "ricoh",
- "rightathome", "ril", "rio", "rip", "rmit", "ro", "rocher", "rocks", "rodeo",
- "rogers", "room", "rs", "rsvp", "ru", "ruhr", "run", "rw", "rwe", "ryukyu",
- "sa", "saarland", "safe", "safety", "sakura", "sale", "salon", "samsclub",
- "samsung", "sandvik", "sandvikcoromant", "sanofi", "sap", "sapo", "sarl", "sas",
- "save", "saxo", "sb", "sbi", "sbs", "sc", "sca", "scb", "schaeffler", "schmidt",
- "scholarships", "school", "schule", "schwarz", "science", "scjohnson", "scor",
- "scot", "sd", "se", "seat", "secure", "security", "seek", "select", "sener",
- "services", "ses", "seven", "sew", "sex", "sexy", "sfr", "sg", "sh",
- "shangrila", "sharp", "shaw", "shell", "shia", "shiksha", "shoes", "shop",
- "shopping", "shouji", "show", "showtime", "shriram", "si", "silk", "sina",
- "singles", "site", "sj", "sk", "ski", "skin", "sky", "skype", "sl", "sling",
- "sm", "smart", "smile", "sn", "sncf", "so", "soccer", "social", "softbank",
- "software", "sohu", "solar", "solutions", "song", "sony", "soy", "space",
- "spiegel", "spot", "spreadbetting", "sr", "srl", "srt", "st", "stada",
- "staples", "star", "starhub", "statebank", "statefarm", "statoil", "stc",
- "stcgroup", "stockholm", "storage", "store", "stream", "studio", "study",
- "style", "su", "sucks", "supplies", "supply", "support", "surf", "surgery",
- "suzuki", "sv", "swatch", "swiftcover", "swiss", "sx", "sy", "sydney",
- "symantec", "systems", "sz", "tab", "taipei", "talk", "taobao", "target",
- "tatamotors", "tatar", "tattoo", "tax", "taxi", "tc", "tci", "td", "tdk",
- "team", "tech", "technology", "tel", "telecity", "telefonica", "temasek",
- "tennis", "teva", "tf", "tg", "th", "thd", "theater", "theatre", "tiaa",
- "tickets", "tienda", "tiffany", "tips", "tires", "tirol", "tj", "tjmaxx", "tjx",
- "tk", "tkmaxx", "tl", "tm", "tmall", "tn", "to", "today", "tokyo", "tools",
- "top", "toray", "toshiba", "total", "tours", "town", "toyota", "toys", "tr",
- "trade", "trading", "training", "travel", "travelchannel", "travelers",
- "travelersinsurance", "trust", "trv", "tt", "tube", "tui", "tunes", "tushu",
- "tv", "tvs", "tw", "tz", "ua", "ubank", "ubs", "uconnect", "ug", "uk", "unicom",
- "university", "uno", "uol", "ups", "us", "uy", "uz", "va", "vacations", "vana",
- "vanguard", "vc", "ve", "vegas", "ventures", "verisign", "versicherung", "vet",
- "vg", "vi", "viajes", "video", "vig", "viking", "villas", "vin", "vip",
- "virgin", "visa", "vision", "vista", "vistaprint", "viva", "vivo", "vlaanderen",
- "vn", "vodka", "volkswagen", "volvo", "vote", "voting", "voto", "voyage", "vu",
- "vuelos", "wales", "walmart", "walter", "wang", "wanggou", "warman", "watch",
- "watches", "weather", "weatherchannel", "webcam", "weber", "website", "wed",
- "wedding", "weibo", "weir", "wf", "whoswho", "wien", "wiki", "williamhill",
- "win", "windows", "wine", "winners", "wme", "wolterskluwer", "woodside", "work",
- "works", "world", "wow", "ws", "wtc", "wtf", "xbox", "xerox", "xfinity",
- "xihuan", "xin", "xn--11b4c3d", "xn--1ck2e1b", "xn--1qqw23a", "xn--30rr7y",
- "xn--3bst00m", "xn--3ds443g", "xn--3e0b707e", "xn--3oq18vl8pn36a", "xn--3pxu8k",
- "xn--42c2d9a", "xn--45brj9c", "xn--45q11c", "xn--4gbrim", "xn--54b7fta0cc",
- "xn--55qw42g", "xn--55qx5d", "xn--5su34j936bgsg", "xn--5tzm5g", "xn--6frz82g",
- "xn--6qq986b3xl", "xn--80adxhks", "xn--80ao21a", "xn--80aqecdr1a",
- "xn--80asehdb", "xn--80aswg", "xn--8y0a063a", "xn--90a3ac", "xn--90ae",
- "xn--90ais", "xn--9dbq2a", "xn--9et52u", "xn--9krt00a", "xn--b4w605ferd",
- "xn--bck1b9a5dre4c", "xn--c1avg", "xn--c2br7g", "xn--cck2b3b", "xn--cg4bki",
- "xn--clchc0ea0b2g2a9gcd", "xn--czr694b", "xn--czrs0t", "xn--czru2d",
- "xn--d1acj3b", "xn--d1alf", "xn--e1a4c", "xn--eckvdtc9d", "xn--efvy88h",
- "xn--estv75g", "xn--fct429k", "xn--fhbei", "xn--fiq228c5hs", "xn--fiq64b",
- "xn--fiqs8s", "xn--fiqz9s", "xn--fjq720a", "xn--flw351e", "xn--fpcrj9c3d",
- "xn--fzc2c9e2c", "xn--fzys8d69uvgm", "xn--g2xx48c", "xn--gckr3f0f",
- "xn--gecrj9c", "xn--gk3at1e", "xn--h2brj9c", "xn--hxt814e", "xn--i1b6b1a6a2e",
- "xn--imr513n", "xn--io0a7i", "xn--j1aef", "xn--j1amh", "xn--j6w193g",
- "xn--jlq61u9w7b", "xn--jvr189m", "xn--kcrx77d1x4a", "xn--kprw13d",
- "xn--kpry57d", "xn--kpu716f", "xn--kput3i", "xn--l1acc", "xn--lgbbat1ad8j",
- "xn--mgb9awbf", "xn--mgba3a3ejt", "xn--mgba3a4f16a", "xn--mgba7c0bbn0a",
- "xn--mgbaam7a8h", "xn--mgbab2bd", "xn--mgbayh7gpa", "xn--mgbb9fbpob",
- "xn--mgbbh1a71e", "xn--mgbc0a9azcg", "xn--mgbca7dzdo", "xn--mgberp4a5d4ar",
- "xn--mgbi4ecexp", "xn--mgbpl2fh", "xn--mgbt3dhd", "xn--mgbtx2b",
- "xn--mgbx4cd0ab", "xn--mix891f", "xn--mk1bu44c", "xn--mxtq1m", "xn--ngbc5azd",
- "xn--ngbe9e0a", "xn--node", "xn--nqv7f", "xn--nqv7fs00ema", "xn--nyqy26a",
- "xn--o3cw4h", "xn--ogbpf8fl", "xn--p1acf", "xn--p1ai", "xn--pbt977c",
- "xn--pgbs0dh", "xn--pssy2u", "xn--q9jyb4c", "xn--qcka1pmc", "xn--qxam",
- "xn--rhqv96g", "xn--rovu88b", "xn--s9brj9c", "xn--ses554g", "xn--t60b56a",
- "xn--tckwe", "xn--tiq49xqyj", "xn--unup4y", "xn--vermgensberater-ctb",
- "xn--vermgensberatung-pwb", "xn--vhquv", "xn--vuq861b", "xn--w4r85el8fhu5dnra",
- "xn--w4rs40l", "xn--wgbh1c", "xn--wgbl6a", "xn--xhq521b", "xn--xkc2al3hye2a",
- "xn--xkc2dl3a5ee0h", "xn--y9a3aq", "xn--yfro4i67o", "xn--ygbi2ammx",
- "xn--zfr164b", "xperia", "xxx", "xyz", "yachts", "yahoo", "yamaxun", "yandex",
- "ye", "yodobashi", "yoga", "yokohama", "you", "youtube", "yt", "yun", "za",
- "zappos", "zara", "zero", "zip", "zippo", "zm", "zone", "zuerich", "zw");
-
- // Special TLDs for testing and documentation purposes
- // http://tools.ietf.org/html/rfc2606#section-2
- array_push($valid_tlds, 'test', 'example', 'invalid', 'localhost');
-
- /* Database connection */
- require_once("database.inc.php");
- // Generates $db variable to access database.
- // Array of the available zone types
- $server_types = array("MASTER", "SLAVE", "NATIVE");
-
- // $rtypes - array of possible record types
- $rtypes = array(
- 'A',
- 'A6',
- 'AAAA',
- 'AFSDB',
- 'ALIAS',
- 'CAA',
- 'CDNSKEY',
- 'CDS',
- 'CERT',
- 'CNAME',
- 'DHCID',
- 'DLV',
- 'DNSKEY',
- 'DNAME',
- 'DS',
- 'EUI48',
- 'EUI64',
- 'HINFO',
- 'IPSECKEY',
- 'KEY',
- 'KX',
- 'LOC',
- 'MAILA',
- 'MAILB',
- 'MINFO',
- 'MR',
- 'MX',
- 'NAPTR',
- 'NS',
- 'NSEC',
- 'NSEC3',
- 'NSEC3PARAM',
- 'OPENPGPKEY',
- 'OPT',
- 'PTR',
- 'RKEY',
- 'RP',
- 'RRSIG',
- 'SIG',
- 'SOA',
- 'SPF',
- 'SRV',
- 'SSHFP',
- 'TLSA',
- 'TKEY',
- 'TSIG',
- 'TXT',
- 'WKS',
- 'URI'
- );
-
- // If fancy records is enabled, extend this field.
- if ($dns_fancy) {
- $rtypes[] = 'URL';
- $rtypes[] = 'MBOXFW';
- $rtypes[] = 'CURL';
- }
-
-
- /* * ***********
- * Includes *
- * *********** */
- $db = dbConnect();
- require_once "plugin.inc.php";
- require_once "i18n.inc.php";
- require_once "auth.inc.php";
- require_once "users.inc.php";
- require_once "dns.inc.php";
- require_once "record.inc.php";
- require_once "dnssec.inc.php";
- require_once "templates.inc.php";
-
- //do_hook('hook_post_includes');
- do_hook('authenticate');
-
-
- /* * ***********
- * Functions *
- * *********** */
-
- /** Print paging menu
- *
- * Display the page option: [ < ][ 1 ] .. [ 8 ][ 9 ][ 10 ][ 11 ][ 12 ][ 13 ][ 14 ][ 15 ][ 16 ] .. [ 34 ][ > ]
- *
- * @param int $amount Total number of items
- * @param int $rowamount Per page number of items
- * @param int $id Page specific ID (Zone ID, Template ID, etc)
- *
- * @return null
- */
- function show_pages($amount, $rowamount, $id = '') {
- if ($amount > $rowamount) {
- $num = 8;
- $poutput = '';
- $lastpage = ceil($amount / $rowamount);
- $startpage = 1;
-
- if (!isset($_GET["start"]))
- $_GET["start"] = 1;
- $start = $_GET["start"];
-
- if ($lastpage > $num & $start > ($num / 2)) {
- $startpage = ($start - ($num / 2));
- }
-
- echo _('Show page') . ":<br>";
-
- if ($lastpage > $num & $start > 1) {
- $poutput .= '<a href=" ' . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES);
- $poutput .= '?start=' . ($start - 1);
- if ($id != '')
- $poutput .= '&id=' . $id;
- $poutput .= '">';
- $poutput .= '[ < ]';
- $poutput .= '</a>';
- }
- if ($start != 1) {
- $poutput .= '<a href=" ' . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES);
- $poutput .= '?start=1';
- if ($id != '')
- $poutput .= '&id=' . $id;
- $poutput .= '">';
- $poutput .= '[ 1 ]';
- $poutput .= '</a>';
- if ($startpage > 2)
- $poutput .= ' .. ';
- }
-
- for ($i = $startpage; $i <= min(($startpage + $num), $lastpage); $i++) {
- if ($start == $i) {
- $poutput .= '[ <b>' . $i . '</b> ]';
- } elseif ($i != $lastpage & $i != 1) {
- $poutput .= '<a href=" ' . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES);
- $poutput .= '?start=' . $i;
- if ($id != '')
- $poutput .= '&id=' . $id;
- $poutput .= '">';
- $poutput .= '[ ' . $i . ' ]';
- $poutput .= '</a>';
- }
- }
-
- if ($start != $lastpage) {
- if (min(($startpage + $num), $lastpage) < ($lastpage - 1))
- $poutput .= ' .. ';
- $poutput .= '<a href=" ' . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES);
- $poutput .= '?start=' . $lastpage;
- if ($id != '')
- $poutput .= '&id=' . $id;
- $poutput .= '">';
- $poutput .= '[ ' . $lastpage . ' ]';
- $poutput .= '</a>';
- }
-
- if ($lastpage > $num & $start < $lastpage) {
- $poutput .= '<a href=" ' . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES);
- $poutput .= '?start=' . ($start + 1);
- if ($id != '')
- $poutput .= '&id=' . $id;
- $poutput .= '">';
- $poutput .= '[ > ]';
- $poutput .= '</a>';
- }
-
- echo $poutput;
- }
- }
-
- /** Print alphanumeric paging menu
- *
- * Display the alphabetic option: [0-9] [a] [b] .. [z]
- *
- * @param string $letterstart Starting letter/number or 'all'
- * @param int $userid Current user ID
- *
- * @return null
- */
- function show_letters($letterstart, $userid) {
- global $db;
-
- $char_range = array_merge(range('a', 'z'), array('_'));
-
- $allowed = zone_content_view_others($userid);
-
- $query = "SELECT
- DISTINCT SUBSTRING(domains.name, 1, 1) AS letter
- FROM domains
- LEFT JOIN zones ON domains.id = zones.domain_id
- WHERE " . $allowed . " = 1
- OR zones.owner = " . $userid . "
- ORDER BY 1";
- $db->setLimit(36);
-
- $available_chars = array();
- $digits_available = 0;
-
- $response = $db->query($query);
-
- while ($row = $response->fetchRow()) {
- if (preg_match("/[0-9]/", $row['letter'])) {
- $digits_available = 1;
- } elseif (in_array($row['letter'], $char_range)) {
- array_push($available_chars, $row['letter']);
- }
- }
-
- echo _('Show zones beginning with') . ":<br>";
-
- if ($letterstart == "1") {
- echo "<span class=\"lettertaken\">[ 0-9 ]</span> ";
- } elseif ($digits_available) {
- echo "<a href=\"" . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES) . "?letter=1\">[ 0-9 ]</a> ";
- } else {
- echo "[ <span class=\"letternotavailable\">0-9</span> ] ";
- }
-
- foreach ($char_range as $letter) {
- if ($letter == $letterstart) {
- echo "<span class=\"lettertaken\">[ " . $letter . " ]</span> ";
- } elseif (in_array($letter, $available_chars)) {
- echo "<a href=\"" . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES) . "?letter=" . $letter . "\">[ " . $letter . " ]</a> ";
- } else {
- echo "[ <span class=\"letternotavailable\">" . $letter . "</span> ] ";
- }
- }
-
- if ($letterstart == 'all') {
- echo "<span class=\"lettertaken\">[ Show all ]</span>";
- } else {
- echo "<a href=\"" . htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES) . "?letter=all\">[ Show all ]</a> ";
- }
- }
-
- /** Check if current user allowed to view any zone content
- *
- * @param int $userid Current user ID
- *
- * @return int 1 if user has permission to view other users zones content, 0 otherwise
- */
- function zone_content_view_others($userid) {
- global $db;
-
- $query = "SELECT
- DISTINCT u.id
- FROM users u,
- perm_templ pt,
- perm_templ_items pti,
- (SELECT id FROM perm_items WHERE name
- IN ('zone_content_view_others', 'user_is_ueberuser')) pit
- WHERE u.id = " . $userid . "
- AND u.perm_templ = pt.id
- AND pti.templ_id = pt.id
- AND pti.perm_id = pit.id";
-
- $result = $db->queryOne($query);
-
- return ($result ? 1 : 0);
- }
-
- /** Print success message (toolkit.inc)
- *
- * @param string $msg Success message
- *
- * @return null
- */
- function success($msg) {
- if ($msg) {
- echo " <div class=\"success\">" . $msg . "</div>\n";
- } else {
- echo " <div class=\"success\">" . _('Something has been successfully performed. What exactly, however, will remain a mystery.') . "</div>\n";
- }
- }
-
- /** Print message
- *
- * Something has been done nicely, display a message and a back button.
- *
- * @param string $msg Message
- *
- * @return null
- */
- function message($msg) {
- include_once("header.inc.php");
- ?>
- <P><TABLE CLASS="messagetable"><TR><TD CLASS="message"><H2><?php echo _('Success!'); ?></H2>
- <BR>
- <FONT STYLE="font-weight: Bold">
- <P>
- <?php
- if ($msg) {
- echo nl2br($msg);
- } else {
- echo _('Successful!');
- }
- ?>
- </P>
- <BR>
- <P>
- <a href="javascript:history.go(-1)"><< <?php echo _('back'); ?></a></FONT>
- </P>
- </TD></TR></TABLE></P>
- <?php
- include_once("footer.inc.php");
- }
-
- /** Send 302 Redirect with optional argument
- *
- * Reroute a user to a cleanpage of (if passed) arg
- *
- * @param string $arg argument string to add to url
- *
- * @return null
- */
- function clean_page($arg = '') {
- if (!$arg) {
- header("Location: " . htmlentities($_SERVER['SCRIPT_NAME'], ENT_QUOTES) . "?time=" . time());
- exit;
- } else {
- if (preg_match('!\?!si', $arg)) {
- $add = "&time=";
- } else {
- $add = "?time=";
- }
- header("Location: $arg$add" . time());
- exit;
- }
- }
-
- /** Validate email address string
- *
- * @param string $address email address string
- *
- * @return boolean true if valid, false otherwise
- */
- function is_valid_email($address) {
- $fields = preg_split("/@/", $address, 2);
- if ((!preg_match("/^[0-9a-z]([-_.]?[0-9a-z])*$/i", $fields[0])) || (!isset($fields[1]) || $fields[1] == '' || !is_valid_hostname_fqdn($fields[1], 0))) {
- return false;
- }
- return true;
- }
-
- /** Validate numeric string
- *
- * @param string $string number
- *
- * @return boolean true if number, false otherwise
- */
- function v_num($string) {
- if (!preg_match("/^[0-9]+$/i", $string)) {
- return false;
- } else {
- return true;
- }
- }
-
- /** Debug print
- *
- * @param string $var debug statement
- *
- * @return null
- */
- function debug_print($var) {
- echo "<pre style=\"border: 2px solid blue;\">\n";
- if (is_array($var)) {
- print_r($var);
- } else {
- echo $var;
- }
- echo "</pre>\n";
- }
-
- function do_log($syslog_message, $priority) {
- global $syslog_use, $syslog_ident, $syslog_facility;
- if ($syslog_use) {
- openlog($syslog_ident, LOG_PERROR, $syslog_facility);
- syslog($priority, $syslog_message);
- closelog();
- }
- }
-
- function log_error($syslog_message) {
- do_log($syslog_message, LOG_ERR);
- }
-
- function log_warn($syslog_message) {
- do_log($syslog_message, LOG_WARNING);
- }
-
- function log_notice($syslog_message) {
- do_log($syslog_message, LOG_NOTICE);
- }
-
- function log_info($syslog_message) {
- do_log($syslog_message, LOG_INFO);
- }
-
- /** Print the login form
- *
- * @param string $msg Error Message
- * @param string $type Message type [default='success', 'error']
- *
- * @return null
- */
- function auth($msg = "", $type = "success") {
- include_once 'inc/header.inc.php';
- include_once 'inc/config.inc.php';
- global $iface_lang;
-
- if ($msg) {
- print "<div class=\"$type\">$msg</div>\n";
- }
- ?>
- <h2><?php echo _('Log in'); ?></h2>
- <form method="post" action="<?php echo htmlentities($_SERVER["PHP_SELF"], ENT_QUOTES); ?>">
- <input type="hidden" name="query_string" value="<?php echo htmlentities($_SERVER["QUERY_STRING"]); ?>">
- <table border="0">
- <tr>
- <td class="n" width="100"><?php echo _('Username'); ?>:</td>
- <td class="n"><input type="text" class="input" name="username" id="username"></td>
- </tr>
- <tr>
- <td class="n"><?php echo _('Password'); ?>:</td>
- <td class="n"><input type="password" class="input" name="password"></td>
- </tr>
- <tr>
- <td class="n"><?php echo _('Language'); ?>:</td>
- <td class="n">
- <select class="input" name="userlang">
- <?php
- // List available languages (sorted alphabetically)
- include_once 'inc/countrycodes.inc.php';
- $locales = scandir('locale/');
- foreach ($locales as $locale) {
- if (strlen($locale) == 5) {
- $locales_fullname[$locale] = $country_codes[substr($locale, 0, 2)];
- }
- }
- asort($locales_fullname);
- foreach ($locales_fullname as $locale => $language) {
- if (substr($locale, 0, 2) == substr($iface_lang, 0, 2)) {
- echo _('<option selected value="' . $locale . '">' . $language);
- } else {
- echo _('<option value="' . $locale . '">' . $language);
- }
- }
- ?>
- </select>
- </td>
- </tr>
- <tr>
- <td class="n"> </td>
- <td class="n">
- <input type="submit" name="authenticate" class="button" value=" <?php echo _('Go'); ?> ">
- </td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- <!--
- document.getElementById('username').focus();
- //-->
- </script>
- <?php
- include_once('inc/footer.inc.php');
- exit;
- }
-
- /** Logout the user
- *
- * Logout the user and kickback to login form
- *
- * @param string $msg Error Message
- * @param string $type Message type [default='']
- *
- * @return null
- */
- function logout($msg = "", $type = "") {
- session_unset();
- session_destroy();
- session_write_close();
- auth($msg, $type);
- exit;
- }
-
- /** Matches end of string
- *
- * Matches end of string (haystack) against another string (needle)
- *
- * @param string $needle
- * @param string $haystack
- *
- * @return true if ends with specified string, otherwise false
- */
- function endsWith($needle, $haystack) {
- $length = strlen($haystack);
- $nLength = strlen($needle);
- return $nLength <= $length && strncmp(substr($haystack, -$nLength), $needle, $nLength) === 0;
- }
|