diff options
author | portix <portix@gmx.net> | 2011-12-03 16:28:51 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-12-03 16:28:51 +0100 |
commit | 0489549a24698b66ac064b1a0e2782e5bf8719e5 (patch) | |
tree | 4f4dc43c47cbdb44719c9a6ebac877e3357e3747 /src | |
parent | d8a85d239eac09c62380dbde139b4bfd15919413 (diff) | |
parent | 5f36e22d5a9f9750712f5aa0701bf3966d6c3627 (diff) | |
download | dwb-0489549a24698b66ac064b1a0e2782e5bf8719e5.zip |
Merging branch experimental into default
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 27 | ||||
-rw-r--r-- | src/adblock.c | 849 | ||||
-rw-r--r-- | src/adblock.h | 33 | ||||
-rw-r--r-- | src/commands.c | 17 | ||||
-rw-r--r-- | src/commands.h | 3 | ||||
-rw-r--r-- | src/config.h | 32 | ||||
-rw-r--r-- | src/domain.c | 145 | ||||
-rw-r--r-- | src/domain.h | 32 | ||||
-rw-r--r-- | src/dwb.c | 93 | ||||
-rw-r--r-- | src/dwb.h | 42 | ||||
-rw-r--r-- | src/js.c | 99 | ||||
-rw-r--r-- | src/js.h | 29 | ||||
-rw-r--r-- | src/session.c | 3 | ||||
-rw-r--r-- | src/soup.c | 5 | ||||
-rw-r--r-- | src/tlds.in | 5181 | ||||
-rw-r--r-- | src/util.c | 6 | ||||
-rw-r--r-- | src/view.c | 16 |
17 files changed, 6537 insertions, 75 deletions
diff --git a/src/Makefile b/src/Makefile index afa413ee..71d13a23 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,10 +29,37 @@ $(DTARGET): $(DOBJ) @echo "$(CC) $@" @$(CC) $(DOBJ) -o $(DTARGET) $(LDFLAGS) +tlds.h: tlds.in + @echo gen tlds.h + @echo "#ifndef TLDS_H" > $@ + @echo "#define TLDS_H" >> $@ + @echo "static char *TLDS_EFFECTIVE[] = {" >> $@ + @sed '/^\/\/\|^\s*$$/d;s/^/\t"/;s/$$/",/' $< >> $@ + @echo "NULL," >> $@ + @echo "};" >> $@ + @echo "#endif" >> $@ + +domain.o: tlds.h + +domain.do: tlds.h + +# +#tlds.h: effective_tld_names.dat +# @echo gen tlds.h +# @echo "#ifndef TLDS_H" > $@ +# @echo "#define TLDS_H" >> $@ +# @echo "static char *effective_tlds[] = {" >> $@ +# @sed '/^\/\/\|^\s*$$/d;s/\(.*\)/\t"\1",/' $< >> $@ +# @echo -e "\tNULL," >> $@ +# @echo "};" >> $@ +# @echo "#endif" >> $@ + + cgdb: debug cgdb $(DTARGET) clean: $(RM) *.o *.do $(TARGET) $(DTARGET) *.d + $(RM) tlds.h .PHONY: clean all cgdb diff --git a/src/adblock.c b/src/adblock.c new file mode 100644 index 00000000..f71f8309 --- /dev/null +++ b/src/adblock.c @@ -0,0 +1,849 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifdef DWB_ADBLOCKER +#include "dwb.h" +#include "util.h" +#include "domain.h" +#include "adblock.h" +#include "js.h" + +#define LINE_SIZE 1024 + +#define ADBLOCK_INVERSE 15 +/* clear upper bits, last attribute may be 1<<14 */ +#define ADBLOCK_CLEAR_UPPER 0x7fff +#define ADBLOCK_CLEAR_LOWER 0x3fff8000 + +/* DECLARATIONS {{{*/ +/* Type definitions {{{*/ +typedef enum _AdblockOption { + AO_BEGIN = 1<<2, + AO_BEGIN_DOMAIN = 1<<3, + AO_END = 1<<4, + AO_MATCH_CASE = 1<<7, + AO_THIRDPARTY = 1<<8, + AO_NOTHIRDPARTY = 1<<9, +} AdblockOption; +/* Attributes */ +typedef enum _AdblockAttribute { + AA_SCRIPT = 1<<0, + AA_IMAGE = 1<<1, + AA_STYLESHEET = 1<<2, + AA_OBJECT = 1<<3, + AA_XBL = 1<<4, + AA_PING = 1<<5, + AA_XMLHTTPREQUEST = 1<<6, + AA_OBJECT_SUBREQUEST = 1<<7, + AA_DTD = 1<<8, + AA_SUBDOCUMENT = 1<<9, + AA_DOCUMENT = 1<<10, + AA_ELEMHIDE = 1<<11, + AA_OTHER = 1<<12, + /* inverse */ +} AdblockAttribute; +#define AA_FRAME (AA_SUBDOCUMENT | (AA_SUBDOCUMENT<<ADBLOCK_INVERSE)) +#define AA_MAINFRAME (AA_DOCUMENT | (AA_DOCUMENT<<ADBLOCK_INVERSE)) + +typedef struct _AdblockRule { + GRegex *pattern; + AdblockOption options; + AdblockAttribute attributes; + char **domains; +} AdblockRule; + +typedef struct _AdblockElementHider { + char *selector; + char **domains; + gboolean exception; +} AdblockElementHider; +/*}}}*/ + +static JSValueRef adblock_js_callback(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception); + +/* Static variables {{{*/ +static GPtrArray *_simple_rules; +static GPtrArray *_simple_exceptions; +static GPtrArray *_rules; +static GPtrArray *_exceptions; +static GHashTable *_hider_rules; +/* only used to freeing elementhider */ +static GSList *_hider_list; +static GString *_css_rules; +static GString *_css_exceptions; +static gboolean _init = false; +/*}}}*//*}}}*/ + + +/* NEW AND FREE {{{*/ +/* adblock_rule_new {{{*/ +static AdblockRule * +adblock_rule_new() { + AdblockRule *rule = dwb_malloc(sizeof(AdblockRule)); + rule->pattern = NULL; + rule->options = 0; + rule->attributes = 0; + rule->domains = NULL; + return rule; +}/*}}}*/ + +/* adblock_rule_free {{{*/ +static void +adblock_rule_free(AdblockRule *rule) { + if (rule->pattern != NULL) { + g_regex_unref(rule->pattern); + } + if (rule->domains != NULL) { + g_strfreev(rule->domains); + } + g_free(rule); +}/*}}}*/ + +/* adblock_element_hider_new {{{*/ +static AdblockElementHider * +adblock_element_hider_new() { + AdblockElementHider *hider = dwb_malloc(sizeof(AdblockElementHider)); + hider->selector = NULL; + hider->domains = NULL; + return hider; +}/*}}}*/ + +/* adblock_element_hider_free {{{*/ +static void +adblock_element_hider_free(AdblockElementHider *hider) { + if (hider) { + if (hider->selector) { + g_free(hider->selector); + } + if (hider->domains) { + g_strfreev(hider->domains); + } + g_free(hider); + } +}/*}}}*//*}}}*/ + + +/* MATCH {{{*/ +/* inline adblock_do_match(AdblockRule *, const char *) {{{*/ +static inline gboolean +adblock_do_match(AdblockRule *rule, const char *uri) { + if (g_regex_match(rule->pattern, uri, 0, NULL)) { + PRINT_DEBUG("blocked %s %s\n", uri, g_regex_get_pattern(rule->pattern)); + return true; + } + return false; +}/*}}}*/ + +/* adblock_match(GPtrArray *, SoupURI *, const char *base_domain, * AdblockAttribute, gboolean thirdparty) + * Params: + * array - the filtes array + * uri - the uri to check + * uri_host - the hostname of the request + * uri_base - the domainname of the request + * host - the hostname of the page + * domain - the domainname of the page + * thirdparty - the domainname of the page + * {{{*/ +gboolean +adblock_match(GPtrArray *array, const char *uri, const char *uri_host, const char *uri_base, const char *host, const char *domain, AdblockAttribute attributes, gboolean thirdparty) { + gboolean match = false; + const char *base_start = strstr(uri, uri_base); + const char *uri_start = strstr(uri, uri_host); + const char *suburis[SUBDOMAIN_MAX]; + int uc = 0; + const char *cur = uri_start; + const char *nextdot; + AdblockRule *rule; + /* Get all suburis */ + suburis[uc++] = cur; + while (cur != base_start) { + nextdot = strchr(cur, '.'); + cur = nextdot + 1; + suburis[uc++] = cur; + if (uc == SUBDOMAIN_MAX-1) + break; + } + suburis[uc++] = NULL; + + for (int i=0; i<array->len; i++) { + rule = g_ptr_array_index(array, i); + if (attributes) { + /* If exception attributes exists, check if exception is matched */ + if (rule->attributes & ADBLOCK_CLEAR_LOWER && rule->attributes & (attributes<<ADBLOCK_INVERSE)) + continue; + /* If attribute restriction exists, check if attribute is matched */ + if (rule->attributes & ADBLOCK_CLEAR_UPPER && ! (rule->attributes & attributes) ) + continue; + } + if (rule->domains && !domain_match(rule->domains, host, domain)) { + continue; + } + if ( (rule->options & AO_THIRDPARTY && !thirdparty) + || (rule->options & AO_NOTHIRDPARTY && thirdparty) ) + continue; + if (rule->options & AO_BEGIN_DOMAIN) { + for (int i=0; suburis[i]; i++) { + if ( (match = adblock_do_match(rule, suburis[i])) ) + return match; + } + } + else if ((match = adblock_do_match(rule, uri))) { + break; + } + + } + return match; +}/*}}}*//*}}}*/ + +/* adblock_js_callback {{{*/ +static JSValueRef +adblock_js_callback(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argc, const JSValueRef argv[], JSValueRef* exception) { + if (argc != 1 || ! JSValueIsObject(ctx, argv[0])) + return JSValueMakeBoolean(ctx, false); + char *tagname = NULL; + char *baseuri = NULL; + char *tmpuri = NULL; + char *uri = NULL; + char *rel = NULL; + char *type = NULL; + SoupURI *suri = NULL, *sbaseuri = NULL; + JSValueRef exc = NULL; + JSObjectRef event = JSValueToObject(ctx, argv[0], &exc); + if (exc != NULL) + return NULL; + + + JSObjectRef srcElement = js_get_object_property(ctx, event, "srcElement"); + if (srcElement == NULL) + return JSValueMakeBoolean(ctx, false); + baseuri = js_get_string_property(ctx, srcElement, "baseURI"); + if (baseuri == NULL) + goto error_out; + tmpuri = js_get_string_property(ctx, event, "url"); + if (tmpuri == NULL) + goto error_out; + + int attributes = (int)js_get_double_property(ctx, function, "attributes"); + + tagname = js_get_string_property(ctx, srcElement, "tagName"); + if (!g_strcmp0(tagname, "IMG")) + attributes |= AA_IMAGE; + else if (!g_strcmp0(tagname, "SCRIPT")) + attributes |= AA_SCRIPT; + else if (!g_strcmp0(tagname, "LINK") ) { + rel = js_get_string_property(ctx, srcElement, "rel"); + type = js_get_string_property(ctx, srcElement, "type"); + if (!g_strcmp0(rel, "stylesheet") || !g_strcmp0(type, "text/css")) { + attributes |= AA_STYLESHEET; + } + FREE(rel); + FREE(type); + } + else if (!g_strcmp0(tagname, "OBJECT") || ! g_strcmp0(tagname, "EMBED")) { + attributes |= AA_OBJECT; + } + + /* Check for relative paths. + * WebKit will only handle http(s), so it is not required to check for other + * schemes + */ + if (! g_regex_match_simple("^https?://", tmpuri, 0, 0)) { + int offset = *tmpuri == '/' && g_str_has_suffix(baseuri, "/") ? 1 : 0; + uri = g_strconcat(baseuri, tmpuri+offset, NULL); + g_free(tmpuri); + } + else + uri = tmpuri; + + suri = soup_uri_new(uri); + if (suri == NULL) + goto error_out; + sbaseuri = soup_uri_new(baseuri); + if (sbaseuri == NULL) + goto error_out; + + /* FIXME: soup_uri_get_host is just used to get parse the uri */ + const char *host = soup_uri_get_host(suri); + if (host == NULL) + goto error_out; + const char *basehost = soup_uri_get_host(sbaseuri); + if (basehost == NULL) + goto error_out; + + const char *domain = domain_get_base_for_host(host); + const char *basedomain = domain_get_base_for_host(basehost); + gboolean thirdparty = g_strcmp0(domain, basedomain); + if (!adblock_match(_exceptions, uri, host, domain, basehost, basedomain, attributes, thirdparty)) { + if (adblock_match(_rules, uri, host, domain, basehost, basedomain, attributes, thirdparty)) { + JSObjectRef prevent = js_get_object_property(ctx, event, "preventDefault"); + if (prevent) { + JSObjectCallAsFunction(ctx, prevent, event, 0, NULL, NULL); + } + } + } + + +error_out: + if (suri != NULL) soup_uri_free(suri); + if (sbaseuri != NULL) soup_uri_free(sbaseuri); + if (tagname) g_free(tagname); + if (baseuri) g_free(baseuri); + if (uri) g_free(uri); + + + return NULL; +}/*}}}*/ + +/* LOAD_CALLBACKS {{{*/ +/* js_create_callback {{{*/ +static void +adblock_create_js_callback(WebKitWebFrame *frame, JSObjectCallAsFunctionCallback function, int attr) { + JSContextRef ctx = webkit_web_frame_get_global_context(frame); + JSObjectRef globalObject = JSContextGetGlobalObject(ctx); + JSObjectRef newcall = JSObjectMakeFunctionWithCallback(ctx, NULL, function); + JSStringRef jsattr = JSStringCreateWithUTF8CString("attributes"); + JSObjectSetProperty(ctx, newcall, jsattr, JSValueMakeNumber(ctx, attr), + kJSPropertyAttributeDontDelete | kJSPropertyAttributeDontEnum | kJSPropertyAttributeReadOnly, NULL); + JSStringRelease(jsattr); + JSValueRef val = js_get_object_property(ctx, globalObject, "addEventListener"); + if (val) { + JSStringRef beforeLoadString = JSStringCreateWithUTF8CString("beforeload"); + JSValueRef values[3] = { JSValueMakeString(ctx, beforeLoadString), newcall, JSValueMakeBoolean(ctx, true), }; + JSObjectCallAsFunction(ctx, JSValueToObject(ctx, val, NULL), globalObject, 3, values, NULL); + JSStringRelease(beforeLoadString); + } +}/*}}}*/ + +/* adblock_frame_load_committed_cb {{{*/ +static void +adblock_frame_load_committed_cb(WebKitWebFrame *frame, GList *gl) { + adblock_create_js_callback(frame, (JSObjectCallAsFunctionCallback)adblock_js_callback, AA_SUBDOCUMENT); +}/*}}}*/ + +/* adblock_frame_created_cb {{{*/ +void +adblock_frame_created_cb(WebKitWebView *wv, WebKitWebFrame *frame, GList *gl) { + g_signal_connect(frame, "load-committed", G_CALLBACK(adblock_frame_load_committed_cb), gl); +}/*}}}*/ + +/* adblock_resource_request_cb {{{*/ +static void +adblock_resource_request_cb(WebKitWebView *wv, WebKitWebFrame *frame, + WebKitWebResource *resource, WebKitNetworkRequest *request, + WebKitNetworkResponse *response, GList *gl) { + if (request == NULL) + return; + AdblockAttribute attribute = webkit_web_view_get_main_frame(wv) == frame ? AA_DOCUMENT : AA_SUBDOCUMENT; + + const char *uri = webkit_network_request_get_uri(request); + if (uri == NULL) + return; + SoupMessage *msg = webkit_network_request_get_message(request); + if (msg == NULL) + return; + SoupURI *suri = soup_message_get_uri(msg); + const char *host = soup_uri_get_host(suri); + if (host == NULL) + return; + const char *domain = domain_get_base_for_host(host); + if (domain == NULL) + return; + + SoupURI *sfirst_party = soup_message_get_first_party(msg); + if (sfirst_party == NULL) + return; + const char *firsthost = soup_uri_get_host(sfirst_party); + if (firsthost == NULL) + return; + const char *firstdomain = domain_get_base_for_host(firsthost); + if (firstdomain == NULL) + return; + gboolean thirdparty = strcmp(domain, firstdomain); + + if (!adblock_match(_simple_exceptions, uri, host, domain, firsthost, firstdomain, attribute, thirdparty)) { + if (adblock_match(_simple_rules, uri, host, domain, firsthost, firstdomain, attribute, thirdparty)) { + webkit_network_request_set_uri(request, "about:blank"); + } + } +}/*}}}*/ + +/* adblock_load_status_cb(WebKitWebView *, GParamSpec *, GList *) {{{*/ +static void +adblock_load_status_cb(WebKitWebView *wv, GParamSpec *p, GList *gl) { + WebKitLoadStatus status = webkit_web_view_get_load_status(wv); + GSList *list; + WebKitWebFrame *frame = webkit_web_view_get_main_frame(wv); + WebKitDOMStyleSheetList *slist = NULL; + WebKitDOMStyleSheet *ssheet = NULL; + if (status == WEBKIT_LOAD_COMMITTED) { + adblock_create_js_callback(frame, (JSObjectCallAsFunctionCallback)adblock_js_callback, AA_DOCUMENT); + } + else if (status == WEBKIT_LOAD_FIRST_VISUALLY_NON_EMPTY_LAYOUT) { + /* Get hostname and base_domain */ + WebKitWebDataSource *datasource = webkit_web_frame_get_data_source(frame); + WebKitNetworkRequest *request = webkit_web_data_source_get_request(datasource); + + SoupMessage *msg = webkit_network_request_get_message(request); + if (msg == NULL) + return; + + SoupURI *suri = soup_message_get_uri(msg); + g_return_if_fail(suri != NULL); + + const char *host = soup_uri_get_host(suri); + const char *base_domain = domain_get_base_for_host(host); + g_return_if_fail(host != NULL); + g_return_if_fail(base_domain != NULL); + + AdblockElementHider *hider; + char *pattern, *escaped, *replaced = NULL; + char *tmpreplaced = g_strdup(_css_exceptions->str); + GString *css_rule = g_string_new(NULL); + GRegex *regex = NULL; + + /* get all subdomains */ + const char *subdomains[SUBDOMAIN_MAX]; + char *nextdot = NULL; + int uc = 0; + const char *tmphost = host; + subdomains[uc++] = tmphost; + while (tmphost != base_domain) { + nextdot = strchr(tmphost, '.'); + tmphost = nextdot + 1; + subdomains[uc++] = tmphost; + if (uc == SUBDOMAIN_MAX-1) + break; + } + subdomains[uc++] = NULL; + + + for (int i=0; subdomains[i]; i++) { + list = g_hash_table_lookup(_hider_rules, subdomains[i]); + if (list) { + for (GSList *l = list; l; l=l->next) { + hider = l->data; + if (hider->exception) { + escaped = g_regex_escape_string(hider->selector, -1); + pattern = g_strdup_printf("(?<=^|,)%s,?", escaped); + regex = g_regex_new(pattern, 0, 0, NULL); + replaced = g_regex_replace(regex, tmpreplaced, -1, 0, "", 0, NULL); + g_free(tmpreplaced); + tmpreplaced = replaced; + g_free(escaped); + g_free(pattern); + g_regex_unref(regex); + } + else if (domain_match(hider->domains, host, base_domain)) { + g_string_append(css_rule, hider->selector); + g_string_append_c(css_rule, ','); + } + } + break; + } + } + /* Adding replaced exceptions */ + if (replaced != NULL) { + g_string_append(css_rule, replaced); + g_string_append_c(css_rule, ','); + } + /* No exception-exceptions found, so we take all exceptions */ + else if (css_rule == NULL || css_rule->len == 0) { + g_string_append(css_rule, _css_exceptions->str); + } + if (css_rule->len > 1) { + g_string_append(css_rule, _css_rules->str); + if (css_rule->str[css_rule->len-1] == ',') + g_string_erase(css_rule, css_rule->len-1, 1); + g_string_append(css_rule, "{display:none!important;}"); + WebKitDOMDocument *doc = webkit_web_view_get_dom_document(wv); + slist = webkit_dom_document_get_style_sheets(doc); + if (slist) { + ssheet = webkit_dom_style_sheet_list_item(slist, 0); + } + if (ssheet) { + webkit_dom_css_style_sheet_insert_rule((void*)ssheet, css_rule->str, 0, NULL); + g_object_unref(ssheet); + } + else { + WebKitDOMElement *style = webkit_dom_document_create_element(doc, "style", NULL); + WebKitDOMHTMLHeadElement *head = webkit_dom_document_get_head(doc); + webkit_dom_html_element_set_inner_html(WEBKIT_DOM_HTML_ELEMENT(style), css_rule->str, NULL); + webkit_dom_node_append_child(WEBKIT_DOM_NODE(head), WEBKIT_DOM_NODE(style), NULL); + g_object_unref(style); + g_object_unref(head); + } + if (slist) + g_object_unref(slist); + g_object_unref(doc); + g_string_free(css_rule, true); + } + g_free(tmpreplaced); + } +}/*}}}*//*}}}*/ + + +/* START AND END {{{*/ + +gboolean +adblock_running() { + return _init && GET_BOOL("adblocker"); +} +/* adblock_disconnect(GList *) {{{*/ +void +adblock_disconnect(GList *gl) { + View *v = VIEW(gl); + if (v->status->signals[SIG_AD_LOAD_STATUS] > 0) { + g_signal_handler_disconnect(WEBVIEW(gl), VIEW(gl)->status->signals[SIG_AD_LOAD_STATUS]); + v->status->signals[SIG_AD_LOAD_STATUS] = 0; + } + if (v->status->signals[SIG_AD_FRAME_CREATED] > 0) { + g_signal_handler_disconnect(WEBVIEW(gl), (VIEW(gl)->status->signals[SIG_AD_FRAME_CREATED])); + v->status->signals[SIG_AD_FRAME_CREATED] = 0; + } + if (v->status->signals[SIG_AD_RESOURCE_REQUEST] > 0) { + g_signal_handler_disconnect(WEBVIEW(gl), (VIEW(gl)->status->signals[SIG_AD_RESOURCE_REQUEST])); + v->status->signals[SIG_AD_RESOURCE_REQUEST] = 0; + } +}/*}}}*/ + +/* adblock_connect() {{{*/ +void +adblock_connect(GList *gl) { + if (!_init && !adblock_init()) + return; + if (_rules->len > 0 || _css_rules->len > 0) { + VIEW(gl)->status->signals[SIG_AD_LOAD_STATUS] = g_signal_connect(WEBVIEW(gl), "notify::load-status", G_CALLBACK(adblock_load_status_cb), gl); + VIEW(gl)->status->signals[SIG_AD_FRAME_CREATED] = g_signal_connect(WEBVIEW(gl), "frame-created", G_CALLBACK(adblock_frame_created_cb), gl); + } + if (_simple_rules->len > 0) { + VIEW(gl)->status->signals[SIG_AD_RESOURCE_REQUEST] = g_signal_connect(WEBVIEW(gl), "resource-request-starting", G_CALLBACK(adblock_resource_request_cb), gl); + } +}/*}}}*/ + +/* adblock_warn_ignored(const char *message, const char *rule){{{*/ +static void +adblock_warn_ignored(const char *message, const char *rule) { + fprintf(stderr, "Adblock warning: %s\n", message); + fprintf(stderr, "Adblock warning: Rule %s will be ignored\n", rule); +}/*}}}*/ + +/* adblock_rule_parse(char *filterlist) {{{*/ +static void +adblock_rule_parse(char *filterlist) { + char *content = util_get_file_content(filterlist); + char **lines = g_strsplit(content, "\n", -1); + char *pattern; + GError *error = NULL; + char **domain_arr = NULL; + char *domains; + const char *domain; + const char *tmp; + const char *option_string; + const char *o; + char *tmp_a, *tmp_b, *tmp_c; + int length = 0; + int option, attributes, inverse; + gboolean exception; + GRegex *rule; + char **options_arr; + char warning[256]; + for (int i=0; lines[i] != NULL; i++) { + pattern = lines[i]; + + //DwbStatus ret = STATUS_OK; + GRegexCompileFlags regex_flags = G_REGEX_OPTIMIZE | G_REGEX_CASELESS; + if (pattern == NULL) + break; + //return STATUS_IGNORE; + g_strstrip(pattern); + if (strlen(pattern) == 0) + break; + //return STATUS_IGNORE; + if (pattern[0] == '!' || pattern[0] == '[') { + break; + //return STATUS_IGNORE; + } + tmp = tmp_a = tmp_b = tmp_c = NULL; + /* Element hiding rules */ + if ( (tmp = strstr(pattern, "##")) != NULL) { + /* Match domains */ + if (*pattern != '#') { + domains = g_strndup(pattern, tmp-pattern); + AdblockElementHider *hider = adblock_element_hider_new(); + domain_arr = g_strsplit(domains, ",", -1); + hider->domains = domain_arr; + + hider->selector = g_strdup(tmp+2); + GSList *list; + gboolean hider_exc = true; + for (; *domain_arr; domain_arr++) { + domain = *domain_arr; + if (*domain == '~') + domain++; + else + hider_exc = false; + list = g_hash_table_lookup(_hider_rules, domain); + if (list == NULL) { + list = g_slist_append(list, hider); + g_hash_table_insert(_hider_rules, g_strdup(domain), list); + } + else + list = g_slist_append(list, hider); + } + hider->exception = hider_exc; + if (hider_exc) { + g_string_append(_css_exceptions, tmp + 2); + g_string_append_c(_css_exceptions, ','); + } + _hider_list = g_slist_append(_hider_list, hider); + g_free(domains); + } + /* general rules */ + else { + g_string_append(_css_rules, tmp + 2); + g_string_append_c(_css_rules, ','); + } + } + /* Request patterns */ + else { + exception = false; + option = 0; + attributes = 0; + rule = NULL; + domain_arr = NULL; + /* Exception */ + tmp = pattern; + if (tmp[0] == '@' && tmp[1] == '@') { + exception = true; + tmp +=2; + } + option_string = strstr(tmp, "$"); + if (option_string != NULL) { + tmp_a = g_strndup(tmp, option_string - tmp); + options_arr = g_strsplit(option_string+1, ",", -1); + inverse = 0; + for (int i=0; options_arr[i] != NULL; i++) { + inverse = 0; + o = options_arr[i]; + /* attributes */ + if (*o == '~') { + inverse = ADBLOCK_INVERSE; + o++; + } + if (!strcmp(o, "script")) + attributes |= (AA_SCRIPT << inverse); + else if (!strcmp(o, "image")) + attributes |= (AA_IMAGE << inverse); + else if (!strcmp(o, "stylesheet")) + attributes |= (AA_STYLESHEET << inverse); + else if (!strcmp(o, "object")) { + attributes |= (AA_OBJECT << inverse); + } + else if (!strcmp(o, "object-subrequest")) { + if (! inverse) { + adblock_warn_ignored("Adblock option 'object-subrequest' isn't supported", pattern); + goto error_out; + } + } + else if (!strcmp(o, "subdocument")) { + attributes |= (AA_SUBDOCUMENT << inverse); + } + else if (!strcmp(o, "document")) { + if (exception) + attributes |= (AA_DOCUMENT << inverse); + else + adblock_warn_ignored("Adblock option 'document' can only be applied to exception rules", pattern); + } + else if (!strcmp(o, "match-case")) + option |= AO_MATCH_CASE; + else if (!strcmp(o, "third-party")) { + if (inverse) { + option |= AO_NOTHIRDPARTY; + } + else { + option |= AO_THIRDPARTY; + } + } + else if (g_str_has_prefix(o, "domain=")) { + domain_arr = g_strsplit(options_arr[i] + 7, "|", -1); + } + else { + /* currently unsupported xbl, ping, xmlhttprequest, dtd, elemhide, + * other, collapse, donottrack, object-subrequest, popup */ + snprintf(warning, 255, "Adblock option '%s' isn't supported", o); + adblock_warn_ignored(warning, pattern); + goto error_out; + } + } + tmp = tmp_a; + g_strfreev(options_arr); + } + length = strlen(tmp); + /* Beginning of pattern / domain */ + if (length > 0 && tmp[0] == '|') { + if (length > 1 && tmp[1] == '|') { + option |= AO_BEGIN_DOMAIN; + tmp += 2; + length -= 2; + } + else { + option |= AO_BEGIN; + tmp++; + length--; + } + } + /* End of pattern */ + if (length > 0 && tmp[length-1] == '|') { + tmp_b = g_strndup(tmp, length-1); + tmp = tmp_b; + option |= AO_END; + length--; + } + /* Regular Expression */ + if (length > 0 && tmp[0] == '/' && tmp[length-1] == '/') { + tmp_c = g_strndup(tmp+1, length-2); + + if ( (option & AO_MATCH_CASE) != 0) + regex_flags &= ~G_REGEX_CASELESS; + rule = g_regex_new(tmp_c, regex_flags, 0, &error); + + FREE(tmp_c); + if (error != NULL) { + adblock_warn_ignored("Invalid regular expression", pattern); + //ret = STATUS_ERROR; + g_clear_error(&error); + goto error_out; + } + } + else { + GString *buffer = g_string_new(NULL); + if (option & AO_BEGIN || option & AO_BEGIN_DOMAIN) { + g_string_append_c(buffer, '^'); + } + /* FIXME: possibly use g_regex_escape_string */ + for (const char *regexp_tmp = tmp; *regexp_tmp; regexp_tmp++ ) { + switch (*regexp_tmp) { + case '^' : g_string_append(buffer, "([\\x00-\\x24\\x26-\\x2C\\x2F\\x3A-\\x40\\x5B-\\x5E\\x60\\x7B-\\x80]|$)"); + break; + case '*' : g_string_append(buffer, ".*"); + break; + case '?' : + case '{' : + case '}' : + case '(' : + case ')' : + case '[' : + case ']' : + case '+' : + case '.' : + case '\\' : + case '|' : g_string_append_c(buffer, '\\'); + default : g_string_append_c(buffer, *regexp_tmp); + } + } + if (option & AO_END) { + g_string_append_c(buffer, '$'); + } + if ( (option & AO_MATCH_CASE) != 0) + regex_flags &= ~G_REGEX_CASELESS; + rule = g_regex_new(buffer->str, regex_flags, 0, &error); + g_string_free(buffer, true); + if (error != NULL) { + fprintf(stderr, "dwb warning: ignoring adblock rule %s: %s\n", pattern, error->message); + g_clear_error(&error); + goto error_out; + } + } + AdblockRule *adrule = adblock_rule_new(); + adrule->attributes = attributes; + adrule->pattern = rule; + adrule->options = option; + adrule->domains = domain_arr; + if (!(attributes & ~(AA_MAINFRAME | AA_FRAME))) { + if (exception) + g_ptr_array_add(_simple_exceptions, adrule); + else + g_ptr_array_add(_simple_rules, adrule); + } + else { + if (exception) + g_ptr_array_add(_exceptions, adrule); + else + g_ptr_array_add(_rules, adrule); + } + } +error_out: + FREE(tmp_a); + FREE(tmp_b); + } + g_strfreev(lines); + g_free(content); +}/*}}}*/ + +/* adblock_end() {{{*/ +void +adblock_end() { + if (_css_rules != NULL) + g_string_free(_css_rules, true); + if (_css_exceptions != NULL) + g_string_free(_css_exceptions, true); + if (_rules != NULL) + g_ptr_array_free(_rules, true); + if (_simple_rules != NULL) + g_ptr_array_free(_simple_rules, true); + if (_simple_exceptions != NULL) + g_ptr_array_free(_simple_exceptions, true); + if(_exceptions != NULL) + g_ptr_array_free(_exceptions, true); + if (_hider_rules != NULL) + g_hash_table_remove_all(_hider_rules); + if (_hider_list != NULL) { + for (GSList *l = _hider_list; l; l=l->next) + adblock_element_hider_free((AdblockElementHider*)l->data); + g_slist_free(_hider_list); + } +}/*}}}*/ + +/* adblock_init() {{{*/ +gboolean +adblock_init() { + if (_init) + return true; + if (!GET_BOOL("adblocker")) + return false; + char *filterlist = GET_CHAR("adblocker-filterlist"); + if (filterlist == NULL) + return false; + if (!g_file_test(filterlist, G_FILE_TEST_EXISTS)) { + fprintf(stderr, "Filterlist not found: %s\n", filterlist); + return false; + } + _rules = g_ptr_array_new_with_free_func((GDestroyNotify)adblock_rule_free); + _exceptions = g_ptr_array_new_with_free_func((GDestroyNotify)adblock_rule_free); + _simple_rules = g_ptr_array_new_with_free_func((GDestroyNotify)adblock_rule_free); + _simple_exceptions = g_ptr_array_new_with_free_func((GDestroyNotify)adblock_rule_free); + _hider_rules = g_hash_table_new_full((GHashFunc)g_str_hash, (GEqualFunc)g_str_equal, (GDestroyNotify)g_free, NULL); + _css_exceptions = g_string_new(NULL); + _css_rules = g_string_new(NULL); + domain_init(); + adblock_rule_parse(filterlist); + + _init = true; + return true; +}/*}}}*//*}}}*/ +#endif diff --git a/src/adblock.h b/src/adblock.h new file mode 100644 index 00000000..014fdb48 --- /dev/null +++ b/src/adblock.h @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifdef DWB_ADBLOCKER +#ifndef ADBLOCK_H +#define ADBLOCK_H + +#include "dwb.h" + +gboolean adblock_init(); +gboolean adblock_running(); +void adblock_end(); +void adblock_connect(GList *gl); +void adblock_disconnect(GList *gl); +void adblock_set_user_stylesheet(const char *file); + +#endif // ADBLOCK_H +#endif // DWB_ADBLOCKER diff --git a/src/commands.c b/src/commands.c index 55b12d8e..4b743cb1 100644 --- a/src/commands.c +++ b/src/commands.c @@ -18,6 +18,9 @@ #include "commands.h" #include "local.h" +#ifdef DWB_ADBLOCKER +#include "adblock.h" +#endif static int inline dwb_floor(double x) { return x >= 0 ? (int) x : (int) x - 1; @@ -716,6 +719,20 @@ commands_toggle_scripts(KeyMap *km, Arg *arg) { return STATUS_OK; }/*}}}*/ +#ifdef DWB_ADBLOCKER +/* commands_toggle_adblocker {{{ */ +DwbStatus +commands_toggle_adblocker(KeyMap *km, Arg *arg) { + gboolean running = adblock_running(); + WebSettings *s = g_hash_table_lookup(dwb.settings, "adblocker"); + s->arg.b = !running; + dwb_set_adblock(NULL, s); + + dwb_set_normal_message(dwb.state.fview, true, "Adblocker %s", running ? "disabled" : "enabled"); + return STATUS_OK; +}/*}}}*/ +#endif + /* commands_new_window_or_view{{{*/ DwbStatus commands_new_window_or_view(KeyMap *km, Arg *arg) { diff --git a/src/commands.h b/src/commands.h index ec8ebf9e..9497a89c 100644 --- a/src/commands.h +++ b/src/commands.h @@ -96,5 +96,8 @@ DwbStatus commands_only(KeyMap *, Arg *); DwbStatus commands_toggle_bars(KeyMap *, Arg *); DwbStatus commands_presentation_mode(KeyMap *, Arg *); DwbStatus commands_toggle_protected(KeyMap *, Arg *); +#ifdef DWB_ADBLOCKER +DwbStatus commands_toggle_adblocker(KeyMap *, Arg *); +#endif #endif diff --git a/src/config.h b/src/config.h index 3f1ce10a..ba275902 100644 --- a/src/config.h +++ b/src/config.h @@ -139,6 +139,7 @@ static KeyValue KEYS[] = { { "toggle_plugins_host", { "ph", 0 }, }, { "toggle_plugins_uri_tmp", { "ptu", 0 }, }, { "toggle_plugins_host_tmp", { "pth", 0 }, }, + { "toggle_adblocker", { "a", GDK_CONTROL_MASK }, }, { "new_view", { "V", 0 }, }, { "new_window", { "W", 0 }, }, { "save", { "sf", 0 }, }, @@ -447,6 +448,10 @@ static FunctionMap FMAP [] = { (Func) commands_toggle_plugin_blocker, NULL, POST_SM, { .n = ALLOW_HOST | ALLOW_TMP } }, { { "toggle_plugins_uri_tmp", "Toggle block content for current url for this session" }, 1, (Func) commands_toggle_plugin_blocker, NULL, POST_SM, { .n = ALLOW_URI | ALLOW_TMP } }, +#ifdef DWB_ADBLOCKER + { { "toggle_adblocker", "Toggle adblocker" }, 1, + (Func) commands_toggle_adblocker, NULL, POST_SM, { 0 } }, +#endif { { "toggle_hidden_files", "Toggle hidden files in directory listing" }, 1, (Func) commands_toggle_hidden_files, NULL, ALWAYS_SM, { 0 } }, { { "print", "Print current page" }, 1, @@ -637,25 +642,25 @@ static WebSettings DWB_SETTINGS[] = { SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func) dwb_reload_layout, }, { { "hint-letter-seq", "Letter sequence for letter hints", }, - SETTING_GLOBAL, CHAR, { .p = "FDSARTGBVECWXQYIOPMNHZULKJ" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "FDSARTGBVECWXQYIOPMNHZULKJ" }, (S_Func) dwb_reload_scripts, }, { { "hint-highlight-links", "Whether to highlight links in hintmode", }, - SETTING_GLOBAL, BOOLEAN, { .b = false }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, BOOLEAN, { .b = false }, (S_Func) dwb_reload_scripts, }, { { "hint-style", "Whether to use 'letter' or 'number' hints", }, - SETTING_GLOBAL, CHAR, { .p = "letter" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "letter" }, (S_Func) dwb_reload_scripts, }, { { "hint-font", "Font size of hints", }, - SETTING_GLOBAL, CHAR, { .p = "bold 10px monospace" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "bold 10px monospace" }, (S_Func) dwb_reload_scripts, }, { { "hint-fg-color", "Foreground color of hints", }, - SETTING_GLOBAL, CHAR, { .p = "#000000" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "#000000" }, (S_Func) dwb_reload_scripts, }, { { "hint-bg-color", "Background color of hints", }, - SETTING_GLOBAL, CHAR, { .p = "#ffffff" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "#ffffff" }, (S_Func) dwb_reload_scripts, }, { { "hint-active-color", "Color of the active link in hintmode", }, - SETTING_GLOBAL, CHAR, { .p = "#00ff00" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "#00ff00" }, (S_Func) dwb_reload_scripts, }, { { "hint-normal-color", "Color of inactive links in hintmode", }, - SETTING_GLOBAL, CHAR, { .p = "#ffff99" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "#ffff99" }, (S_Func) dwb_reload_scripts, }, { { "hint-border", "Border used for hints", }, - SETTING_GLOBAL, CHAR, { .p = "1px solid #000000" }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, CHAR, { .p = "1px solid #000000" }, (S_Func) dwb_reload_scripts, }, { { "hint-opacity", "The opacity of hints", }, - SETTING_GLOBAL, DOUBLE, { .d = 0.8 }, (S_Func) dwb_reload_scripts, }, + SETTING_PER_VIEW, DOUBLE, { .d = 0.8 }, (S_Func) dwb_reload_scripts, }, { { "auto-completion", "Show possible shortcuts", }, SETTING_GLOBAL, BOOLEAN, { .b = false }, (S_Func)completion_set_autcompletion, }, { { "startpage", "The default homepage", }, @@ -712,9 +717,12 @@ static WebSettings DWB_SETTINGS[] = { SETTING_GLOBAL, CHAR, { .p = "xterm -e ncftp 'dwb_uri'" }, (S_Func)dwb_set_dummy, }, { { "editor", "External editor", }, SETTING_GLOBAL, CHAR, { .p = "xterm -e vim dwb_uri" }, (S_Func)dwb_set_dummy, }, +#ifdef DWB_ADBLOCKER { { "adblocker", "Whether to block advertisements via a filterlist", }, - SETTING_PER_VIEW, BOOLEAN, { .b = false }, (S_Func)dwb_set_adblock, }, + SETTING_GLOBAL, BOOLEAN, { .b = false }, (S_Func)dwb_set_adblock, }, + { { "adblocker-filterlist", "Path to a filterlist", }, + SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func)dwb_set_dummy, }, +#endif { { "plugin-blocker", "Whether to block flash plugins and replace them with a clickable element", }, SETTING_PER_VIEW, BOOLEAN, { .b = true }, (S_Func)dwb_set_plugin_blocker, }, };/*}}}*/ - diff --git a/src/domain.c b/src/domain.c new file mode 100644 index 00000000..734868c6 --- /dev/null +++ b/src/domain.c @@ -0,0 +1,145 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ +#ifdef DWB_DOMAIN_SERVICE +#include <glib-2.0/glib.h> +#include <string.h> +#include "util.h" +#include "domain.h" +#include "tlds.h" + +static GHashTable *_tld_table; + +gboolean +domain_match(char **domains, const char *host, const char *base_domain) { + g_return_val_if_fail(domains != NULL, false); + g_return_val_if_fail(host != NULL, false); + g_return_val_if_fail(base_domain != NULL, false); + g_return_val_if_fail(g_str_has_suffix(host, base_domain), false); + + const char *subdomains[SUBDOMAIN_MAX]; + int sdc = 0; + + gboolean domain_exc = false; + gboolean has_positive = false; + gboolean has_exception = false; + gboolean found_positive = false; + gboolean found_exception = false; + + char *real_domain; + char *nextdot; + /* extract subdomains */ + subdomains[sdc++] = host; + while (g_strcmp0(host, base_domain)) { + nextdot = strchr(host, '.'); + host = nextdot + 1; + subdomains[sdc++] = host; + if (sdc == SUBDOMAIN_MAX-1) + break; + } + subdomains[sdc++] = NULL; + + /* TODO Maybe replace this with a hashtable + * in most cases the loop runs at most 9 times, 3 times each + * */ + for (int k=0; domains[k]; k++) { + for (int j=0; subdomains[j]; j++) { + real_domain = domains[k]; + if (*real_domain == '~') { + domain_exc = true; + real_domain++; + has_exception = true; + } + else { + domain_exc = false; + has_positive = true; + } + + if (!g_strcmp0(subdomains[j], real_domain)) { + if (domain_exc) { + found_exception = true; + } + else { + found_positive = true; + } + } + } + } + if ((has_positive && found_positive && !found_exception) || (has_exception && !has_positive && !found_exception)) + return true; + + return false; +}/*}}}*/ + +const char * +domain_get_base_for_host(const char *host) { + if (host == NULL) + return NULL; + g_return_val_if_fail(_tld_table != NULL, NULL); + + const char *cur_domain = host; + const char *prev_domain = host; + const char *pprev_domain = host; + const char *ret = NULL; + char *nextdot = strchr(cur_domain, '.'); + char *entry = NULL; + while (1) { + entry = g_hash_table_lookup(_tld_table, cur_domain); + if (entry != NULL) { + if (*entry == '*') { + ret = pprev_domain; + break; + } + else if (*entry == '!' && nextdot) { + ret = nextdot + 1; + break; + } + else { + ret = prev_domain; + break; + } + } + if (nextdot == NULL) + break; + pprev_domain = prev_domain; + prev_domain = cur_domain; + cur_domain = nextdot + 1; + nextdot = strchr(cur_domain, '.'); + } + if (ret == NULL) + ret = host; + return ret; +} +void +domain_end() { + if (_tld_table) + g_hash_table_unref(_tld_table); +} + +void +domain_init() { + _tld_table = g_hash_table_new((GHashFunc)g_str_hash, (GEqualFunc)g_str_equal); + char *eff_tld; + for (int i=0; (eff_tld = TLDS_EFFECTIVE[i]); i++) { + if (*eff_tld == '*' || *eff_tld == '!') + eff_tld++; + if (*eff_tld == '.') + eff_tld++; + g_hash_table_insert(_tld_table, eff_tld, TLDS_EFFECTIVE[i]); + } +} +#endif diff --git a/src/domain.h b/src/domain.h new file mode 100644 index 00000000..97d30961 --- /dev/null +++ b/src/domain.h @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifdef DWB_DOMAIN_SERVICE + +#ifndef DOMAIN_H +#define DOMAIN_H + +#define SUBDOMAIN_MAX 32 + +void domain_init(void); +void domain_end(void); + +gboolean domain_match(char **, const char *, const char *); +const char * domain_get_base_for_host(const char *host); +#endif +#endif @@ -29,7 +29,11 @@ #include "html.h" #include "plugins.h" #include "local.h" - +#include "js.h" +#ifdef DWB_ADBLOCKER +#include "adblock.h" +#include "domain.h" +#endif /* DECLARATIONS {{{*/ static void dwb_webkit_setting(GList *, WebSettings *); @@ -42,7 +46,6 @@ static void dwb_set_startpage(GList *, WebSettings *); static void dwb_set_message_delay(GList *, WebSettings *); static void dwb_set_history_length(GList *, WebSettings *); static void dwb_set_plugin_blocker(GList *, WebSettings *); -static void dwb_set_adblock(GList *, WebSettings *); static void dwb_set_hide_tabbar(GList *, WebSettings *); static void dwb_set_sync_interval(GList *, WebSettings *); static void dwb_set_private_browsing(GList *, WebSettings *); @@ -99,7 +102,7 @@ dwb_set_dummy(GList *gl, WebSettings *s) { return; }/*}}}*/ -/* dwb_set_adblock {{{*/ +/* dwb_set_plugin_blocker {{{*/ static void dwb_set_plugin_blocker(GList *gl, WebSettings *s) { View *v = gl->data; @@ -113,12 +116,20 @@ dwb_set_plugin_blocker(GList *gl, WebSettings *s) { } }/*}}}*/ +#ifdef DWB_ADBLOCKER /* dwb_set_adblock {{{*/ -static void +void dwb_set_adblock(GList *gl, WebSettings *s) { - View *v = gl->data; - v->status->adblocker = s->arg.b; + if (s->arg.b) { + for (GList *l = dwb.state.views; l; l=l->next) + adblock_connect(l); + } + else { + for (GList *l = dwb.state.views; l; l=l->next) + adblock_disconnect(l); + } }/*}}}*/ +#endif /* dwb_set_private_browsing {{{ */ static void @@ -234,6 +245,7 @@ dwb_set_user_agent(GList *gl, WebSettings *s) { g_hash_table_insert(dwb.settings, g_strdup("user-agent"), s); }/*}}}*/ + /* dwb_webkit_setting(GList *gl WebSettings *s) {{{*/ static void dwb_webkit_setting(GList *gl, WebSettings *s) { @@ -480,7 +492,8 @@ dwb_update_status_text(GList *gl, GtkAdjustment *a) { cbuffer[PBAR_LENGTH - length] = '\0'; g_string_append_printf(string, "\u2595%ls%ls\u258f", buffer, cbuffer); } - dwb_set_status_bar_text(v->rstatus, string->str, NULL, NULL, true); + if (string->len > 0) + dwb_set_status_bar_text(v->rstatus, string->str, NULL, NULL, true); g_string_free(string, true); }/*}}}*/ @@ -807,9 +820,18 @@ dwb_open_startpage(GList *gl) { static DwbStatus dwb_apply_settings(WebSettings *s) { DwbStatus ret = STATUS_OK; - for (GList *l = dwb.state.views; l; l=l->next) - if (s->func) - ret = s->func(l, s); + if (s->apply & SETTING_ONINIT) + return ret; + else if (s->apply & SETTING_GLOBAL) { + if (s->func) + s->func(NULL, s); + } + else { + for (GList *l = dwb.state.views; l; l=l->next) { + if (s->func) + s->func(l, s); + } + } dwb_change_mode(NORMAL_MODE, false); return ret; }/*}}}*/ @@ -995,28 +1017,6 @@ dwb_history_forward() { return STATUS_OK; }/*}}}*/ -/* dwb_block_ad (GList *, const char *uri) return: gboolean{{{*/ -gboolean -dwb_block_ad(GList *gl, const char *uri) { - if (!VIEW(gl)->status->adblocker) - return false; - - /* PRINT_DEBUG(uri); */ - for (GList *l = dwb.fc.adblock; l; l=l->next) { - char *data = l->data; - if (data != NULL) { - if (data[0] == '@') { - if (g_regex_match_simple(data + 1, uri, 0, 0) ) - return true; - } - else if (strstr(uri, data)) { - return true; - } - } - } - return false; -}/*}}}*/ - /* dwb_eval_tabbar_visible (const char *) {{{*/ static TabBarVisible dwb_eval_tabbar_visible(const char *arg) { @@ -1474,29 +1474,19 @@ dwb_update_hints(GdkEventKey *e) { char * dwb_execute_script(WebKitWebFrame *frame, const char *com, gboolean ret) { JSValueRef eval_ret; - size_t length; - char *retval; JSContextRef context = webkit_web_frame_get_global_context(frame); g_return_val_if_fail(context != NULL, NULL); - JSStringRef text = JSStringCreateWithUTF8CString(com); JSObjectRef global_object = JSContextGetGlobalObject(context); g_return_val_if_fail(global_object != NULL, NULL); + JSStringRef text = JSStringCreateWithUTF8CString(com); eval_ret = JSEvaluateScript(context, text, global_object, NULL, 0, NULL); JSStringRelease(text); - if (eval_ret) { - if (ret) { - JSStringRef string = JSValueToStringCopy(context, eval_ret, NULL); - length = JSStringGetMaximumUTF8CStringSize(string); - retval = g_new(char, length+1); - JSStringGetUTF8CString(string, retval, length); - JSStringRelease(string); - memset(retval+length, '\0', 1); - return retval; - } + if (eval_ret && ret) { + return js_value_to_char(context, eval_ret); } return NULL; } @@ -2303,13 +2293,17 @@ dwb_clean_up() { dwb_free_list(dwb.fc.mimetypes, (void_func)dwb_navigation_free); dwb_free_list(dwb.fc.quickmarks, (void_func)dwb_quickmark_free); dwb_free_list(dwb.fc.cookies_allow, (void_func)dwb_free); - dwb_free_list(dwb.fc.adblock, (void_func)dwb_free); - util_rmdir(dwb.files.cachedir, true); if (g_file_test(dwb.files.fifo, G_FILE_TEST_EXISTS)) { unlink(dwb.files.fifo); } gtk_widget_destroy(dwb.gui.window); +#ifdef DWB_ADBLOCKER + adblock_end(); +#endif +#ifdef DWB_DOMAIN_SERVICE + domain_end(); +#endif return true; }/*}}}*/ @@ -2842,7 +2836,6 @@ dwb_init_files() { else dwb.misc.default_search = NULL; dwb.fc.cookies_allow = dwb_init_file_content(dwb.fc.cookies_allow, dwb.files.cookies_allow, (Content_Func)dwb_return); - dwb.fc.adblock = dwb_init_file_content(dwb.fc.adblock, dwb.files.adblock, (Content_Func)dwb_return); FREE(path); FREE(profile_path); @@ -2858,6 +2851,7 @@ dwb_handle_signal(int s) { else if (s == SIGSEGV) { fprintf(stderr, "Received SIGSEGV, trying to clean up.\n"); session_save(NULL); + dwb_clean_up(); exit(EXIT_FAILURE); } } @@ -2967,6 +2961,9 @@ dwb_init() { dwb_init_vars(); dwb_init_gui(); dwb_init_scripts(); +#ifdef DWB_ADBLOCKER + adblock_init(); +#endif dwb_soup_init(); @@ -151,13 +151,31 @@ #ifdef DWB_DEBUG #define PRINT_DEBUG(...) do { \ - fprintf(stderr, "\n\033[31;1mDEBUG:\033[0m %s:%d:%s():\t", __FILE__, __LINE__, __func__); \ + fprintf(stderr, "\n\033[31;1mDEBUG:\033[0m %s:%d:%s()\t", __FILE__, __LINE__, __func__); \ fprintf(stderr, __VA_ARGS__);\ fprintf(stderr, "\n"); \ - } while(0) + } while(0); +#define DEBUG_TIMED(limit, code) do { \ + GTimer *__debug_timer = g_timer_new(); \ + for (int i=0; i<limit; i++) { (code); }\ + gulong __debug_micro = 0;\ + gdouble __debug_elapsed = g_timer_elapsed(__debug_timer, &__debug_micro);\ + PRINT_DEBUG("timer: \033[32m%s\033[0m: elapsed: %f, micro: %lu", #code, __debug_elapsed, __debug_micro);\ + g_timer_destroy(__debug_timer); \ +} while(0); +GTimer *__timer; +#define TIMER_START do {__timer = g_timer_new();g_timer_start(__timer);puts("hallo timer");}while(0) +#define TIMER_END do{ gulong __debug_micro = 0; gdouble __debug_elapsed = g_timer_elapsed(__timer, &__debug_micro);\ + PRINT_DEBUG("\033[33mtimer:\033[0m elapsed: %f, micro: %lu", __debug_elapsed, __debug_micro);\ + g_timer_destroy(__timer); \ +} while(0) #else #define PRINT_DEBUG(message, ...) +#define DEBUG_TIMED(limit, code) +#define TIMER_START +#define TIMER_END + #endif #define BPKB 1024 #define BPMB 1048576 @@ -171,6 +189,7 @@ typedef enum _DwbStatus { STATUS_OK, STATUS_ERROR, STATUS_END, + STATUS_IGNORE, } DwbStatus; @@ -357,6 +376,11 @@ enum Signal { SIG_TAB_BUTTON_PRESS, SIG_POPULATE_POPUP, SIG_FRAME_CREATED, +#ifdef DWB_ADBLOCKER + SIG_AD_LOAD_STATUS, + SIG_AD_FRAME_CREATED, + SIG_AD_RESOURCE_REQUEST, +#endif SIG_PLUGINS_LOAD, SIG_PLUGINS_FRAME_LOAD, @@ -499,10 +523,10 @@ struct _State { }; typedef enum _SettingsApply { - SETTING_BUILTIN = 1<<0, - SETTING_GLOBAL = 1<<1, - SETTING_ONINIT = 1<<2, - SETTING_PER_VIEW = 1<<3, + SETTING_BUILTIN = 1<<0, + SETTING_GLOBAL = 1<<1, + SETTING_ONINIT = 1<<2, + SETTING_PER_VIEW = 1<<3, } SettingsApply; struct _WebSettings { Navigation n; @@ -517,7 +541,6 @@ struct _ViewStatus { char *search_string; GList *downloads; char *mimetype; - gboolean adblocker; gulong signals[SIG_LAST]; int progress; SslState ssl; @@ -526,7 +549,6 @@ struct _ViewStatus { char *hover_uri; GSList *allowed_plugins; PluginBlockerStatus pb_status; - GSList *plugin_refs; gboolean protect; }; struct _View { @@ -765,7 +787,6 @@ CompletionType dwb_eval_completion_type(void); void dwb_append_navigation_with_argument(GList **, const char *, const char *); void dwb_clean_load_end(GList *); -gboolean dwb_block_ad(GList *gl, const char *); void dwb_update_uri(GList *); gboolean dwb_get_allowed(const char *, const char *); gboolean dwb_toggle_allowed(const char *, const char *); @@ -788,5 +809,8 @@ void dwb_set_open_mode(Open); DwbStatus dwb_set_clipboard(const char *text, GdkAtom atom); DwbStatus dwb_open_in_editor(void); gboolean dwb_confirm(GList *gl, char *prompt, ...); +#ifdef DWB_ADBLOCKER +void dwb_set_adblock(GList *, WebSettings *); +#endif #endif diff --git a/src/js.c b/src/js.c new file mode 100644 index 00000000..3c361a4a --- /dev/null +++ b/src/js.c @@ -0,0 +1,99 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include <JavaScriptCore/JavaScript.h> +#include <webkit/webkit.h> +#include <glib-2.0/glib.h> +#include "js.h" +#define JS_STRING_MAX 1024 + +/* js_get_object_property {{{*/ +JSObjectRef +js_get_object_property(JSContextRef ctx, JSObjectRef arg, const char *name) { + JSValueRef exc = NULL; + JSObjectRef ret; + JSStringRef buffer = JSStringCreateWithUTF8CString(name); + JSValueRef val = JSObjectGetProperty(ctx, arg, buffer, &exc); + JSStringRelease(buffer); + if (exc != NULL || !JSValueIsObject(ctx, val)) + return NULL; + + ret = JSValueToObject(ctx, val, &exc); + if (exc != NULL) + return NULL; + return ret; + +}/*}}}*/ + +/* js_get_string_property {{{*/ +char * +js_get_string_property(JSContextRef ctx, JSObjectRef arg, const char *name) { + JSValueRef exc = NULL; + JSStringRef buffer = JSStringCreateWithUTF8CString(name); + JSValueRef val = JSObjectGetProperty(ctx, arg, buffer, &exc); + JSStringRelease(buffer); + if (exc != NULL || !JSValueIsString(ctx, val) ) + return NULL; + return js_value_to_char(ctx, val); +}/*}}}*/ + +/* js_get_double_property {{{*/ +double +js_get_double_property(JSContextRef ctx, JSObjectRef arg, const char *name) { + double ret; + JSValueRef exc = NULL; + JSStringRef buffer = JSStringCreateWithUTF8CString(name); + JSValueRef val = JSObjectGetProperty(ctx, arg, buffer, &exc); + JSStringRelease(buffer); + if (exc != NULL || !JSValueIsNumber(ctx, val) ) + return 0; + ret = JSValueToNumber(ctx, val, &exc); + if (exc != NULL) + return 0; + return ret; +}/*}}}*/ + +/* js_string_to_char + * Converts a JSStringRef, return a newly allocated char. + * {{{*/ +char * +js_string_to_char(JSContextRef ctx, JSStringRef jsstring) { + size_t length = MIN(JSStringGetLength(jsstring), JS_STRING_MAX) + 1; + + char *ret = g_new(char, length); + size_t written = JSStringGetUTF8CString(jsstring, ret, length); + /* TODO: handle length error */ + if (written != length) + return NULL; + return ret; +}/*}}}*/ + +/*{{{*/ +char * +js_value_to_char(JSContextRef ctx, JSValueRef value) { + JSValueRef exc = NULL; + if (! JSValueIsString(ctx, value)) + return NULL; + JSStringRef jsstring = JSValueToStringCopy(ctx, value, &exc); + if (exc != NULL) + return NULL; + + char *ret = js_string_to_char(ctx, jsstring); + JSStringRelease(jsstring); + return ret; +}/*}}}*/ diff --git a/src/js.h b/src/js.h new file mode 100644 index 00000000..f206e97e --- /dev/null +++ b/src/js.h @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2010-2011 Stefan Bolte <portix@gmx.net> + * + * 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, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef JS_H +#define JS_H + +char * js_string_to_char(JSContextRef ctx, JSStringRef jsstring); +char * js_value_to_char(JSContextRef ctx, JSValueRef value); +JSObjectRef js_get_object_property(JSContextRef ctx, JSObjectRef arg, const char *name); +JSObjectRef js_get_object_property(JSContextRef ctx, JSObjectRef arg, const char *name); +char * js_get_string_property(JSContextRef ctx, JSObjectRef arg, const char *name); +double js_get_double_property(JSContextRef ctx, JSObjectRef arg, const char *name); + +#endif diff --git a/src/session.c b/src/session.c index e7390a6b..77bdb545 100644 --- a/src/session.c +++ b/src/session.c @@ -90,10 +90,11 @@ session_list() { gboolean session_restore(const char *name) { char *group = session_get_group(name); - if (!group) { + if (group == NULL) { return false; } char **lines = g_strsplit(group, "\n", -1); + g_free(group); GList *currentview, *lastview = NULL; WebKitWebBackForwardList *bf_list = NULL; int last = 1; @@ -83,7 +83,10 @@ dwb_soup_cookie_changed_cb(SoupCookieJar *jar, SoupCookie *old, SoupCookie *new, if (dwb.state.cookies_allowed || dwb_soup_test_cookie_allowed(new)) { soup_cookie_jar_add_cookie(j, soup_cookie_copy(new)); } +#if 0 else if (! g_slist_find_custom(dwb.state.last_cookies, new, (GCompareFunc)dwb_soup_cookie_compare ) && ! dwb_block_ad(dwb.state.fview, soup_cookie_get_domain(new))){ +#endif + else if (! g_slist_find_custom(dwb.state.last_cookies, new, (GCompareFunc)dwb_soup_cookie_compare )) { dwb.state.last_cookies = g_slist_append(dwb.state.last_cookies, soup_cookie_copy(new)); } } @@ -133,6 +136,8 @@ dwb_soup_init_session_features() { SOUP_SESSION_SSL_CA_FILE, cert, NULL); } g_object_set(dwb.misc.soupsession, SOUP_SESSION_SSL_STRICT, GET_BOOL("ssl-strict"), NULL); + //soup_session_add_feature(dwb.misc.soupsession, SOUP_SESSION_FEATURE(soup_content_sniffer_new())); + //soup_session_add_feature_by_type(webkit_get_default_session(), SOUP_TYPE_CONTENT_SNIFFER); } void dwb_soup_init() { diff --git a/src/tlds.in b/src/tlds.in new file mode 100644 index 00000000..264736e4 --- /dev/null +++ b/src/tlds.in @@ -0,0 +1,5181 @@ +// ***** BEGIN LICENSE BLOCK ***** +// Version: GPL 3.0 +// +// 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, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +// +// The Original Code is the Public Suffix List. +// +// The Initial Developer of the Original Code is +// Jo Hermans <jo.hermans@gmail.com>. +// Portions created by the Initial Developer are Copyright (C) 2007 +// the Initial Developer. All Rights Reserved. +// +// Contributor(s): +// Ruben Arakelyan <ruben@rubenarakelyan.com> +// Gervase Markham <gerv@gerv.net> +// Pamela Greene <pamg.bugs@gmail.com> +// David Triendl <david@triendl.name> +// Jothan Frakes <jothan@gmail.com> +// The kind representatives of many TLD registries +// +// ***** END LICENSE BLOCK ***** + +// ac : http://en.wikipedia.org/wiki/.ac +ac +com.ac +edu.ac +gov.ac +net.ac +mil.ac +org.ac + +// ad : http://en.wikipedia.org/wiki/.ad +ad +nom.ad + +// ae : http://en.wikipedia.org/wiki/.ae +// see also: "Domain Name Eligibility Policy" at http://www.aeda.ae/eng/aepolicy.php +ae +co.ae +net.ae +org.ae +sch.ae +ac.ae +gov.ae +mil.ae + +// aero : see http://www.information.aero/index.php?id=66 +aero +accident-investigation.aero +accident-prevention.aero +aerobatic.aero +aeroclub.aero +aerodrome.aero +agents.aero +aircraft.aero +airline.aero +airport.aero +air-surveillance.aero +airtraffic.aero +air-traffic-control.aero +ambulance.aero +amusement.aero +association.aero +author.aero +ballooning.aero +broker.aero +caa.aero +cargo.aero +catering.aero +certification.aero +championship.aero +charter.aero +civilaviation.aero +club.aero +conference.aero +consultant.aero +consulting.aero +control.aero +council.aero +crew.aero +design.aero +dgca.aero +educator.aero +emergency.aero +engine.aero +engineer.aero +entertainment.aero +equipment.aero +exchange.aero +express.aero +federation.aero +flight.aero +freight.aero +fuel.aero +gliding.aero +government.aero +groundhandling.aero +group.aero +hanggliding.aero +homebuilt.aero +insurance.aero +journal.aero +journalist.aero +leasing.aero +logistics.aero +magazine.aero +maintenance.aero +marketplace.aero +media.aero +microlight.aero +modelling.aero +navigation.aero +parachuting.aero +paragliding.aero +passenger-association.aero +pilot.aero +press.aero +production.aero +recreation.aero +repbody.aero +res.aero +research.aero +rotorcraft.aero +safety.aero +scientist.aero +services.aero +show.aero +skydiving.aero +software.aero +student.aero +taxi.aero +trader.aero +trading.aero +trainer.aero +union.aero +workinggroup.aero +works.aero + +// af : http://www.nic.af/help.jsp +af +gov.af +com.af +org.af +net.af +edu.af + +// ag : http://www.nic.ag/prices.htm +ag +com.ag +org.ag +net.ag +co.ag +nom.ag + +// ai : http://nic.com.ai/ +ai +off.ai +com.ai +net.ai +org.ai + +// al : http://www.ert.gov.al/ert_alb/faq_det.html?Id=31 +al +com.al +edu.al +gov.al +mil.al +net.al +org.al + +// am : http://en.wikipedia.org/wiki/.am +am + +// an : http://www.una.an/an_domreg/default.asp +an +com.an +net.an +org.an +edu.an + +// ao : http://en.wikipedia.org/wiki/.ao +// http://www.dns.ao/REGISTR.DOC +ao +ed.ao +gv.ao +og.ao +co.ao +pb.ao +it.ao + +// aq : http://en.wikipedia.org/wiki/.aq +aq + +// ar : http://en.wikipedia.org/wiki/.ar +*.ar +!congresodelalengua3.ar +!educ.ar +!gobiernoelectronico.ar +!mecon.ar +!nacion.ar +!nic.ar +!promocion.ar +!retina.ar +!uba.ar + +// arpa : http://en.wikipedia.org/wiki/.arpa +// Confirmed by registry <iana-questions@icann.org> 2008-06-18 +e164.arpa +in-addr.arpa +ip6.arpa +iris.arpa +uri.arpa +urn.arpa + +// as : http://en.wikipedia.org/wiki/.as +as +gov.as + +// asia: http://en.wikipedia.org/wiki/.asia +asia + +// at : http://en.wikipedia.org/wiki/.at +// Confirmed by registry <it@nic.at> 2008-06-17 +at +ac.at +co.at +gv.at +or.at + +// http://www.info.at/ +biz.at +info.at + +// priv.at : http://www.nic.priv.at/ +// Submitted by registry <lendl@nic.at> 2008-06-09 +priv.at + +// au : http://en.wikipedia.org/wiki/.au +*.au +// au geographical names (vic.au etc... are covered above) +act.edu.au +nsw.edu.au +nt.edu.au +qld.edu.au +sa.edu.au +tas.edu.au +vic.edu.au +wa.edu.au +act.gov.au +// Removed at request of Shae.Donelan@services.nsw.gov.au, 2010-03-04 +// nsw.gov.au +nt.gov.au +qld.gov.au +sa.gov.au +tas.gov.au +vic.gov.au +wa.gov.au +// CGDNs - http://www.aucd.org.au/ +act.au +nsw.au +nt.au +qld.au +sa.au +tas.au +vic.au +wa.au + +// aw : http://en.wikipedia.org/wiki/.aw +aw +com.aw + +// ax : http://en.wikipedia.org/wiki/.ax +ax + +// az : http://en.wikipedia.org/wiki/.az +az +com.az +net.az +int.az +gov.az +org.az +edu.az +info.az +pp.az +mil.az +name.az +pro.az +biz.az + +// ba : http://en.wikipedia.org/wiki/.ba +ba +org.ba +net.ba +edu.ba +gov.ba +mil.ba +unsa.ba +unbi.ba +co.ba +com.ba +rs.ba + +// bb : http://en.wikipedia.org/wiki/.bb +bb +biz.bb +com.bb +edu.bb +gov.bb +info.bb +net.bb +org.bb +store.bb + +// bd : http://en.wikipedia.org/wiki/.bd +*.bd + +// be : http://en.wikipedia.org/wiki/.be +// Confirmed by registry <tech@dns.be> 2008-06-08 +be +ac.be + +// bf : http://en.wikipedia.org/wiki/.bf +bf +gov.bf + +// bg : http://en.wikipedia.org/wiki/.bg +// https://www.register.bg/user/static/rules/en/index.html +bg +a.bg +b.bg +c.bg +d.bg +e.bg +f.bg +g.bg +h.bg +i.bg +j.bg +k.bg +l.bg +m.bg +n.bg +o.bg +p.bg +q.bg +r.bg +s.bg +t.bg +u.bg +v.bg +w.bg +x.bg +y.bg +z.bg +0.bg +1.bg +2.bg +3.bg +4.bg +5.bg +6.bg +7.bg +8.bg +9.bg + +// bh : http://en.wikipedia.org/wiki/.bh +bh +com.bh +edu.bh +net.bh +org.bh +gov.bh + +// bi : http://en.wikipedia.org/wiki/.bi +// http://whois.nic.bi/ +bi +co.bi +com.bi +edu.bi +or.bi +org.bi + +// biz : http://en.wikipedia.org/wiki/.biz +biz + +// bj : http://en.wikipedia.org/wiki/.bj +bj +asso.bj +barreau.bj +gouv.bj + +// bm : http://www.bermudanic.bm/dnr-text.txt +bm +com.bm +edu.bm +gov.bm +net.bm +org.bm + +// bn : http://en.wikipedia.org/wiki/.bn +*.bn + +// bo : http://www.nic.bo/ +bo +com.bo +edu.bo +gov.bo +gob.bo +int.bo +org.bo +net.bo +mil.bo +tv.bo + +// br : http://registro.br/dominio/dpn.html +// Updated by registry <fneves@registro.br> 2011-03-01 +br +adm.br +adv.br +agr.br +am.br +arq.br +art.br +ato.br +b.br +bio.br +blog.br +bmd.br +can.br +cim.br +cng.br +cnt.br +com.br +coop.br +ecn.br +edu.br +emp.br +eng.br +esp.br +etc.br +eti.br +far.br +flog.br +fm.br +fnd.br +fot.br +fst.br +g12.br +ggf.br +gov.br +imb.br +ind.br +inf.br +jor.br +jus.br +lel.br +mat.br +med.br +mil.br +mus.br +net.br +nom.br +not.br +ntr.br +odo.br +org.br +ppg.br +pro.br +psc.br +psi.br +qsl.br +radio.br +rec.br +slg.br +srv.br +taxi.br +teo.br +tmp.br +trd.br +tur.br +tv.br +vet.br +vlog.br +wiki.br +zlg.br + +// bs : http://www.nic.bs/rules.html +bs +com.bs +net.bs +org.bs +edu.bs +gov.bs + +// bt : http://en.wikipedia.org/wiki/.bt +bt +com.bt +edu.bt +gov.bt +net.bt +org.bt + +// bv : No registrations at this time. +// Submitted by registry <jarle@uninett.no> 2006-06-16 + +// bw : http://en.wikipedia.org/wiki/.bw +// http://www.gobin.info/domainname/bw.doc +// list of other 2nd level tlds ? +bw +co.bw +org.bw + +// by : http://en.wikipedia.org/wiki/.by +// http://tld.by/rules_2006_en.html +// list of other 2nd level tlds ? +by +gov.by +mil.by +// Official information does not indicate that com.by is a reserved +// second-level domain, but it's being used as one (see www.google.com.by and +// www.yahoo.com.by, for example), so we list it here for safety's sake. +com.by + +// http://hoster.by/ +of.by + +// bz : http://en.wikipedia.org/wiki/.bz +// http://www.belizenic.bz/ +bz +com.bz +net.bz +org.bz +edu.bz +gov.bz + +// ca : http://en.wikipedia.org/wiki/.ca +ca +// ca geographical names +ab.ca +bc.ca +mb.ca +nb.ca +nf.ca +nl.ca +ns.ca +nt.ca +nu.ca +on.ca +pe.ca +qc.ca +sk.ca +yk.ca +// gc.ca: http://en.wikipedia.org/wiki/.gc.ca +// see also: http://registry.gc.ca/en/SubdomainFAQ +gc.ca + +// cat : http://en.wikipedia.org/wiki/.cat +cat + +// cc : http://en.wikipedia.org/wiki/.cc +cc + +// cd : http://en.wikipedia.org/wiki/.cd +// see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1 +cd +gov.cd + +// cf : http://en.wikipedia.org/wiki/.cf +cf + +// cg : http://en.wikipedia.org/wiki/.cg +cg + +// ch : http://en.wikipedia.org/wiki/.ch +ch + +// ci : http://en.wikipedia.org/wiki/.ci +// http://www.nic.ci/index.php?page=charte +ci +org.ci +or.ci +com.ci +co.ci +edu.ci +ed.ci +ac.ci +net.ci +go.ci +asso.ci +aéroport.ci +int.ci +presse.ci +md.ci +gouv.ci + +// ck : http://en.wikipedia.org/wiki/.ck +*.ck + +// cl : http://en.wikipedia.org/wiki/.cl +cl +gov.cl +gob.cl + +// cm : http://en.wikipedia.org/wiki/.cm +cm +gov.cm + +// cn : http://en.wikipedia.org/wiki/.cn +// Submitted by registry <tanyaling@cnnic.cn> 2008-06-11 +cn +ac.cn +com.cn +edu.cn +gov.cn +net.cn +org.cn +mil.cn +公司.cn +网络.cn +網絡.cn +// cn geographic names +ah.cn +bj.cn +cq.cn +fj.cn +gd.cn +gs.cn +gz.cn +gx.cn +ha.cn +hb.cn +he.cn +hi.cn +hl.cn +hn.cn +jl.cn +js.cn +jx.cn +ln.cn +nm.cn +nx.cn +qh.cn +sc.cn +sd.cn +sh.cn +sn.cn +sx.cn +tj.cn +xj.cn +xz.cn +yn.cn +zj.cn +hk.cn +mo.cn +tw.cn + +// co : http://en.wikipedia.org/wiki/.co +// Submitted by registry <tecnico@uniandes.edu.co> 2008-06-11 +co +arts.co +com.co +edu.co +firm.co +gov.co +info.co +int.co +mil.co +net.co +nom.co +org.co +rec.co +web.co + +// com : http://en.wikipedia.org/wiki/.com +com + +// CentralNic names : http://www.centralnic.com/names/domains +// Confirmed by registry <gavin.brown@centralnic.com> 2008-06-09 +ar.com +br.com +cn.com +de.com +eu.com +gb.com +hu.com +jpn.com +kr.com +no.com +qc.com +ru.com +sa.com +se.com +uk.com +us.com +uy.com +za.com + +// Requested by Yngve Pettersen <yngve@opera.com> 2009-11-26 +operaunite.com + +// Requested by Eduardo Vela <evn@google.com> 2010-09-06 +appspot.com + +// coop : http://en.wikipedia.org/wiki/.coop +coop + +// cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do +cr +ac.cr +co.cr +ed.cr +fi.cr +go.cr +or.cr +sa.cr + +// cu : http://en.wikipedia.org/wiki/.cu +cu +com.cu +edu.cu +org.cu +net.cu +gov.cu +inf.cu + +// cv : http://en.wikipedia.org/wiki/.cv +cv + +// cx : http://en.wikipedia.org/wiki/.cx +// list of other 2nd level tlds ? +cx +gov.cx + +// cy : http://en.wikipedia.org/wiki/.cy +*.cy + +// cz : http://en.wikipedia.org/wiki/.cz +cz + +// de : http://en.wikipedia.org/wiki/.de +// Confirmed by registry <ops@denic.de> (with technical +// reservations) 2008-07-01 +de + +// dj : http://en.wikipedia.org/wiki/.dj +dj + +// dk : http://en.wikipedia.org/wiki/.dk +// Confirmed by registry <robert@dk-hostmaster.dk> 2008-06-17 +dk + +// dm : http://en.wikipedia.org/wiki/.dm +dm +com.dm +net.dm +org.dm +edu.dm +gov.dm + +// do : http://en.wikipedia.org/wiki/.do +do +art.do +com.do +edu.do +gob.do +gov.do +mil.do +net.do +org.do +sld.do +web.do + +// dz : http://en.wikipedia.org/wiki/.dz +dz +com.dz +org.dz +net.dz +gov.dz +edu.dz +asso.dz +pol.dz +art.dz + +// ec : http://www.nic.ec/reg/paso1.asp +// Submitted by registry <vabboud@nic.ec> 2008-07-04 +ec +com.ec +info.ec +net.ec +fin.ec +k12.ec +med.ec +pro.ec +org.ec +edu.ec +gov.ec +gob.ec +mil.ec + +// edu : http://en.wikipedia.org/wiki/.edu +edu + +// ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B +ee +edu.ee +gov.ee +riik.ee +lib.ee +med.ee +com.ee +pri.ee +aip.ee +org.ee +fie.ee + +// eg : http://en.wikipedia.org/wiki/.eg +eg +com.eg +edu.eg +eun.eg +gov.eg +mil.eg +name.eg +net.eg +org.eg +sci.eg + +// er : http://en.wikipedia.org/wiki/.er +*.er + +// es : https://www.nic.es/site_ingles/ingles/dominios/index.html +es +com.es +nom.es +org.es +gob.es +edu.es + +// et : http://en.wikipedia.org/wiki/.et +*.et + +// eu : http://en.wikipedia.org/wiki/.eu +eu + +// fi : http://en.wikipedia.org/wiki/.fi +fi +// aland.fi : http://en.wikipedia.org/wiki/.ax +// This domain is being phased out in favor of .ax. As there are still many +// domains under aland.fi, we still keep it on the list until aland.fi is +// completely removed. +// TODO: Check for updates (expected to be phased out around Q1/2009) +aland.fi +// iki.fi : Submitted by Hannu Aronsson <haa@iki.fi> 2009-11-05 +iki.fi + +// fj : http://en.wikipedia.org/wiki/.fj +*.fj + +// fk : http://en.wikipedia.org/wiki/.fk +*.fk + +// fm : http://en.wikipedia.org/wiki/.fm +fm + +// fo : http://en.wikipedia.org/wiki/.fo +fo + +// fr : http://www.afnic.fr/ +// domaines descriptifs : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-descriptifs +fr +com.fr +asso.fr +nom.fr +prd.fr +presse.fr +tm.fr +// domaines sectoriels : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-sectoriels +aeroport.fr +assedic.fr +avocat.fr +avoues.fr +cci.fr +chambagri.fr +chirurgiens-dentistes.fr +experts-comptables.fr +geometre-expert.fr +gouv.fr +greta.fr +huissier-justice.fr +medecin.fr +notaires.fr +pharmacien.fr +port.fr +veterinaire.fr + +// ga : http://en.wikipedia.org/wiki/.ga +ga + +// gb : This registry is effectively dormant +// Submitted by registry <Damien.Shaw@ja.net> 2008-06-12 + +// gd : http://en.wikipedia.org/wiki/.gd +gd + +// ge : http://www.nic.net.ge/policy_en.pdf +ge +com.ge +edu.ge +gov.ge +org.ge +mil.ge +net.ge +pvt.ge + +// gf : http://en.wikipedia.org/wiki/.gf +gf + +// gg : http://www.channelisles.net/applic/avextn.shtml +gg +co.gg +org.gg +net.gg +sch.gg +gov.gg + +// gh : http://en.wikipedia.org/wiki/.gh +// see also: http://www.nic.gh/reg_now.php +// Although domains directly at second level are not possible at the moment, +// they have been possible for some time and may come back. +gh +com.gh +edu.gh +gov.gh +org.gh +mil.gh + +// gi : http://www.nic.gi/rules.html +gi +com.gi +ltd.gi +gov.gi +mod.gi +edu.gi +org.gi + +// gl : http://en.wikipedia.org/wiki/.gl +// http://nic.gl +gl + +// gm : http://www.nic.gm/htmlpages%5Cgm-policy.htm +gm + +// gn : http://psg.com/dns/gn/gn.txt +// Submitted by registry <randy@psg.com> 2008-06-17 +ac.gn +com.gn +edu.gn +gov.gn +org.gn +net.gn + +// gov : http://en.wikipedia.org/wiki/.gov +gov + +// gp : http://www.nic.gp/index.php?lang=en +gp +com.gp +net.gp +mobi.gp +edu.gp +org.gp +asso.gp + +// gq : http://en.wikipedia.org/wiki/.gq +gq + +// gr : https://grweb.ics.forth.gr/english/1617-B-2005.html +// Submitted by registry <segred@ics.forth.gr> 2008-06-09 +gr +com.gr +edu.gr +net.gr +org.gr +gov.gr + +// gs : http://en.wikipedia.org/wiki/.gs +gs + +// gt : http://www.gt/politicas.html +*.gt + +// gu : http://gadao.gov.gu/registration.txt +*.gu + +// gw : http://en.wikipedia.org/wiki/.gw +gw + +// gy : http://en.wikipedia.org/wiki/.gy +// http://registry.gy/ +gy +co.gy +com.gy +net.gy + +// hk : https://www.hkdnr.hk +// Submitted by registry <hk.tech@hkirc.hk> 2008-06-11 +hk +com.hk +edu.hk +gov.hk +idv.hk +net.hk +org.hk +公司.hk +教育.hk +敎育.hk +政府.hk +個人.hk +个人.hk +箇人.hk +網络.hk +网络.hk +组織.hk +網絡.hk +网絡.hk +组织.hk +組織.hk +組织.hk + +// hm : http://en.wikipedia.org/wiki/.hm +hm + +// hn : http://www.nic.hn/politicas/ps02,,05.html +hn +com.hn +edu.hn +org.hn +net.hn +mil.hn +gob.hn + +// hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf +hr +iz.hr +from.hr +name.hr +com.hr + +// ht : http://www.nic.ht/info/charte.cfm +ht +com.ht +shop.ht +firm.ht +info.ht +adult.ht +net.ht +pro.ht +org.ht +med.ht +art.ht +coop.ht +pol.ht +asso.ht +edu.ht +rel.ht +gouv.ht +perso.ht + +// hu : http://www.domain.hu/domain/English/sld.html +// Confirmed by registry <pasztor@iszt.hu> 2008-06-12 +hu +co.hu +info.hu +org.hu +priv.hu +sport.hu +tm.hu +2000.hu +agrar.hu +bolt.hu +casino.hu +city.hu +erotica.hu +erotika.hu +film.hu +forum.hu +games.hu +hotel.hu +ingatlan.hu +jogasz.hu +konyvelo.hu +lakas.hu +media.hu +news.hu +reklam.hu +sex.hu +shop.hu +suli.hu +szex.hu +tozsde.hu +utazas.hu +video.hu + +// id : http://en.wikipedia.org/wiki/.id +// see also: https://register.pandi.or.id/ +id +ac.id +co.id +go.id +mil.id +net.id +or.id +sch.id +web.id + +// ie : http://en.wikipedia.org/wiki/.ie +ie +gov.ie + +// il : http://en.wikipedia.org/wiki/.il +*.il + +// im : https://www.nic.im/pdfs/imfaqs.pdf +im +co.im +ltd.co.im +plc.co.im +net.im +gov.im +org.im +nic.im +ac.im + +// in : http://en.wikipedia.org/wiki/.in +// see also: http://www.inregistry.in/policies/ +// Please note, that nic.in is not an offical eTLD, but used by most +// government institutions. +in +co.in +firm.in +net.in +org.in +gen.in +ind.in +nic.in +ac.in +edu.in +res.in +gov.in +mil.in + +// info : http://en.wikipedia.org/wiki/.info +info + +// int : http://en.wikipedia.org/wiki/.int +// Confirmed by registry <iana-questions@icann.org> 2008-06-18 +int +eu.int + +// io : http://www.nic.io/rules.html +// list of other 2nd level tlds ? +io +com.io + +// iq : http://www.cmc.iq/english/iq/iqregister1.htm +iq +gov.iq +edu.iq +mil.iq +com.iq +org.iq +net.iq + +// ir : http://www.nic.ir/Terms_and_Conditions_ir,_Appendix_1_Domain_Rules +// Also see http://www.nic.ir/Internationalized_Domain_Names +// Two <iran>.ir entries added at request of <tech-team@nic.ir>, 2010-04-16 +ir +ac.ir +co.ir +gov.ir +id.ir +net.ir +org.ir +sch.ir +// xn--mgba3a4f16a.ir (<iran>.ir, Persian YEH) +ایران.ir +// xn--mgba3a4fra.ir (<iran>.ir, Arabic YEH) +ايران.ir + +// is : http://www.isnic.is/domain/rules.php +// Confirmed by registry <marius@isgate.is> 2008-12-06 +is +net.is +com.is +edu.is +gov.is +org.is +int.is + +// it : http://en.wikipedia.org/wiki/.it +it +gov.it +edu.it +// list of reserved geo-names : +// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazione-versione-6.0.pdf +// (There is also a list of reserved geo-names corresponding to Italian +// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is +// not included here.) +agrigento.it +ag.it +alessandria.it +al.it +ancona.it +an.it +aosta.it +aoste.it +ao.it +arezzo.it +ar.it +ascoli-piceno.it +ascolipiceno.it +ap.it +asti.it +at.it +avellino.it +av.it +bari.it +ba.it +andria-barletta-trani.it +andriabarlettatrani.it +trani-barletta-andria.it +tranibarlettaandria.it +barletta-trani-andria.it +barlettatraniandria.it +andria-trani-barletta.it +andriatranibarletta.it +trani-andria-barletta.it +traniandriabarletta.it +bt.it +belluno.it +bl.it +benevento.it +bn.it +bergamo.it +bg.it +biella.it +bi.it +bologna.it +bo.it +bolzano.it +bozen.it +balsan.it +alto-adige.it +altoadige.it +suedtirol.it +bz.it +brescia.it +bs.it +brindisi.it +br.it +cagliari.it +ca.it +caltanissetta.it +cl.it +campobasso.it +cb.it +carboniaiglesias.it +carbonia-iglesias.it +iglesias-carbonia.it +iglesiascarbonia.it +ci.it +caserta.it +ce.it +catania.it +ct.it +catanzaro.it +cz.it +chieti.it +ch.it +como.it +co.it +cosenza.it +cs.it +cremona.it +cr.it +crotone.it +kr.it +cuneo.it +cn.it +dell-ogliastra.it +dellogliastra.it +ogliastra.it +og.it +enna.it +en.it +ferrara.it +fe.it +fermo.it +fm.it +firenze.it +florence.it +fi.it +foggia.it +fg.it +forli-cesena.it +forlicesena.it +cesena-forli.it +cesenaforli.it +fc.it +frosinone.it +fr.it +genova.it +genoa.it +ge.it +gorizia.it +go.it +grosseto.it +gr.it +imperia.it +im.it +isernia.it +is.it +laquila.it +aquila.it +aq.it +la-spezia.it +laspezia.it +sp.it +latina.it +lt.it +lecce.it +le.it +lecco.it +lc.it +livorno.it +li.it +lodi.it +lo.it +lucca.it +lu.it +macerata.it +mc.it +mantova.it +mn.it +massa-carrara.it +massacarrara.it +carrara-massa.it +carraramassa.it +ms.it +matera.it +mt.it +medio-campidano.it +mediocampidano.it +campidano-medio.it +campidanomedio.it +vs.it +messina.it +me.it +milano.it +milan.it +mi.it +modena.it +mo.it +monza.it +monza-brianza.it +monzabrianza.it +monzaebrianza.it +monzaedellabrianza.it +monza-e-della-brianza.it +mb.it +napoli.it +naples.it +na.it +novara.it +no.it +nuoro.it +nu.it +oristano.it +or.it +padova.it +padua.it +pd.it +palermo.it +pa.it +parma.it +pr.it +pavia.it +pv.it +perugia.it +pg.it +pescara.it +pe.it +pesaro-urbino.it +pesarourbino.it +urbino-pesaro.it +urbinopesaro.it +pu.it +piacenza.it +pc.it +pisa.it +pi.it +pistoia.it +pt.it +pordenone.it +pn.it +potenza.it +pz.it +prato.it +po.it +ragusa.it +rg.it +ravenna.it +ra.it +reggio-calabria.it +reggiocalabria.it +rc.it +reggio-emilia.it +reggioemilia.it +re.it +rieti.it +ri.it +rimini.it +rn.it +roma.it +rome.it +rm.it +rovigo.it +ro.it +salerno.it +sa.it +sassari.it +ss.it +savona.it +sv.it +siena.it +si.it +siracusa.it +sr.it +sondrio.it +so.it +taranto.it +ta.it +tempio-olbia.it +tempioolbia.it +olbia-tempio.it +olbiatempio.it +ot.it +teramo.it +te.it +terni.it +tr.it +torino.it +turin.it +to.it +trapani.it +tp.it +trento.it +trentino.it +tn.it +treviso.it +tv.it +trieste.it +ts.it +udine.it +ud.it +varese.it +va.it +venezia.it +venice.it +ve.it +verbania.it +vb.it +vercelli.it +vc.it +verona.it +vr.it +vibo-valentia.it +vibovalentia.it +vv.it +vicenza.it +vi.it +viterbo.it +vt.it + +// je : http://www.channelisles.net/applic/avextn.shtml +je +co.je +org.je +net.je +sch.je +gov.je + +// jm : http://www.com.jm/register.html +*.jm + +// jo : http://www.dns.jo/Registration_policy.aspx +jo +com.jo +org.jo +net.jo +edu.jo +sch.jo +gov.jo +mil.jo +name.jo + +// jobs : http://en.wikipedia.org/wiki/.jobs +jobs + +// jp : http://en.wikipedia.org/wiki/.jp +// http://jprs.co.jp/en/jpdomain.html +// Submitted by registry <yone@jprs.co.jp> 2008-06-11 +// Updated by registry <yone@jprs.co.jp> 2008-12-04 +jp +// jp organizational type names +ac.jp +ad.jp +co.jp +ed.jp +go.jp +gr.jp +lg.jp +ne.jp +or.jp +// jp geographic type names +// http://jprs.jp/doc/rule/saisoku-1.html +*.aichi.jp +*.akita.jp +*.aomori.jp +*.chiba.jp +*.ehime.jp +*.fukui.jp +*.fukuoka.jp +*.fukushima.jp +*.gifu.jp +*.gunma.jp +*.hiroshima.jp +*.hokkaido.jp +*.hyogo.jp +*.ibaraki.jp +*.ishikawa.jp +*.iwate.jp +*.kagawa.jp +*.kagoshima.jp +*.kanagawa.jp +*.kawasaki.jp +*.kitakyushu.jp +*.kobe.jp +*.kochi.jp +*.kumamoto.jp +*.kyoto.jp +*.mie.jp +*.miyagi.jp +*.miyazaki.jp +*.nagano.jp +*.nagasaki.jp +*.nagoya.jp +*.nara.jp +*.niigata.jp +*.oita.jp +*.okayama.jp +*.okinawa.jp +*.osaka.jp +*.saga.jp +*.saitama.jp +*.sapporo.jp +*.sendai.jp +*.shiga.jp +*.shimane.jp +*.shizuoka.jp +*.tochigi.jp +*.tokushima.jp +*.tokyo.jp +*.tottori.jp +*.toyama.jp +*.wakayama.jp +*.yamagata.jp +*.yamaguchi.jp +*.yamanashi.jp +*.yokohama.jp +!metro.tokyo.jp +!pref.aichi.jp +!pref.akita.jp +!pref.aomori.jp +!pref.chiba.jp +!pref.ehime.jp +!pref.fukui.jp +!pref.fukuoka.jp +!pref.fukushima.jp +!pref.gifu.jp +!pref.gunma.jp +!pref.hiroshima.jp +!pref.hokkaido.jp +!pref.hyogo.jp +!pref.ibaraki.jp +!pref.ishikawa.jp +!pref.iwate.jp +!pref.kagawa.jp +!pref.kagoshima.jp +!pref.kanagawa.jp +!pref.kochi.jp +!pref.kumamoto.jp +!pref.kyoto.jp +!pref.mie.jp +!pref.miyagi.jp +!pref.miyazaki.jp +!pref.nagano.jp +!pref.nagasaki.jp +!pref.nara.jp +!pref.niigata.jp +!pref.oita.jp +!pref.okayama.jp +!pref.okinawa.jp +!pref.osaka.jp +!pref.saga.jp +!pref.saitama.jp +!pref.shiga.jp +!pref.shimane.jp +!pref.shizuoka.jp +!pref.tochigi.jp +!pref.tokushima.jp +!pref.tottori.jp +!pref.toyama.jp +!pref.wakayama.jp +!pref.yamagata.jp +!pref.yamaguchi.jp +!pref.yamanashi.jp +!city.chiba.jp +!city.fukuoka.jp +!city.hiroshima.jp +!city.kawasaki.jp +!city.kitakyushu.jp +!city.kobe.jp +!city.kyoto.jp +!city.nagoya.jp +!city.niigata.jp +!city.okayama.jp +!city.osaka.jp +!city.saitama.jp +!city.sapporo.jp +!city.sendai.jp +!city.shizuoka.jp +!city.yokohama.jp + +// ke : http://www.kenic.or.ke/index.php?option=com_content&task=view&id=117&Itemid=145 +*.ke + +// kg : http://www.domain.kg/dmn_n.html +kg +org.kg +net.kg +com.kg +edu.kg +gov.kg +mil.kg + +// kh : http://www.mptc.gov.kh/dns_registration.htm +*.kh + +// ki : http://www.ki/dns/index.html +ki +edu.ki +biz.ki +net.ki +org.ki +gov.ki +info.ki +com.ki + +// km : http://en.wikipedia.org/wiki/.km +// http://www.domaine.km/documents/charte.doc +km +org.km +nom.km +gov.km +prd.km +tm.km +edu.km +mil.km +ass.km +com.km +// These are only mentioned as proposed suggestions at domaine.km, but +// http://en.wikipedia.org/wiki/.km says they're available for registration: +coop.km +asso.km +presse.km +medecin.km +notaires.km +pharmaciens.km +veterinaire.km +gouv.km + +// kn : http://en.wikipedia.org/wiki/.kn +// http://www.dot.kn/domainRules.html +kn +net.kn +org.kn +edu.kn +gov.kn + +// kp : http://www.kcce.kp/en_index.php +com.kp +edu.kp +gov.kp +org.kp +rep.kp +tra.kp + +// kr : http://en.wikipedia.org/wiki/.kr +// see also: http://domain.nida.or.kr/eng/registration.jsp +kr +ac.kr +co.kr +es.kr +go.kr +hs.kr +kg.kr +mil.kr +ms.kr +ne.kr +or.kr +pe.kr +re.kr +sc.kr +// kr geographical names +busan.kr +chungbuk.kr +chungnam.kr +daegu.kr +daejeon.kr +gangwon.kr +gwangju.kr +gyeongbuk.kr +gyeonggi.kr +gyeongnam.kr +incheon.kr +jeju.kr +jeonbuk.kr +jeonnam.kr +seoul.kr +ulsan.kr + +// kw : http://en.wikipedia.org/wiki/.kw +*.kw + +// ky : http://www.icta.ky/da_ky_reg_dom.php +// Confirmed by registry <kysupport@perimeterusa.com> 2008-06-17 +ky +edu.ky +gov.ky +com.ky +org.ky +net.ky + +// kz : http://en.wikipedia.org/wiki/.kz +// see also: http://www.nic.kz/rules/index.jsp +kz +org.kz +edu.kz +net.kz +gov.kz +mil.kz +com.kz + +// la : http://en.wikipedia.org/wiki/.la +// Submitted by registry <gavin.brown@nic.la> 2008-06-10 +la +int.la +net.la +info.la +edu.la +gov.la +per.la +com.la +org.la +// see http://www.c.la/ +c.la + +// lb : http://en.wikipedia.org/wiki/.lb +// Submitted by registry <randy@psg.com> 2008-06-17 +com.lb +edu.lb +gov.lb +net.lb +org.lb + +// lc : http://en.wikipedia.org/wiki/.lc +// see also: http://www.nic.lc/rules.htm +lc +com.lc +net.lc +co.lc +org.lc +edu.lc +gov.lc + +// li : http://en.wikipedia.org/wiki/.li +li + +// lk : http://www.nic.lk/seclevpr.html +lk +gov.lk +sch.lk +net.lk +int.lk +com.lk +org.lk +edu.lk +ngo.lk +soc.lk +web.lk +ltd.lk +assn.lk +grp.lk +hotel.lk + +// local : http://en.wikipedia.org/wiki/.local +local + +// lr : http://psg.com/dns/lr/lr.txt +// Submitted by registry <randy@psg.com> 2008-06-17 +com.lr +edu.lr +gov.lr +org.lr +net.lr + +// ls : http://en.wikipedia.org/wiki/.ls +ls +co.ls +org.ls + +// lt : http://en.wikipedia.org/wiki/.lt +lt +// gov.lt : http://www.gov.lt/index_en.php +gov.lt + +// lu : http://www.dns.lu/en/ +lu + +// lv : http://www.nic.lv/DNS/En/generic.php +lv +com.lv +edu.lv +gov.lv +org.lv +mil.lv +id.lv +net.lv +asn.lv +conf.lv + +// ly : http://www.nic.ly/regulations.php +ly +com.ly +net.ly +gov.ly +plc.ly +edu.ly +sch.ly +med.ly +org.ly +id.ly + +// ma : http://en.wikipedia.org/wiki/.ma +// http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf +ma +co.ma +net.ma +gov.ma +org.ma +ac.ma +press.ma + +// mc : http://www.nic.mc/ +mc +tm.mc +asso.mc + +// md : http://en.wikipedia.org/wiki/.md +md + +// me : http://en.wikipedia.org/wiki/.me +me +co.me +net.me +org.me +edu.me +ac.me +gov.me +its.me +priv.me + +// mg : http://www.nic.mg/tarif.htm +mg +org.mg +nom.mg +gov.mg +prd.mg +tm.mg +edu.mg +mil.mg +com.mg + +// mh : http://en.wikipedia.org/wiki/.mh +mh + +// mil : http://en.wikipedia.org/wiki/.mil +mil + +// mk : http://en.wikipedia.org/wiki/.mk +// see also: http://dns.marnet.net.mk/postapka.php +mk +com.mk +org.mk +net.mk +edu.mk +gov.mk +inf.mk +name.mk + +// ml : http://www.gobin.info/domainname/ml-template.doc +// see also: http://en.wikipedia.org/wiki/.ml +ml +com.ml +edu.ml +gouv.ml +gov.ml +net.ml +org.ml +presse.ml + +// mm : http://en.wikipedia.org/wiki/.mm +*.mm + +// mn : http://en.wikipedia.org/wiki/.mn +mn +gov.mn +edu.mn +org.mn + +// mo : http://www.monic.net.mo/ +mo +com.mo +net.mo +org.mo +edu.mo +gov.mo + +// mobi : http://en.wikipedia.org/wiki/.mobi +mobi + +// mp : http://www.dot.mp/ +// Confirmed by registry <dcamacho@saipan.com> 2008-06-17 +mp + +// mq : http://en.wikipedia.org/wiki/.mq +mq + +// mr : http://en.wikipedia.org/wiki/.mr +mr +gov.mr + +// ms : http://en.wikipedia.org/wiki/.ms +ms + +// mt : https://www.nic.org.mt/dotmt/ +*.mt + +// mu : http://en.wikipedia.org/wiki/.mu +mu +com.mu +net.mu +org.mu +gov.mu +ac.mu +co.mu +or.mu + +// museum : http://about.museum/naming/ +// http://index.museum/ +museum +academy.museum +agriculture.museum +air.museum +airguard.museum +alabama.museum +alaska.museum +amber.museum +ambulance.museum +american.museum +americana.museum +americanantiques.museum +americanart.museum +amsterdam.museum +and.museum +annefrank.museum +anthro.museum +anthropology.museum +antiques.museum +aquarium.museum +arboretum.museum +archaeological.museum +archaeology.museum +architecture.museum +art.museum +artanddesign.museum +artcenter.museum +artdeco.museum +arteducation.museum +artgallery.museum +arts.museum +artsandcrafts.museum +asmatart.museum +assassination.museum +assisi.museum +association.museum +astronomy.museum +atlanta.museum +austin.museum +australia.museum +automotive.museum +aviation.museum +axis.museum +badajoz.museum +baghdad.museum +bahn.museum +bale.museum +baltimore.museum +barcelona.museum +baseball.museum +basel.museum +baths.museum +bauern.museum +beauxarts.museum +beeldengeluid.museum +bellevue.museum +bergbau.museum +berkeley.museum +berlin.museum +bern.museum +bible.museum +bilbao.museum +bill.museum +birdart.museum +birthplace.museum +bonn.museum +boston.museum +botanical.museum +botanicalgarden.museum +botanicgarden.museum +botany.museum +brandywinevalley.museum +brasil.museum +bristol.museum +british.museum +britishcolumbia.museum +broadcast.museum +brunel.museum +brussel.museum +brussels.museum +bruxelles.museum +building.museum +burghof.museum +bus.museum +bushey.museum +cadaques.museum +california.museum +cambridge.museum +can.museum +canada.museum +capebreton.museum +carrier.museum +cartoonart.museum +casadelamoneda.museum +castle.museum +castres.museum +celtic.museum +center.museum +chattanooga.museum +cheltenham.museum +chesapeakebay.museum +chicago.museum +children.museum +childrens.museum +childrensgarden.museum +chiropractic.museum +chocolate.museum +christiansburg.museum +cincinnati.museum +cinema.museum +circus.museum +civilisation.museum +civilization.museum +civilwar.museum +clinton.museum +clock.museum +coal.museum +coastaldefence.museum +cody.museum +coldwar.museum +collection.museum +colonialwilliamsburg.museum +coloradoplateau.museum +columbia.museum +columbus.museum +communication.museum +communications.museum +community.museum +computer.museum +computerhistory.museum +comunicações.museum +contemporary.museum +contemporaryart.museum +convent.museum +copenhagen.museum +corporation.museum +correios-e-telecomunicações.museum +corvette.museum +costume.museum +countryestate.museum +county.museum +crafts.museum +cranbrook.museum +creation.museum +cultural.museum +culturalcenter.museum +culture.museum +cyber.museum +cymru.museum +dali.museum +dallas.museum +database.museum +ddr.museum +decorativearts.museum +delaware.museum +delmenhorst.museum +denmark.museum +depot.museum +design.museum +detroit.museum +dinosaur.museum +discovery.museum +dolls.museum +donostia.museum +durham.museum +eastafrica.museum +eastcoast.museum +education.museum +educational.museum +egyptian.museum +eisenbahn.museum +elburg.museum +elvendrell.museum +embroidery.museum +encyclopedic.museum +england.museum +entomology.museum +environment.museum +environmentalconservation.museum +epilepsy.museum +essex.museum +estate.museum +ethnology.museum +exeter.museum +exhibition.museum +family.museum +farm.museum +farmequipment.museum +farmers.museum +farmstead.museum +field.museum +figueres.museum +filatelia.museum +film.museum +fineart.museum +finearts.museum +finland.museum +flanders.museum +florida.museum +force.museum +fortmissoula.museum +fortworth.museum +foundation.museum +francaise.museum +frankfurt.museum +franziskaner.museum +freemasonry.museum +freiburg.museum +fribourg.museum +frog.museum +fundacio.museum +furniture.museum +gallery.museum +garden.museum +gateway.museum +geelvinck.museum +gemological.museum +geology.museum +georgia.museum +giessen.museum +glas.museum +glass.museum +gorge.museum +grandrapids.museum +graz.museum +guernsey.museum +halloffame.museum +hamburg.museum +handson.museum +harvestcelebration.museum +hawaii.museum +health.museum +heimatunduhren.museum +hellas.museum +helsinki.museum +hembygdsforbund.museum +heritage.museum +histoire.museum +historical.museum +historicalsociety.museum +historichouses.museum +historisch.museum +historisches.museum +history.museum +historyofscience.museum +horology.museum +house.museum +humanities.museum +illustration.museum +imageandsound.museum +indian.museum +indiana.museum +indianapolis.museum +indianmarket.museum +intelligence.museum +interactive.museum +iraq.museum +iron.museum +isleofman.museum +jamison.museum +jefferson.museum +jerusalem.museum +jewelry.museum +jewish.museum +jewishart.museum +jfk.museum +journalism.museum +judaica.museum +judygarland.museum +juedisches.museum +juif.museum +karate.museum +karikatur.museum +kids.museum +koebenhavn.museum +koeln.museum +kunst.museum +kunstsammlung.museum +kunstunddesign.museum +labor.museum +labour.museum +lajolla.museum +lancashire.museum +landes.museum +lans.museum +läns.museum +larsson.museum +lewismiller.museum +lincoln.museum +linz.museum +living.museum +livinghistory.museum +localhistory.museum +london.museum +losangeles.museum +louvre.museum +loyalist.museum +lucerne.museum +luxembourg.museum +luzern.museum +mad.museum +madrid.museum +mallorca.museum +manchester.museum +mansion.museum +mansions.museum +manx.museum +marburg.museum +maritime.museum +maritimo.museum +maryland.museum +marylhurst.museum +media.museum +medical.museum +medizinhistorisches.museum +meeres.museum +memorial.museum +mesaverde.museum +michigan.museum +midatlantic.museum +military.museum +mill.museum +miners.museum +mining.museum +minnesota.museum +missile.museum +missoula.museum +modern.museum +moma.museum +money.museum +monmouth.museum +monticello.museum +montreal.museum +moscow.museum +motorcycle.museum +muenchen.museum +muenster.museum +mulhouse.museum +muncie.museum +museet.museum +museumcenter.museum +museumvereniging.museum +music.museum +national.museum +nationalfirearms.museum +nationalheritage.museum +nativeamerican.museum +naturalhistory.museum +naturalhistorymuseum.museum +naturalsciences.museum +nature.museum +naturhistorisches.museum +natuurwetenschappen.museum +naumburg.museum +naval.museum +nebraska.museum +neues.museum +newhampshire.museum +newjersey.museum +newmexico.museum +newport.museum +newspaper.museum +newyork.museum +niepce.museum +norfolk.museum +north.museum +nrw.museum +nuernberg.museum +nuremberg.museum +nyc.museum +nyny.museum +oceanographic.museum +oceanographique.museum +omaha.museum +online.museum +ontario.museum +openair.museum +oregon.museum +oregontrail.museum +otago.museum +oxford.museum +pacific.museum +paderborn.museum +palace.museum +paleo.museum +palmsprings.museum +panama.museum +paris.museum +pasadena.museum +pharmacy.museum +philadelphia.museum +philadelphiaarea.museum +philately.museum +phoenix.museum +photography.museum +pilots.museum +pittsburgh.museum +planetarium.museum +plantation.museum +plants.museum +plaza.museum +portal.museum +portland.museum +portlligat.museum +posts-and-telecommunications.museum +preservation.museum +presidio.museum +press.museum +project.museum +public.museum +pubol.museum +quebec.museum +railroad.museum +railway.museum +research.museum +resistance.museum +riodejaneiro.museum +rochester.museum +rockart.museum +roma.museum +russia.museum +saintlouis.museum +salem.museum +salvadordali.museum +salzburg.museum +sandiego.museum +sanfrancisco.museum +santabarbara.museum +santacruz.museum +santafe.museum +saskatchewan.museum +satx.museum +savannahga.museum +schlesisches.museum +schoenbrunn.museum +schokoladen.museum +school.museum +schweiz.museum +science.museum +scienceandhistory.museum +scienceandindustry.museum +sciencecenter.museum +sciencecenters.museum +science-fiction.museum +sciencehistory.museum +sciences.museum +sciencesnaturelles.museum +scotland.museum +seaport.museum +settlement.museum +settlers.museum +shell.museum +sherbrooke.museum +sibenik.museum +silk.museum +ski.museum +skole.museum +society.museum +sologne.museum +soundandvision.museum +southcarolina.museum +southwest.museum +space.museum +spy.museum +square.museum +stadt.museum +stalbans.museum +starnberg.museum +state.museum +stateofdelaware.museum +station.museum +steam.museum +steiermark.museum +stjohn.museum +stockholm.museum +stpetersburg.museum +stuttgart.museum +suisse.museum +surgeonshall.museum +surrey.museum +svizzera.museum +sweden.museum +sydney.museum +tank.museum +tcm.museum +technology.museum +telekommunikation.museum +television.museum +texas.museum +textile.museum +theater.museum +time.museum +timekeeping.museum +topology.museum +torino.museum +touch.museum +town.museum +transport.museum +tree.museum +trolley.museum +trust.museum +trustee.museum +uhren.museum +ulm.museum +undersea.museum +university.museum +usa.museum +usantiques.museum +usarts.museum +uscountryestate.museum +usculture.museum +usdecorativearts.museum +usgarden.museum +ushistory.museum +ushuaia.museum +uslivinghistory.museum +utah.museum +uvic.museum +valley.museum +vantaa.museum +versailles.museum +viking.museum +village.museum +virginia.museum +virtual.museum +virtuel.museum +vlaanderen.museum +volkenkunde.museum +wales.museum +wallonie.museum +war.museum +washingtondc.museum +watchandclock.museum +watch-and-clock.museum +western.museum +westfalen.museum +whaling.museum +wildlife.museum +williamsburg.museum +windmill.museum +workshop.museum +york.museum +yorkshire.museum +yosemite.museum +youth.museum +zoological.museum +zoology.museum +ירושלים.museum +иком.museum + +// mv : http://en.wikipedia.org/wiki/.mv +// "mv" included because, contra Wikipedia, google.mv exists. +mv +aero.mv +biz.mv +com.mv +coop.mv +edu.mv +gov.mv +info.mv +int.mv +mil.mv +museum.mv +name.mv +net.mv +org.mv +pro.mv + +// mw : http://www.registrar.mw/ +mw +ac.mw +biz.mw +co.mw +com.mw +coop.mw +edu.mw +gov.mw +int.mw +museum.mw +net.mw +org.mw + +// mx : http://www.nic.mx/ +// Submitted by registry <farias@nic.mx> 2008-06-19 +mx +com.mx +org.mx +gob.mx +edu.mx +net.mx + +// my : http://www.mynic.net.my/ +my +com.my +net.my +org.my +gov.my +edu.my +mil.my +name.my + +// mz : http://www.gobin.info/domainname/mz-template.doc +*.mz + +// na : http://www.na-nic.com.na/ +// http://www.info.na/domain/ +na +info.na +pro.na +name.na +school.na +or.na +dr.na +us.na +mx.na +ca.na +in.na +cc.na +tv.na +ws.na +mobi.na +co.na +com.na +org.na + +// name : has 2nd-level tlds, but there's no list of them +name + +// nc : http://www.cctld.nc/ +nc +asso.nc + +// ne : http://en.wikipedia.org/wiki/.ne +ne + +// net : http://en.wikipedia.org/wiki/.net +net + +// CentralNic names : http://www.centralnic.com/names/domains +// Submitted by registry <gavin.brown@centralnic.com> 2008-06-17 +gb.net +se.net +uk.net + +// ZaNiC names : http://www.za.net/ +// Confirmed by registry <hostmaster@nic.za.net> 2009-10-03 +za.net + +// nf : http://en.wikipedia.org/wiki/.nf +nf +com.nf +net.nf +per.nf +rec.nf +web.nf +arts.nf +firm.nf +info.nf +other.nf +store.nf + +// ng : http://psg.com/dns/ng/ +// Submitted by registry <randy@psg.com> 2008-06-17 +ac.ng +com.ng +edu.ng +gov.ng +net.ng +org.ng + +// ni : http://www.nic.ni/dominios.htm +*.ni + +// nl : http://www.domain-registry.nl/ace.php/c,728,122,,,,Home.html +// Confirmed by registry <Antoin.Verschuren@sidn.nl> (with technical +// reservations) 2008-06-08 +nl + +// BV.nl will be a registry for dutch BV's (besloten vennootschap) +bv.nl + +// the co.nl domain is managed by CoDNS B.V. Added 2010-05-23. +co.nl + +// no : http://www.norid.no/regelverk/index.en.html +// The Norwegian registry has declined to notify us of updates. The web pages +// referenced below are the official source of the data. There is also an +// announce mailing list: +// https://postlister.uninett.no/sympa/info/norid-diskusjon +no +// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html +fhs.no +vgs.no +fylkesbibl.no +folkebibl.no +museum.no +idrett.no +priv.no +// Non-Norid generic domains : http://www.norid.no/regelverk/vedlegg-d.en.html +mil.no +stat.no +dep.no +kommune.no +herad.no +// no geographical names : http://www.norid.no/regelverk/vedlegg-b.en.html +// counties +aa.no +ah.no +bu.no +fm.no +hl.no +hm.no +jan-mayen.no +mr.no +nl.no +nt.no +of.no +ol.no +oslo.no +rl.no +sf.no +st.no +svalbard.no +tm.no +tr.no +va.no +vf.no +// primary and lower secondary schools per county +gs.aa.no +gs.ah.no +gs.bu.no +gs.fm.no +gs.hl.no +gs.hm.no +gs.jan-mayen.no +gs.mr.no +gs.nl.no +gs.nt.no +gs.of.no +gs.ol.no +gs.oslo.no +gs.rl.no +gs.sf.no +gs.st.no +gs.svalbard.no +gs.tm.no +gs.tr.no +gs.va.no +gs.vf.no +// cities +akrehamn.no +åkrehamn.no +algard.no +ålgård.no +arna.no +brumunddal.no +bryne.no +bronnoysund.no +brønnøysund.no +drobak.no +drøbak.no +egersund.no +fetsund.no +floro.no +florø.no +fredrikstad.no +hokksund.no +honefoss.no +hønefoss.no +jessheim.no +jorpeland.no +jørpeland.no +kirkenes.no +kopervik.no +krokstadelva.no +langevag.no +langevåg.no +leirvik.no +mjondalen.no +mjøndalen.no +mo-i-rana.no +mosjoen.no +mosjøen.no +nesoddtangen.no +orkanger.no +osoyro.no +osøyro.no +raholt.no +råholt.no +sandnessjoen.no +sandnessjøen.no +skedsmokorset.no +slattum.no +spjelkavik.no +stathelle.no +stavern.no +stjordalshalsen.no +stjørdalshalsen.no +tananger.no +tranby.no +vossevangen.no +// communities +afjord.no +åfjord.no +agdenes.no +al.no +ål.no +alesund.no +ålesund.no +alstahaug.no +alta.no +áltá.no +alaheadju.no +álaheadju.no +alvdal.no +amli.no +åmli.no +amot.no +åmot.no +andebu.no +andoy.no +andøy.no +andasuolo.no +ardal.no +årdal.no +aremark.no +arendal.no +ås.no +aseral.no +åseral.no +asker.no +askim.no +askvoll.no +askoy.no +askøy.no +asnes.no +åsnes.no +audnedaln.no +aukra.no +aure.no +aurland.no +aurskog-holand.no +aurskog-høland.no +austevoll.no +austrheim.no +averoy.no +averøy.no +balestrand.no +ballangen.no +balat.no +bálát.no +balsfjord.no +bahccavuotna.no +báhccavuotna.no +bamble.no +bardu.no +beardu.no +beiarn.no +bajddar.no +bájddar.no +baidar.no +báidár.no +berg.no +bergen.no +berlevag.no +berlevåg.no +bearalvahki.no +bearalváhki.no +bindal.no +birkenes.no +bjarkoy.no +bjarkøy.no +bjerkreim.no +bjugn.no +bodo.no +bodø.no +badaddja.no +bådåddjå.no +budejju.no +bokn.no +bremanger.no +bronnoy.no +brønnøy.no +bygland.no +bykle.no +barum.no +bærum.no +bo.telemark.no +bø.telemark.no +bo.nordland.no +bø.nordland.no +bievat.no +bievát.no +bomlo.no +bømlo.no +batsfjord.no +båtsfjord.no +bahcavuotna.no +báhcavuotna.no +dovre.no +drammen.no +drangedal.no +dyroy.no +dyrøy.no +donna.no +dønna.no +eid.no +eidfjord.no +eidsberg.no +eidskog.no +eidsvoll.no +eigersund.no +elverum.no +enebakk.no +engerdal.no +etne.no +etnedal.no +evenes.no +evenassi.no +evenášši.no +evje-og-hornnes.no +farsund.no +fauske.no +fuossko.no +fuoisku.no +fedje.no +fet.no +finnoy.no +finnøy.no +fitjar.no +fjaler.no +fjell.no +flakstad.no +flatanger.no +flekkefjord.no +flesberg.no +flora.no +fla.no +flå.no +folldal.no +forsand.no +fosnes.no +frei.no +frogn.no +froland.no +frosta.no +frana.no +fræna.no +froya.no +frøya.no +fusa.no +fyresdal.no +forde.no +førde.no +gamvik.no +gangaviika.no +gáŋgaviika.no +gaular.no +gausdal.no +gildeskal.no +gildeskål.no +giske.no +gjemnes.no +gjerdrum.no +gjerstad.no +gjesdal.no +gjovik.no +gjøvik.no +gloppen.no +gol.no +gran.no +grane.no +granvin.no +gratangen.no +grimstad.no +grong.no +kraanghke.no +kråanghke.no +grue.no +gulen.no +hadsel.no +halden.no +halsa.no +hamar.no +hamaroy.no +habmer.no +hábmer.no +hapmir.no +hápmir.no +hammerfest.no +hammarfeasta.no +hámmárfeasta.no +haram.no +hareid.no +harstad.no +hasvik.no +aknoluokta.no +ákŋoluokta.no +hattfjelldal.no +aarborte.no +haugesund.no +hemne.no +hemnes.no +hemsedal.no +heroy.more-og-romsdal.no +herøy.møre-og-romsdal.no +heroy.nordland.no +herøy.nordland.no +hitra.no +hjartdal.no +hjelmeland.no +hobol.no +hobøl.no +hof.no +hol.no +hole.no +holmestrand.no +holtalen.no +holtålen.no +hornindal.no +horten.no +hurdal.no +hurum.no +hvaler.no +hyllestad.no +hagebostad.no +hægebostad.no +hoyanger.no +høyanger.no +hoylandet.no +høylandet.no +ha.no +hå.no +ibestad.no +inderoy.no +inderøy.no +iveland.no +jevnaker.no +jondal.no +jolster.no +jølster.no +karasjok.no +karasjohka.no +kárášjohka.no +karlsoy.no +galsa.no +gálsá.no +karmoy.no +karmøy.no +kautokeino.no +guovdageaidnu.no +klepp.no +klabu.no +klæbu.no +kongsberg.no +kongsvinger.no +kragero.no +kragerø.no +kristiansand.no +kristiansund.no +krodsherad.no +krødsherad.no +kvalsund.no +rahkkeravju.no +ráhkkerávju.no +kvam.no +kvinesdal.no +kvinnherad.no +kviteseid.no +kvitsoy.no +kvitsøy.no +kvafjord.no +kvæfjord.no +giehtavuoatna.no +kvanangen.no +kvænangen.no +navuotna.no +návuotna.no +kafjord.no +kåfjord.no +gaivuotna.no +gáivuotna.no +larvik.no +lavangen.no +lavagis.no +loabat.no +loabát.no +lebesby.no +davvesiida.no +leikanger.no +leirfjord.no +leka.no +leksvik.no +lenvik.no +leangaviika.no +leaŋgaviika.no +lesja.no +levanger.no +lier.no +lierne.no +lillehammer.no +lillesand.no +lindesnes.no +lindas.no +lindås.no +lom.no +loppa.no +lahppi.no +láhppi.no +lund.no +lunner.no +luroy.no +lurøy.no +luster.no +lyngdal.no +lyngen.no +ivgu.no +lardal.no +lerdal.no +lærdal.no +lodingen.no +lødingen.no +lorenskog.no +lørenskog.no +loten.no +løten.no +malvik.no +masoy.no +måsøy.no +muosat.no +muosát.no +mandal.no +marker.no +marnardal.no +masfjorden.no +meland.no +meldal.no +melhus.no +meloy.no +meløy.no +meraker.no +meråker.no +moareke.no +moåreke.no +midsund.no +midtre-gauldal.no +modalen.no +modum.no +molde.no +moskenes.no +moss.no +mosvik.no +malselv.no +målselv.no +malatvuopmi.no +málatvuopmi.no +namdalseid.no +aejrie.no +namsos.no +namsskogan.no +naamesjevuemie.no +nååmesjevuemie.no +laakesvuemie.no +nannestad.no +narvik.no +narviika.no +naustdal.no +nedre-eiker.no +nes.akershus.no +nes.buskerud.no +nesna.no +nesodden.no +nesseby.no +unjarga.no +unjárga.no +nesset.no +nissedal.no +nittedal.no +nord-aurdal.no +nord-fron.no +nord-odal.no +norddal.no +nordkapp.no +davvenjarga.no +davvenjárga.no +nordre-land.no +nordreisa.no +raisa.no +ráisa.no +nore-og-uvdal.no +notodden.no +naroy.no +nærøy.no +notteroy.no +nøtterøy.no +odda.no +oksnes.no +øksnes.no +oppdal.no +oppegard.no +oppegård.no +orkdal.no +orland.no +ørland.no +orskog.no +ørskog.no +orsta.no +ørsta.no +os.hedmark.no +os.hordaland.no +osen.no +osteroy.no +osterøy.no +ostre-toten.no +østre-toten.no +overhalla.no +ovre-eiker.no +øvre-eiker.no +oyer.no +øyer.no +oygarden.no +øygarden.no +oystre-slidre.no +øystre-slidre.no +porsanger.no +porsangu.no +porsáŋgu.no +porsgrunn.no +radoy.no +radøy.no +rakkestad.no +rana.no +ruovat.no +randaberg.no +rauma.no +rendalen.no +rennebu.no +rennesoy.no +rennesøy.no +rindal.no +ringebu.no +ringerike.no +ringsaker.no +rissa.no +risor.no +risør.no +roan.no +rollag.no +rygge.no +ralingen.no +rælingen.no +rodoy.no +rødøy.no +romskog.no +rømskog.no +roros.no +røros.no +rost.no +røst.no +royken.no +røyken.no +royrvik.no +røyrvik.no +rade.no +råde.no +salangen.no +siellak.no +saltdal.no +salat.no +sálát.no +sálat.no +samnanger.no +sande.more-og-romsdal.no +sande.møre-og-romsdal.no +sande.vestfold.no +sandefjord.no +sandnes.no +sandoy.no +sandøy.no +sarpsborg.no +sauda.no +sauherad.no +sel.no +selbu.no +selje.no +seljord.no +sigdal.no +siljan.no +sirdal.no +skaun.no +skedsmo.no +ski.no +skien.no +skiptvet.no +skjervoy.no +skjervøy.no +skierva.no +skiervá.no +skjak.no +skjåk.no +skodje.no +skanland.no +skånland.no +skanit.no +skánit.no +smola.no +smøla.no +snillfjord.no +snasa.no +snåsa.no +snoasa.no +snaase.no +snåase.no +sogndal.no +sokndal.no +sola.no +solund.no +songdalen.no +sortland.no +spydeberg.no +stange.no +stavanger.no +steigen.no +steinkjer.no +stjordal.no +stjørdal.no +stokke.no +stor-elvdal.no +stord.no +stordal.no +storfjord.no +omasvuotna.no +strand.no +stranda.no +stryn.no +sula.no +suldal.no +sund.no +sunndal.no +surnadal.no +sveio.no +svelvik.no +sykkylven.no +sogne.no +søgne.no +somna.no +sømna.no +sondre-land.no +søndre-land.no +sor-aurdal.no +sør-aurdal.no +sor-fron.no +sør-fron.no +sor-odal.no +sør-odal.no +sor-varanger.no +sør-varanger.no +matta-varjjat.no +mátta-várjjat.no +sorfold.no +sørfold.no +sorreisa.no +sørreisa.no +sorum.no +sørum.no +tana.no +deatnu.no +time.no +tingvoll.no +tinn.no +tjeldsund.no +dielddanuorri.no +tjome.no +tjøme.no +tokke.no +tolga.no +torsken.no +tranoy.no +tranøy.no +tromso.no +tromsø.no +tromsa.no +romsa.no +trondheim.no +troandin.no +trysil.no +trana.no +træna.no +trogstad.no +trøgstad.no +tvedestrand.no +tydal.no +tynset.no +tysfjord.no +divtasvuodna.no +divttasvuotna.no +tysnes.no +tysvar.no +tysvær.no +tonsberg.no +tønsberg.no +ullensaker.no +ullensvang.no +ulvik.no +utsira.no +vadso.no +vadsø.no +cahcesuolo.no +čáhcesuolo.no +vaksdal.no +valle.no +vang.no +vanylven.no +vardo.no +vardø.no +varggat.no +várggát.no +vefsn.no +vaapste.no +vega.no +vegarshei.no +vegårshei.no +vennesla.no +verdal.no +verran.no +vestby.no +vestnes.no +vestre-slidre.no +vestre-toten.no +vestvagoy.no +vestvågøy.no +vevelstad.no +vik.no +vikna.no +vindafjord.no +volda.no +voss.no +varoy.no +værøy.no +vagan.no +vågan.no +voagat.no +vagsoy.no +vågsøy.no +vaga.no +vågå.no +valer.ostfold.no +våler.østfold.no +valer.hedmark.no +våler.hedmark.no + +// the co.no domain is managed by CoDNS B.V. Added 2010-05-23. +co.no + +// np : http://www.mos.com.np/register.html +*.np + +// nr : http://cenpac.net.nr/dns/index.html +// Confirmed by registry <technician@cenpac.net.nr> 2008-06-17 +nr +biz.nr +info.nr +gov.nr +edu.nr +org.nr +net.nr +com.nr + +// nu : http://en.wikipedia.org/wiki/.nu +nu + +// nz : http://en.wikipedia.org/wiki/.nz +*.nz + +// om : http://en.wikipedia.org/wiki/.om +*.om +!mediaphone.om +!nawrastelecom.om +!nawras.om +!omanmobile.om +!omanpost.om +!omantel.om +!rakpetroleum.om +!siemens.om +!songfest.om +!statecouncil.om + +// org : http://en.wikipedia.org/wiki/.org +org + +// CentralNic names : http://www.centralnic.com/names/domains +// Submitted by registry <gavin.brown@centralnic.com> 2008-06-17 +ae.org + +// ZaNiC names : http://www.za.net/ +// Confirmed by registry <hostmaster@nic.za.net> 2009-10-03 +za.org + +// pa : http://www.nic.pa/ +// Some additional second level "domains" resolve directly as hostnames, such as +// pannet.pa, so we add a rule for "pa". +pa +ac.pa +gob.pa +com.pa +org.pa +sld.pa +edu.pa +net.pa +ing.pa +abo.pa +med.pa +nom.pa + +// pe : https://www.nic.pe/InformeFinalComision.pdf +pe +edu.pe +gob.pe +nom.pe +mil.pe +org.pe +com.pe +net.pe + +// pf : http://www.gobin.info/domainname/formulaire-pf.pdf +pf +com.pf +org.pf +edu.pf + +// pg : http://en.wikipedia.org/wiki/.pg +*.pg + +// ph : http://www.domains.ph/FAQ2.asp +// Submitted by registry <jed@email.com.ph> 2008-06-13 +ph +com.ph +net.ph +org.ph +gov.ph +edu.ph +ngo.ph +mil.ph +i.ph + +// pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK +pk +com.pk +net.pk +edu.pk +org.pk +fam.pk +biz.pk +web.pk +gov.pk +gob.pk +gok.pk +gon.pk +gop.pk +gos.pk +info.pk + +// pl : http://www.dns.pl/english/ +pl +// NASK functional domains (nask.pl / dns.pl) : http://www.dns.pl/english/dns-funk.html +aid.pl +agro.pl +atm.pl +auto.pl +biz.pl +com.pl +edu.pl +gmina.pl +gsm.pl +info.pl +mail.pl +miasta.pl +media.pl +mil.pl +net.pl +nieruchomosci.pl +nom.pl +org.pl +pc.pl +powiat.pl +priv.pl +realestate.pl +rel.pl +sex.pl +shop.pl +sklep.pl +sos.pl +szkola.pl +targi.pl +tm.pl +tourism.pl +travel.pl +turystyka.pl +// ICM functional domains (icm.edu.pl) +6bone.pl +art.pl +mbone.pl +// Government domains (administred by ippt.gov.pl) +gov.pl +uw.gov.pl +um.gov.pl +ug.gov.pl +upow.gov.pl +starostwo.gov.pl +so.gov.pl +sr.gov.pl +po.gov.pl +pa.gov.pl +// other functional domains +ngo.pl +irc.pl +usenet.pl +// NASK geographical domains : http://www.dns.pl/english/dns-regiony.html +augustow.pl +babia-gora.pl +bedzin.pl +beskidy.pl +bialowieza.pl +bialystok.pl +bielawa.pl +bieszczady.pl +boleslawiec.pl +bydgoszcz.pl +bytom.pl +cieszyn.pl +czeladz.pl +czest.pl +dlugoleka.pl +elblag.pl +elk.pl +glogow.pl +gniezno.pl +gorlice.pl +grajewo.pl +ilawa.pl +jaworzno.pl +jelenia-gora.pl +jgora.pl +kalisz.pl +kazimierz-dolny.pl +karpacz.pl +kartuzy.pl +kaszuby.pl +katowice.pl +kepno.pl +ketrzyn.pl +klodzko.pl +kobierzyce.pl +kolobrzeg.pl +konin.pl +konskowola.pl +kutno.pl +lapy.pl +lebork.pl +legnica.pl +lezajsk.pl +limanowa.pl +lomza.pl +lowicz.pl +lubin.pl +lukow.pl +malbork.pl +malopolska.pl +mazowsze.pl +mazury.pl +mielec.pl +mielno.pl +mragowo.pl +naklo.pl +nowaruda.pl +nysa.pl +olawa.pl +olecko.pl +olkusz.pl +olsztyn.pl +opoczno.pl +opole.pl +ostroda.pl +ostroleka.pl +ostrowiec.pl +ostrowwlkp.pl +pila.pl +pisz.pl +podhale.pl +podlasie.pl +polkowice.pl +pomorze.pl +pomorskie.pl +prochowice.pl +pruszkow.pl +przeworsk.pl +pulawy.pl +radom.pl +rawa-maz.pl +rybnik.pl +rzeszow.pl +sanok.pl +sejny.pl +siedlce.pl +slask.pl +slupsk.pl +sosnowiec.pl +stalowa-wola.pl +skoczow.pl +starachowice.pl +stargard.pl +suwalki.pl +swidnica.pl +swiebodzin.pl +swinoujscie.pl +szczecin.pl +szczytno.pl +tarnobrzeg.pl +tgory.pl +turek.pl +tychy.pl +ustka.pl +walbrzych.pl +warmia.pl +warszawa.pl +waw.pl +wegrow.pl +wielun.pl +wlocl.pl +wloclawek.pl +wodzislaw.pl +wolomin.pl +wroclaw.pl +zachpomor.pl +zagan.pl +zarow.pl +zgora.pl +zgorzelec.pl +// TASK geographical domains (www.task.gda.pl/uslugi/dns) +gda.pl +gdansk.pl +gdynia.pl +med.pl +sopot.pl +// other geographical domains +gliwice.pl +krakow.pl +poznan.pl +wroc.pl +zakopane.pl + +// co.pl : Mainseek Sp. z o.o. http://www.co.pl +co.pl + +// pn : http://www.government.pn/PnRegistry/policies.htm +pn +gov.pn +co.pn +org.pn +edu.pn +net.pn + +// pr : http://www.nic.pr/index.asp?f=1 +pr +com.pr +net.pr +org.pr +gov.pr +edu.pr +isla.pr +pro.pr +biz.pr +info.pr +name.pr +// these aren't mentioned on nic.pr, but on http://en.wikipedia.org/wiki/.pr +est.pr +prof.pr +ac.pr + +// pro : http://www.nic.pro/support_faq.htm +pro +aca.pro +bar.pro +cpa.pro +jur.pro +law.pro +med.pro +eng.pro + +// ps : http://en.wikipedia.org/wiki/.ps +// http://www.nic.ps/registration/policy.html#reg +ps +edu.ps +gov.ps +sec.ps +plo.ps +com.ps +org.ps +net.ps + +// pt : http://online.dns.pt/dns/start_dns +pt +net.pt +gov.pt +org.pt +edu.pt +int.pt +publ.pt +com.pt +nome.pt + +// pw : http://en.wikipedia.org/wiki/.pw +pw +co.pw +ne.pw +or.pw +ed.pw +go.pw +belau.pw + +// py : http://www.nic.py/faq_a.html#faq_b +*.py + +// qa : http://www.qatar.net.qa/services/virtual.htm +*.qa + +// re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs +re +com.re +asso.re +nom.re + +// ro : http://www.rotld.ro/ +ro +com.ro +org.ro +tm.ro +nt.ro +nom.ro +info.ro +rec.ro +arts.ro +firm.ro +store.ro +www.ro + +// rs : http://en.wikipedia.org/wiki/.rs +rs +co.rs +org.rs +edu.rs +ac.rs +gov.rs +in.rs + +// ru : http://www.cctld.ru/ru/docs/aktiv_8.php +// Industry domains +ru +ac.ru +com.ru +edu.ru +int.ru +net.ru +org.ru +pp.ru +// Geographical domains +adygeya.ru +altai.ru +amur.ru +arkhangelsk.ru +astrakhan.ru +bashkiria.ru +belgorod.ru +bir.ru +bryansk.ru +buryatia.ru +cbg.ru +chel.ru +chelyabinsk.ru +chita.ru +chukotka.ru +chuvashia.ru +dagestan.ru +dudinka.ru +e-burg.ru +grozny.ru +irkutsk.ru +ivanovo.ru +izhevsk.ru +jar.ru +joshkar-ola.ru +kalmykia.ru +kaluga.ru +kamchatka.ru +karelia.ru +kazan.ru +kchr.ru +kemerovo.ru +khabarovsk.ru +khakassia.ru +khv.ru +kirov.ru +koenig.ru +komi.ru +kostroma.ru +krasnoyarsk.ru +kuban.ru +kurgan.ru +kursk.ru +lipetsk.ru +magadan.ru +mari.ru +mari-el.ru +marine.ru +mordovia.ru +mosreg.ru +msk.ru +murmansk.ru +nalchik.ru +nnov.ru +nov.ru +novosibirsk.ru +nsk.ru +omsk.ru +orenburg.ru +oryol.ru +palana.ru +penza.ru +perm.ru +pskov.ru +ptz.ru +rnd.ru +ryazan.ru +sakhalin.ru +samara.ru +saratov.ru +simbirsk.ru +smolensk.ru +spb.ru +stavropol.ru +stv.ru +surgut.ru +tambov.ru +tatarstan.ru +tom.ru +tomsk.ru +tsaritsyn.ru +tsk.ru +tula.ru +tuva.ru +tver.ru +tyumen.ru +udm.ru +udmurtia.ru +ulan-ude.ru +vladikavkaz.ru +vladimir.ru +vladivostok.ru +volgograd.ru +vologda.ru +voronezh.ru +vrn.ru +vyatka.ru +yakutia.ru +yamal.ru +yaroslavl.ru +yekaterinburg.ru +yuzhno-sakhalinsk.ru +// More geographical domains +amursk.ru +baikal.ru +cmw.ru +fareast.ru +jamal.ru +kms.ru +k-uralsk.ru +kustanai.ru +kuzbass.ru +magnitka.ru +mytis.ru +nakhodka.ru +nkz.ru +norilsk.ru +oskol.ru +pyatigorsk.ru +rubtsovsk.ru +snz.ru +syzran.ru +vdonsk.ru +zgrad.ru +// State domains +gov.ru +mil.ru +// Technical domains +test.ru + +// rw : http://www.nic.rw/cgi-bin/policy.pl +rw +gov.rw +net.rw +edu.rw +ac.rw +com.rw +co.rw +int.rw +mil.rw +gouv.rw + +// sa : http://www.nic.net.sa/ +sa +com.sa +net.sa +org.sa +gov.sa +med.sa +pub.sa +edu.sa +sch.sa + +// sb : http://www.sbnic.net.sb/ +// Submitted by registry <lee.humphries@telekom.com.sb> 2008-06-08 +sb +com.sb +edu.sb +gov.sb +net.sb +org.sb + +// sc : http://www.nic.sc/ +sc +com.sc +gov.sc +net.sc +org.sc +edu.sc + +// sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm +// Submitted by registry <admin@isoc.sd> 2008-06-17 +sd +com.sd +net.sd +org.sd +edu.sd +med.sd +gov.sd +info.sd + +// se : http://en.wikipedia.org/wiki/.se +// Submitted by registry <Patrik.Wallstrom@iis.se> 2008-06-24 +se +a.se +ac.se +b.se +bd.se +brand.se +c.se +d.se +e.se +f.se +fh.se +fhsk.se +fhv.se +g.se +h.se +i.se +k.se +komforb.se +kommunalforbund.se +komvux.se +l.se +lanbib.se +m.se +n.se +naturbruksgymn.se +o.se +org.se +p.se +parti.se +pp.se +press.se +r.se +s.se +sshn.se +t.se +tm.se +u.se +w.se +x.se +y.se +z.se + +// sg : http://www.nic.net.sg/sub_policies_agreement/2ld.html +sg +com.sg +net.sg +org.sg +gov.sg +edu.sg +per.sg + +// sh : http://www.nic.sh/rules.html +// list of 2nd level domains ? +sh + +// si : http://en.wikipedia.org/wiki/.si +si + +// sj : No registrations at this time. +// Submitted by registry <jarle@uninett.no> 2008-06-16 + +// sk : http://en.wikipedia.org/wiki/.sk +// list of 2nd level domains ? +sk + +// sl : http://www.nic.sl +// Submitted by registry <adam@neoip.com> 2008-06-12 +sl +com.sl +net.sl +edu.sl +gov.sl +org.sl + +// sm : http://en.wikipedia.org/wiki/.sm +sm + +// sn : http://en.wikipedia.org/wiki/.sn +sn +art.sn +com.sn +edu.sn +gouv.sn +org.sn +perso.sn +univ.sn + +// so : http://www.soregistry.com/ +so +com.so +net.so +org.so + +// sr : http://en.wikipedia.org/wiki/.sr +sr + +// st : http://www.nic.st/html/policyrules/ +st +co.st +com.st +consulado.st +edu.st +embaixada.st +gov.st +mil.st +net.st +org.st +principe.st +saotome.st +store.st + +// su : http://en.wikipedia.org/wiki/.su +su + +// sv : http://www.svnet.org.sv/svpolicy.html +*.sv + +// sy : http://en.wikipedia.org/wiki/.sy +// see also: http://www.gobin.info/domainname/sy.doc +sy +edu.sy +gov.sy +net.sy +mil.sy +com.sy +org.sy + +// sz : http://en.wikipedia.org/wiki/.sz +// http://www.sispa.org.sz/ +sz +co.sz +ac.sz +org.sz + +// tc : http://en.wikipedia.org/wiki/.tc +tc + +// td : http://en.wikipedia.org/wiki/.td +td + +// tel: http://en.wikipedia.org/wiki/.tel +// http://www.telnic.org/ +tel + +// tf : http://en.wikipedia.org/wiki/.tf +tf + +// tg : http://en.wikipedia.org/wiki/.tg +// http://www.nic.tg/nictg/index.php implies no reserved 2nd-level domains, +// although this contradicts wikipedia. +tg + +// th : http://en.wikipedia.org/wiki/.th +// Submitted by registry <krit@thains.co.th> 2008-06-17 +th +ac.th +co.th +go.th +in.th +mi.th +net.th +or.th + +// tj : http://www.nic.tj/policy.htm +tj +ac.tj +biz.tj +co.tj +com.tj +edu.tj +go.tj +gov.tj +int.tj +mil.tj +name.tj +net.tj +nic.tj +org.tj +test.tj +web.tj + +// tk : http://en.wikipedia.org/wiki/.tk +tk + +// tl : http://en.wikipedia.org/wiki/.tl +tl +gov.tl + +// tm : http://www.nic.tm/rules.html +// list of 2nd level tlds ? +tm + +// tn : http://en.wikipedia.org/wiki/.tn +// http://whois.ati.tn/ +tn +com.tn +ens.tn +fin.tn +gov.tn +ind.tn +intl.tn +nat.tn +net.tn +org.tn +info.tn +perso.tn +tourism.tn +edunet.tn +rnrt.tn +rns.tn +rnu.tn +mincom.tn +agrinet.tn +defense.tn +turen.tn + +// to : http://en.wikipedia.org/wiki/.to +// Submitted by registry <egullich@colo.to> 2008-06-17 +to +com.to +gov.to +net.to +org.to +edu.to +mil.to + +// tr : http://en.wikipedia.org/wiki/.tr +*.tr +!nic.tr +// Used by government in the TRNC +// http://en.wikipedia.org/wiki/.nc.tr +gov.nc.tr + +// travel : http://en.wikipedia.org/wiki/.travel +travel + +// tt : http://www.nic.tt/ +tt +co.tt +com.tt +org.tt +net.tt +biz.tt +info.tt +pro.tt +int.tt +coop.tt +jobs.tt +mobi.tt +travel.tt +museum.tt +aero.tt +name.tt +gov.tt +edu.tt + +// tv : http://en.wikipedia.org/wiki/.tv +// Not listing any 2LDs as reserved since none seem to exist in practice, +// Wikipedia notwithstanding. +tv + +// tw : http://en.wikipedia.org/wiki/.tw +tw +edu.tw +gov.tw +mil.tw +com.tw +net.tw +org.tw +idv.tw +game.tw +ebiz.tw +club.tw +網路.tw +組織.tw +商業.tw + +// tz : http://en.wikipedia.org/wiki/.tz +// Submitted by registry <randy@psg.com> 2008-06-17 +// Updated from http://www.tznic.or.tz/index.php/domains.html 2010-10-25 +ac.tz +co.tz +go.tz +mil.tz +ne.tz +or.tz +sc.tz + +// ua : http://www.nic.net.ua/ +ua +com.ua +edu.ua +gov.ua +in.ua +net.ua +org.ua +// ua geo-names +cherkassy.ua +chernigov.ua +chernovtsy.ua +ck.ua +cn.ua +crimea.ua +cv.ua +dn.ua +dnepropetrovsk.ua +donetsk.ua +dp.ua +if.ua +ivano-frankivsk.ua +kh.ua +kharkov.ua +kherson.ua +khmelnitskiy.ua +kiev.ua +kirovograd.ua +km.ua +kr.ua +ks.ua +kv.ua +lg.ua +lugansk.ua +lutsk.ua +lviv.ua +mk.ua +nikolaev.ua +od.ua +odessa.ua +pl.ua +poltava.ua +rovno.ua +rv.ua +sebastopol.ua +sumy.ua +te.ua +ternopil.ua +uzhgorod.ua +vinnica.ua +vn.ua +zaporizhzhe.ua +zp.ua +zhitomir.ua +zt.ua + +// ug : http://www.registry.co.ug/ +ug +co.ug +ac.ug +sc.ug +go.ug +ne.ug +or.ug + +// uk : http://en.wikipedia.org/wiki/.uk +*.uk +*.sch.uk +!bl.uk +!british-library.uk +!icnet.uk +!jet.uk +!mod.uk +!nel.uk +!nhs.uk +!nic.uk +!nls.uk +!national-library-scotland.uk +!parliament.uk +!police.uk + +// us : http://en.wikipedia.org/wiki/.us +us +dni.us +fed.us +isa.us +kids.us +nsn.us +// us geographic names +ak.us +al.us +ar.us +as.us +az.us +ca.us +co.us +ct.us +dc.us +de.us +fl.us +ga.us +gu.us +hi.us +ia.us +id.us +il.us +in.us +ks.us +ky.us +la.us +ma.us +md.us +me.us +mi.us +mn.us +mo.us +ms.us +mt.us +nc.us +nd.us +ne.us +nh.us +nj.us +nm.us +nv.us +ny.us +oh.us +ok.us +or.us +pa.us +pr.us +ri.us +sc.us +sd.us +tn.us +tx.us +ut.us +vi.us +vt.us +va.us +wa.us +wi.us +wv.us +wy.us +// The registrar notes several more specific domains available in each state, +// such as state.*.us, dst.*.us, etc., but resolution of these is somewhat +// haphazard; in some states these domains resolve as addresses, while in others +// only subdomains are available, or even nothing at all. We include the +// most common ones where it's clear that different sites are different +// entities. +k12.ak.us +k12.al.us +k12.ar.us +k12.as.us +k12.az.us +k12.ca.us +k12.co.us +k12.ct.us +k12.dc.us +k12.de.us +k12.fl.us +k12.ga.us +k12.gu.us +// k12.hi.us Hawaii has a state-wide DOE login: bug 614565 +k12.ia.us +k12.id.us +k12.il.us +k12.in.us +k12.ks.us +k12.ky.us +k12.la.us +k12.ma.us +k12.md.us +k12.me.us +k12.mi.us +k12.mn.us +k12.mo.us +k12.ms.us +k12.mt.us +k12.nc.us +k12.nd.us +k12.ne.us +k12.nh.us +k12.nj.us +k12.nm.us +k12.nv.us +k12.ny.us +k12.oh.us +k12.ok.us +k12.or.us +k12.pa.us +k12.pr.us +k12.ri.us +k12.sc.us +k12.sd.us +k12.tn.us +k12.tx.us +k12.ut.us +k12.vi.us +k12.vt.us +k12.va.us +k12.wa.us +k12.wi.us +k12.wv.us +k12.wy.us + +cc.ak.us +cc.al.us +cc.ar.us +cc.as.us +cc.az.us +cc.ca.us +cc.co.us +cc.ct.us +cc.dc.us +cc.de.us +cc.fl.us +cc.ga.us +cc.gu.us +cc.hi.us +cc.ia.us +cc.id.us +cc.il.us +cc.in.us +cc.ks.us +cc.ky.us +cc.la.us +cc.ma.us +cc.md.us +cc.me.us +cc.mi.us +cc.mn.us +cc.mo.us +cc.ms.us +cc.mt.us +cc.nc.us +cc.nd.us +cc.ne.us +cc.nh.us +cc.nj.us +cc.nm.us +cc.nv.us +cc.ny.us +cc.oh.us +cc.ok.us +cc.or.us +cc.pa.us +cc.pr.us +cc.ri.us +cc.sc.us +cc.sd.us +cc.tn.us +cc.tx.us +cc.ut.us +cc.vi.us +cc.vt.us +cc.va.us +cc.wa.us +cc.wi.us +cc.wv.us +cc.wy.us + +lib.ak.us +lib.al.us +lib.ar.us +lib.as.us +lib.az.us +lib.ca.us +lib.co.us +lib.ct.us +lib.dc.us +lib.de.us +lib.fl.us +lib.ga.us +lib.gu.us +lib.hi.us +lib.ia.us +lib.id.us +lib.il.us +lib.in.us +lib.ks.us +lib.ky.us +lib.la.us +lib.ma.us +lib.md.us +lib.me.us +lib.mi.us +lib.mn.us +lib.mo.us +lib.ms.us +lib.mt.us +lib.nc.us +lib.nd.us +lib.ne.us +lib.nh.us +lib.nj.us +lib.nm.us +lib.nv.us +lib.ny.us +lib.oh.us +lib.ok.us +lib.or.us +lib.pa.us +lib.pr.us +lib.ri.us +lib.sc.us +lib.sd.us +lib.tn.us +lib.tx.us +lib.ut.us +lib.vi.us +lib.vt.us +lib.va.us +lib.wa.us +lib.wi.us +lib.wv.us +lib.wy.us + +// k12.ma.us contains school districts in Massachusetts. The 4LDs are +// managed indepedently except for private (PVT), charter (CHTR) and +// parochial (PAROCH) schools. Those are delegated dorectly to the +// 5LD operators. <k12-ma-hostmaster _ at _ rsuc.gweep.net> +pvt.k12.ma.us +chtr.k12.ma.us +paroch.k12.ma.us + +// uy : http://www.antel.com.uy/ +*.uy + +// uz : http://www.reg.uz/registerr.html +// are there other 2nd level tlds ? +uz +com.uz +co.uz + +// va : http://en.wikipedia.org/wiki/.va +va + +// vc : http://en.wikipedia.org/wiki/.vc +// Submitted by registry <kshah@ca.afilias.info> 2008-06-13 +vc +com.vc +net.vc +org.vc +gov.vc +mil.vc +edu.vc + +// ve : http://registro.nic.ve/nicve/registro/index.html +*.ve + +// vg : http://en.wikipedia.org/wiki/.vg +vg + +// vi : http://www.nic.vi/newdomainform.htm +// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other +// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they +// are available for registration (which they do not seem to be). +vi +co.vi +com.vi +k12.vi +net.vi +org.vi + +// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp +vn +com.vn +net.vn +org.vn +edu.vn +gov.vn +int.vn +ac.vn +biz.vn +info.vn +name.vn +pro.vn +health.vn + +// vu : http://en.wikipedia.org/wiki/.vu +// list of 2nd level tlds ? +vu + +// ws : http://en.wikipedia.org/wiki/.ws +// http://samoanic.ws/index.dhtml +ws +com.ws +net.ws +org.ws +gov.ws +edu.ws + +// IDN ccTLDs +// Please sort by ISO 3166 ccTLD, then punicode string +// when submitting patches and follow this format: +// <Punicode> ("<english word>" <language>) : <ISO 3166 ccTLD> +// [optional sponsoring org] +// <URL> + +// xn--mgbaam7a8h ("Emerat" Arabic) : AE +//http://nic.ae/english/arabicdomain/rules.jsp +امارات + +// xn--54b7fta0cc ("Bangla" Bangla) : BD +বাংলা + +// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN +// CNNIC +// http://cnnic.cn/html/Dir/2005/10/11/3218.htm +中国 + +// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN +// CNNIC +// http://cnnic.cn/html/Dir/2005/10/11/3218.htm +中國 + +// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ +الجزائر + +// xn--wgbh1c ("Egypt" Arabic .masr) : EG +// http://www.dotmasr.eg/ +مصر + +// xn--node ("ge" Georgian (Mkhedruli)) : GE +გე + +// xn--j6w193g ("Hong Kong" Chinese-Han) : HK +// https://www2.hkirc.hk/register/rules.jsp +香港 + +// xn--h2brj9c ("Bharat" Devanagari) : IN +// India +भारत + +// xn--mgbbh1a71e ("Bharat" Arabic) : IN +// India +بھارت + +// xn--fpcrj9c3d ("Bharat" Telugu) : IN +// India +భారత్ + +// xn--gecrj9c ("Bharat" Gujarati) : IN +// India +ભારત + +// xn--s9brj9c ("Bharat" Gurmukhi) : IN +// India +ਭਾਰਤ + +// xn--45brj9c ("Bharat" Bengali) : IN +// India +ভারত + +// xn--xkc2dl3a5ee0h ("India" Tamil) : IN +// India +இந்தியா + +// xn--mgba3a4f16a ("Iran" Persian) : IR +ایران + +// xn--mgba3a4fra ("Iran" Arabic) : IR +ايران + +//xn--mgbayh7gpa ("al-Ordon" Arabic) JO +//National Information Technology Center (NITC) +//Royal Scientific Society, Al-Jubeiha +الاردن + +// xn--3e0b707e ("Republic of Korea" Hangul) : KR +한국 + +// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK +// http://nic.lk +ලංකා + +// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK +// http://nic.lk +இலங்கை + +// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA +المغرب + +// xn--mgb9awbf ("Oman" Arabic) : OM +عمان + +// xn--ygbi2ammx ("Falasteen" Arabic) : PS +// The Palestinian National Internet Naming Authority (PNINA) +// http://www.pnina.ps +فلسطين + +// xn--90a3ac ("srb" Cyrillic) : RS +срб + +// xn--p1ai ("rf" Russian-Cyrillic) : RU +// http://www.cctld.ru/en/docs/rulesrf.php +рф + +// xn--wgbl6a ("Qatar" Arabic) : QA +// http://www.ict.gov.qa/ +قطر + +// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA +// http://www.nic.net.sa/ +السعودية + +// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA +السعودیة + +// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA +السعودیۃ + +// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA +السعوديه + +// xn--ogbpf8fl ("Syria" Arabic) : SY +سورية + +// xn--mgbtf8fl ("Syria" Arabic) variant : SY +سوريا + +// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG +新加坡 + +// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG +சிங்கப்பூர் + +// xn--o3cw4h ("Thai" Thai) : TH +// http://www.thnic.co.th +ไทย + +// xn--pgbs0dh ("Tunis") : TN +// http://nic.tn +تونس + +// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW +// http://www.twnic.net/english/dn/dn_07a.htm +台灣 + +// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW +// http://www.twnic.net/english/dn/dn_07a.htm +台湾 + +// xn--nnx388a ("Taiwan") variant : TW +臺灣 + +// xn--j1amh ("ukr" Cyrillic) : UA +укр + +// xn--mgb2ddes ("AlYemen" Arabic) : YE +اليمن + +// xxx : http://icmregistry.com +xxx + +// ye : http://www.y.net.ye/services/domain_name.htm +*.ye + +// yu : http://www.nic.yu/pravilnik-e.html +*.yu + +// za : http://www.zadna.org.za/slds.html +*.za + +// zm : http://en.wikipedia.org/wiki/.zm +*.zm + +// zw : http://en.wikipedia.org/wiki/.zw +*.zw + +// DynDNS.com Dynamic DNS zones : http://www.dyndns.com/services/dns/dyndns/ +dyndns-at-home.com +dyndns-at-work.com +dyndns-blog.com +dyndns-free.com +dyndns-home.com +dyndns-ip.com +dyndns-mail.com +dyndns-office.com +dyndns-pics.com +dyndns-remote.com +dyndns-server.com +dyndns-web.com +dyndns-wiki.com +dyndns-work.com +dyndns.biz +dyndns.info +dyndns.org +dyndns.tv +at-band-camp.net +ath.cx +barrel-of-knowledge.info +barrell-of-knowledge.info +better-than.tv +blogdns.com +blogdns.net +blogdns.org +blogsite.org +boldlygoingnowhere.org +broke-it.net +buyshouses.net +cechire.com +dnsalias.com +dnsalias.net +dnsalias.org +dnsdojo.com +dnsdojo.net +dnsdojo.org +does-it.net +doesntexist.com +doesntexist.org +dontexist.com +dontexist.net +dontexist.org +doomdns.com +doomdns.org +dvrdns.org +dyn-o-saur.com +dynalias.com +dynalias.net +dynalias.org +dynathome.net +dyndns.ws +endofinternet.net +endofinternet.org +endoftheinternet.org +est-a-la-maison.com +est-a-la-masion.com +est-le-patron.com +est-mon-blogueur.com +for-better.biz +for-more.biz +for-our.info +for-some.biz +for-the.biz +forgot.her.name +forgot.his.name +from-ak.com +from-al.com +from-ar.com +from-az.net +from-ca.com +from-co.net +from-ct.com +from-dc.com +from-de.com +from-fl.com +from-ga.com +from-hi.com +from-ia.com +from-id.com +from-il.com +from-in.com +from-ks.com +from-ky.com +from-la.net +from-ma.com +from-md.com +from-me.org +from-mi.com +from-mn.com +from-mo.com +from-ms.com +from-mt.com +from-nc.com +from-nd.com +from-ne.com +from-nh.com +from-nj.com +from-nm.com +from-nv.com +from-ny.net +from-oh.com +from-ok.com +from-or.com +from-pa.com +from-pr.com +from-ri.com +from-sc.com +from-sd.com +from-tn.com +from-tx.com +from-ut.com +from-va.com +from-vt.com +from-wa.com +from-wi.com +from-wv.com +from-wy.com +ftpaccess.cc +fuettertdasnetz.de +game-host.org +game-server.cc +getmyip.com +gets-it.net +go.dyndns.org +gotdns.com +gotdns.org +groks-the.info +groks-this.info +ham-radio-op.net +here-for-more.info +hobby-site.com +hobby-site.org +home.dyndns.org +homedns.org +homeftp.net +homeftp.org +homeip.net +homelinux.com +homelinux.net +homelinux.org +homeunix.com +homeunix.net +homeunix.org +iamallama.com +in-the-band.net +is-a-anarchist.com +is-a-blogger.com +is-a-bookkeeper.com +is-a-bruinsfan.org +is-a-bulls-fan.com +is-a-candidate.org +is-a-caterer.com +is-a-celticsfan.org +is-a-chef.com +is-a-chef.net +is-a-chef.org +is-a-conservative.com +is-a-cpa.com +is-a-cubicle-slave.com +is-a-democrat.com +is-a-designer.com +is-a-doctor.com +is-a-financialadvisor.com +is-a-geek.com +is-a-geek.net +is-a-geek.org +is-a-green.com +is-a-guru.com +is-a-hard-worker.com +is-a-hunter.com +is-a-knight.org +is-a-landscaper.com +is-a-lawyer.com +is-a-liberal.com +is-a-libertarian.com +is-a-linux-user.org +is-a-llama.com +is-a-musician.com +is-a-nascarfan.com +is-a-nurse.com +is-a-painter.com +is-a-patsfan.org +is-a-personaltrainer.com +is-a-photographer.com +is-a-player.com +is-a-republican.com +is-a-rockstar.com +is-a-socialist.com +is-a-soxfan.org +is-a-student.com +is-a-teacher.com +is-a-techie.com +is-a-therapist.com +is-an-accountant.com +is-an-actor.com +is-an-actress.com +is-an-anarchist.com +is-an-artist.com +is-an-engineer.com +is-an-entertainer.com +is-by.us +is-certified.com +is-found.org +is-gone.com +is-into-anime.com +is-into-cars.com +is-into-cartoons.com +is-into-games.com +is-leet.com +is-lost.org +is-not-certified.com +is-saved.org +is-slick.com +is-uberleet.com +is-very-bad.org +is-very-evil.org +is-very-good.org +is-very-nice.org +is-very-sweet.org +is-with-theband.com +isa-geek.com +isa-geek.net +isa-geek.org +isa-hockeynut.com +issmarterthanyou.com +isteingeek.de +istmein.de +kicks-ass.net +kicks-ass.org +knowsitall.info +land-4-sale.us +lebtimnetz.de +leitungsen.de +likes-pie.com +likescandy.com +merseine.nu +mine.nu +misconfused.org +mypets.ws +myphotos.cc +neat-url.com +office-on-the.net +on-the-web.tv +podzone.net +podzone.org +readmyblog.org +saves-the-whales.com +scrapper-site.net +scrapping.cc +selfip.biz +selfip.com +selfip.info +selfip.net +selfip.org +sells-for-less.com +sells-for-u.com +sells-it.net +sellsyourhome.org +servebbs.com +servebbs.net +servebbs.org +serveftp.net +serveftp.org +servegame.org +shacknet.nu +simple-url.com +space-to-rent.com +stuff-4-sale.org +stuff-4-sale.us +teaches-yoga.com +thruhere.net +traeumtgerade.de +webhop.biz +webhop.info +webhop.net +webhop.org +worse-than.tv +writesthisblog.com @@ -299,7 +299,7 @@ util_rmdir(const char *path, gboolean recursive) { if (dir == NULL) return; const char *filename = NULL; - char *fullpath; + char *fullpath = NULL; while ( (filename = g_dir_read_name(dir)) ) { fullpath = g_build_filename(path, filename, NULL); if (!g_file_test(fullpath, G_FILE_TEST_IS_DIR)) { @@ -311,6 +311,10 @@ util_rmdir(const char *path, gboolean recursive) { } g_free(fullpath); } + if (filename == NULL) { + rmdir(path); + } + g_dir_close(dir); } /* util_get_file_content(const char *filename) return: char * (alloc) {{{*/ char * @@ -20,6 +20,9 @@ #include "html.h" #include "plugins.h" #include "local.h" +#ifdef DWB_ADBLOCKER +#include "adblock.h" +#endif static void view_ssl_state(GList *); static const char *dummy_icon[] = { "1 1 1 1 ", " c black", " ", }; @@ -38,7 +41,7 @@ static void view_hovering_over_link_cb(WebKitWebView *, char *, char *, GList *) static gboolean view_mime_type_policy_cb(WebKitWebView *, WebKitWebFrame *, WebKitNetworkRequest *, char *, WebKitWebPolicyDecision *, GList *); static gboolean view_navigation_policy_cb(WebKitWebView *, WebKitWebFrame *, WebKitNetworkRequest *, WebKitWebNavigationAction *, WebKitWebPolicyDecision *, GList *); static gboolean view_new_window_policy_cb(WebKitWebView *, WebKitWebFrame *, WebKitNetworkRequest *, WebKitWebNavigationAction *, WebKitWebPolicyDecision *, GList *); -static void view_resource_request_cb(WebKitWebView *, WebKitWebFrame *, WebKitWebResource *, WebKitNetworkRequest *, WebKitNetworkResponse *, GList *); +/* static void view_resource_request_cb(WebKitWebView *, WebKitWebFrame *, WebKitWebResource *, WebKitNetworkRequest *, WebKitNetworkResponse *, GList *); */ static gboolean view_scroll_cb(GtkWidget *, GdkEventScroll *, GList *); static gboolean view_value_changed_cb(GtkAdjustment *, GList *); static void view_title_cb(WebKitWebView *, GParamSpec *, GList *); @@ -363,6 +366,7 @@ view_new_window_policy_cb(WebKitWebView *web, WebKitWebFrame *frame, return false; }/*}}}*/ +#if 0 /* view_resource_request_cb{{{*/ static void view_resource_request_cb(WebKitWebView *web, WebKitWebFrame *frame, @@ -375,6 +379,7 @@ view_resource_request_cb(WebKitWebView *web, WebKitWebFrame *frame, return; } }/*}}}*/ +#endif /* view_create_plugin_widget_cb {{{*/ static GtkWidget * @@ -800,7 +805,7 @@ view_init_signals(GList *gl) { v->status->signals[SIG_MIME_TYPE] = g_signal_connect(v->web, "mime-type-policy-decision-requested", G_CALLBACK(view_mime_type_policy_cb), gl); v->status->signals[SIG_NAVIGATION] = g_signal_connect(v->web, "navigation-policy-decision-requested", G_CALLBACK(view_navigation_policy_cb), gl); v->status->signals[SIG_NEW_WINDOW] = g_signal_connect(v->web, "new-window-policy-decision-requested", G_CALLBACK(view_new_window_policy_cb), gl); - v->status->signals[SIG_RESOURCE_REQUEST] = g_signal_connect(v->web, "resource-request-starting", G_CALLBACK(view_resource_request_cb), gl); + /* v->status->signals[SIG_RESOURCE_REQUEST] = g_signal_connect(v->web, "resource-request-starting", G_CALLBACK(view_resource_request_cb), gl); */ v->status->signals[SIG_CREATE_PLUGIN_WIDGET] = g_signal_connect(v->web, "create-plugin-widget", G_CALLBACK(view_create_plugin_widget_cb), gl); v->status->signals[SIG_FRAME_CREATED] = g_signal_connect(v->web, "frame-created", G_CALLBACK(view_frame_created_cb), gl); @@ -817,7 +822,7 @@ view_init_signals(GList *gl) { v->status->signals[SIG_ENTRY_KEY_PRESS] = g_signal_connect(v->entry, "key-press-event", G_CALLBACK(view_entry_keypress_cb), gl); v->status->signals[SIG_ENTRY_KEY_RELEASE] = g_signal_connect(v->entry, "key-release-event", G_CALLBACK(view_entry_keyrelease_cb), gl); - //v->status->signals[SIG_ENTRY_ACTIVATE] = g_signal_connect(v->entry, "activate", G_CALLBACK(view_entry_activate_cb), gl); + /* v->status->signals[SIG_ENTRY_ACTIVATE] = g_signal_connect(v->entry, "activate", G_CALLBACK(view_entry_activate_cb), gl); */ v->status->signals[SIG_TAB_BUTTON_PRESS] = g_signal_connect(v->tabevent, "button-press-event", G_CALLBACK(view_tab_button_press_cb), gl); @@ -838,7 +843,6 @@ view_create_web_view() { status->hover_uri = NULL; status->progress = 0; status->allowed_plugins = NULL; - status->plugin_refs = NULL; status->pb_status = 0; status->protect = false; @@ -1159,6 +1163,10 @@ view_add(const char *uri, gboolean background) { view_init_signals(ret); view_init_settings(ret); +#ifdef DWB_ADBLOCKER + if (GET_BOOL("adblocker")) + adblock_connect(ret); +#endif dwb_update_layout(background); if (uri != NULL) { |