Blacklist, vs. changing hosts file Programming Web Development by thompsonSensibl Hello friends. I am trying to make an internet blacklist. I've been looking this up, but can't find anything on the internet. What are the advantages of editing the hosts file, as opposed to making some explicit website blocker? Re: Blacklist, vs. changing hosts file Programming Web Development by gon1387 … have more controll on how you will be handling the blacklist. A very generic reason, as what you created is how… possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by GeekByChoiCe …course can't remember all user names on my personal blacklist. So if the developers of DaniWeb could add a …quot;Flag Bad Post" a "Add to my blacklist" and also mark threads, that are created by users… from the personal blacklist somehow different. So im not wasting time reading such threads… Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by usman_24 … will show the available networks within your reach.Your personal blacklist is the key to preventing unwanted spam, scams, and phone… someone calls you from a phone number on your personal blacklist, ... Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by Dani Usman, they’re asking about a DaniWeb blacklist. Not a phone blacklist. Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by ~s.o.s~ Have a look at [URL="http://www.daniweb.com/community-center/daniweb-community-feedback/threads/300989"]this topic[/URL] which talks about something similar. AFAICT, ignore list is the closest you can get when it comes to "blacklist". Re: Blacklist, vs. changing hosts file Programming Web Development by gon1387 ## ERRATA ## It's "programmatically blocking websites" Re: Blacklist, vs. changing hosts file Programming Web Development by thompsonSensibl Thanks. I've started manually editing the hostfile (very simple job) to prevent access to like www.ebay.com. However, I've found out that my **browsers doesn't repond to the host file changes right away**; it takes time. E.g. If I edit the hosts file to prevent access to eBay, it takes like 2 minutes before this takes effect; I can still access… Re: Blacklist, vs. changing hosts file Programming Web Development by gon1387 You can have to flush it to get the changes. in Windows, open your command line then enter this `ipconfig /flushdns` if you're linux: `service nscd reload` You can block it in your router, if you have a GUI panel, it'll be a lot easier. Mostly, it's in the security panel, or administration. The guys in the networking forum will be able to help … Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by GeekByChoiCe Everything that was written as possible solutions are not really good. Downvoting...hmm that doesn't happen a lot (at least in the VB forums) Ignore list ... only hides the post of that user but not visible from the thread list. Also it could happen that this "ignored user" have replied to a thread with the correct answer and then im … Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by WaltP [QUOTE=GeekByChoiCe;]Everything that was written as possible solutions are not really good. Downvoting...hmm that doesn't happen a lot (at least in the VB forums)[/quote] So? It happens enough. And even if [I]in your opinion[/I] is doesn't happen enough, so what? Downvote them and it happens more? IMAO, your reasoning why you won't downvote is … Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by Nick Evan [quote] If the forum showed us reputation like it used to, this would not be a problem.[/quote] Indeed, I would really like to have the old green/red blockies back. Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by WaltP and the post number, too. Re: possible to have a "Personal Blacklist"? Community Center Meta DaniWeb by Dani I just randomly stumbled upon this thread and went to point out that the forums now default to only showing Recommended topics, filtering out those started by users you’re muting in your profile. Reputation count is now shown alongside posts as well, without hovering required. The Google Snooper Hardware and Software Networking by happygeek …/safebrowsing/update?version=goog-black-url:1:1"]Google blacklist, [/URL] the [URL="http://sb.google.com/…version=goog-black-enchash:1:1"]Google encoded/hashed blacklist[/URL] and the [URL="http://sb.google.com…, and one must assume that this is how the blacklist is compiled although Google itself is keeping schtum. What … Cant disallow file upload! Please take a look! Programming Web Development by Sorcher …".js", ".shtml"); foreach ($blacklist as $item) { if(preg_match("/$item\$/i"…->query($query); //Ban file if executable! $blacklist = array(".php", ".phtml",…".js", ".shtml"); foreach ($blacklist as $item) { if(preg_match("/$item\$/i&… Python program to extract IP Addresses from a log file Programming Software Development by RAZ_2 …IP address then extract that IP. blacklist = list(open("/home/asad/blackdb/blacklist", 'r').read().split('\n'))…: newip.append(ip) newblist = blacklist + newip with open("/home/asad/blackdb/blacklist", 'w+') as f:… Naked child causes chaos on Wikipedia Hardware and Software macOS by happygeek …illegal content online, in particular child pornography, introduced a blacklist we all knew it would get controversial one day.… That day has come. That blacklist is used by a number of leading Internet Service … and then added the specific Wikipedia URL to the blacklist in order that ISPs could "protect their customers… Re: Python program to extract IP Addresses from a log file Programming Software Development by tdsan … extract information from my /var/log/audit/audit.log file. blacklist = list(open('/var/log/audit/black_ip.log', 'r').read().split… :21 IF there is a :) print(a) c.clear() newblist = blacklist + newip Please advise. Todd Re: Trying to implement tables in PHP but inside of Wordpress. Programming Web Development by nychick …reason, DATE_FORMAT(date, '%M %d, %Y') FROM `blacklist` ORDER BY `ebayid` ASC LIMIT $start,$end"); …$result = mysql_query("SELECT COUNT(*) AS total FROM `blacklist`"); $row = mysql_fetch_array($result, MYSQL_BOTH); if($counter&… of WordPress [url]http://testsub.thenorthfaceguru.com/blacklist-test-2/[/url] I was thinking maybe … Re: Python program to extract IP Addresses from a log file Programming Software Development by Gribouillis … in c.items() if cnt > 10) c.clear() newblist = blacklist + newip The groupby() groups consecutive entries that happen in the… Re: Python program to extract IP Addresses from a log file Programming Software Development by Gribouillis … :21 IF there is a :) print(a) c.clear() newblist = blacklist + newip Ask The Computer Geek #4 Hardware and Software Microsoft Windows by TheComputerGeek … from that domain to be spam. Several ISP's "blacklist" spammers for abuse of their email server. They consider… request that the message board emails be removed from the blacklist. They may not wish to do this, but it never… Is Google an open relay spammer? Hardware and Software Networking by happygeek … true, this vulnerability would enable an attacker to bypass both blacklist and whitelist filtering as well as easily forge all the… messages are carried by Google's own SMTP servers, the blacklist/whitelist based trust hierarchy that exists between Google’s and… Help with file uploading in PHP Programming Web Development by azegurb … LOG file // what file types do you want to disallow? $blacklist = array(".php", ".phtml", ".php3"…;File upload stopped by extension"; exit; break; } } else { foreach ($blacklist as $item) { if (preg_match("/$item\$/i", $_FILES['file… Trying to implement tables in PHP but inside of Wordpress. Programming Web Development by nychick …("SELECT ebayid, reason, DATE_FORMAT(date, '%M %d, %Y') FROM `blacklist` ORDER BY `ebayid` ASC"); echo "<table border… big page as seen here [url]http://testsub.thenorthfaceguru.com/blacklist/[/url] how can I break it into smaller bits or… Re: Trying to implement tables in PHP but inside of Wordpress. Programming Web Development by Wraithmanilian …("SELECT ebayid, reason, DATE_FORMAT(date, '%M %d, %Y') FROM `blacklist` ORDER BY `ebayid` ASC LIMIT $start,$end"); while($row… dealing with $result = mysql_query("SELECT COUNT(*) AS total FROM `blacklist`"); $row = mysql_fetch_array($result, MYSQL_BOTH); if($counter>=$row['total… Chnage button text onsubmit or onclick Programming Web Development by masocha …if ($this->defaultchecked) [$checked = 1;] $subscriber->blacklist = 0; ] if ($checked != 0) $checkedPrint = …;'; ]else[ if ($subscriber->blacklist == 0) [ $text = … Re: Cross checking a variable to a list of variables Programming Software Development by Ancient Dragon Keep the blacklist in a vector of strings, then use a loop to … user to each of the names in the blacklist. [icode]vector<string> blacklist;[/icode] If you want to ignore case… Need a White List! Programming Web Development by Sorcher …tmp_name'])); $size = intval($_FILES['uploaded_file']['size']); //Ban file if executable! $blacklist = array(".php", ".phtml", ".php3"… ".zip", ".rar", ".html"); foreach ($blacklist as $item) { if(preg_match("/$item\$/i", $_FILES['uploaded_file…