Jump to content

Hosts File Update


Icedrake

Recommended Posts

  • Moderators

It's always a hunt on that page to find the download link.

Good, I'm glad it's not just me then.

The most important info on that page is the hardest to find and takes up the smallest space.

Their underpaid web guy needs to put a nice big green DOWNLOAD button on it somewhere.

Backup now & backup often.
It's your digital life - protect it with a backup.
Three things are certain; Birth, Death and loss of data. You control the last.

Link to comment
Share on other sites

  • Moderators

It isn't just you, I've seen the same complaints posted on other forums too. Like you stated they seriously do need a download button, one that's eye-catching and impossible to overlook!

 

Edit:

It is a valid complaint!

Edited by Andavari
Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...

Good, I'm glad it's not just me then.

The most important info on that page is the hardest to find and takes up the smallest space.

Their underpaid web guy needs to put a nice big green DOWNLOAD button on it somewhere.

 

Mta is this what you want ??

 

 

Untitled.jpg

Every line of code written by man can be undone by man

.

"A loser in the real world is still a loser in the net!" - .hack//SIGN

.
Getting old is inevitable,  growing up is optional !!

Link to comment
Share on other sites

  • Moderators

That would do nicely :)

Backup now & backup often.
It's your digital life - protect it with a backup.
Three things are certain; Birth, Death and loss of data. You control the last.

Link to comment
Share on other sites

Okay, so some users said they can't see the download "button" on the MVPS.org website.

Here is something to help out the FireFox users.
 
First you will need to install Greasemonkey if you do not got it already.
 
Then navigate to    %AppData%\Mozilla\Firefox\Profiles\   {random}.default    \gm_scripts
 
Create a folder called "Hosts" , within the newly created folder create a file called  "Hosts.user.js" open the .js file with notepad copy the following code in and save the file.

 

 

 

// ==UserScript==
// @name        Hosts
// @namespace   namespce
// @include     http://winhelp2002.mvps.org/hosts.htm
// @version     1
// @grant       none
// ==/UserScript==

var table = null;
var tables = document.getElementsByTagName('a');
for (var i = 0; i < tables.length; i++) {
	if (tables[i].getAttribute('title') == 'Download hosts.zip') {
		table = tables[i];
	}
}
if (table) {
	var div = document.createElement('div');
	div.innerHTML = '<table><tr><td><input type="button" style="width: 200px; height: 200px; font-weight: bold; background-color:#00FF00; " name="Download" value="Download Hosts"></td></tr></table>';
	div.style.position = 'absolute';
	div.style.top = table.style.top;
	div.style.left = table.offsetLeft;
	table.parentNode.insertBefore(div, table);
}
var inputBoxes = document.getElementsByTagName('input');
for (var i = 0; i < inputBoxes.length; i++) {
	var inputBox = inputBoxes[i];
	if (inputBox.name == 'Download') {
			inputBox.addEventListener("click", getFile,true);
		}
	}
function getFile () {
window.open("http://winhelp2002.mvps.org/hosts.zip");
}

 

 

 

I know the code is sloppy but it works.

Every line of code written by man can be undone by man

.

"A loser in the real world is still a loser in the net!" - .hack//SIGN

.
Getting old is inevitable,  growing up is optional !!

Link to comment
Share on other sites

  • 1 month later...
  • Moderators

another 40 sites removed, I would have thought the net effect would be to grow rather than decrease.

Backup now & backup often.
It's your digital life - protect it with a backup.
Three things are certain; Birth, Death and loss of data. You control the last.

Link to comment
Share on other sites

  • Moderators
another 40 sites removed, I would have thought the net effect would be to grow rather than decrease.

Probably cleaning out old malware and botnet sites that don't exist anymore

 

ADVICE FOR USING CCleaner'S REGISTRY INTEGRITY SECTION

DON'T JUST CLEAN EVERYTHING THAT'S CHECKED OFF.

Do your Registry Cleaning in small bits (at the very least Check-mark by Check-mark)

ALWAYS BACKUP THE ENTRY, YOU NEVER KNOW WHAT YOU'LL BREAK IF YOU DON'T.

Support at https://support.ccleaner.com/s/?language=en_US

Pro users file a PRIORITY SUPPORT via email support@ccleaner.com

Link to comment
Share on other sites

  • Moderators

Yeah, I figured that would be one of the main reasons, but with all the scammer, spammer & general malicious sites out there, I figured there would be more getting flagged & added than there would be getting taken off the list.

 

Just curious I guess.

Backup now & backup often.
It's your digital life - protect it with a backup.
Three things are certain; Birth, Death and loss of data. You control the last.

Link to comment
Share on other sites

  • Moderators

...with all the scammer, spammer & general malicious sites out there, I figured there would be more getting flagged & added than there would be getting taken off the list.

 

I've been manually converting the EasyList "malwaredomains_full" block list for browsers, and then editing it in a text editor to remove all those "^" characters in-mass, and then having all those "||" characters changed in-mass to 127.0.0.1 to make it HOSTS file compatible. Doing that blocks allot more stuff that way! Then with HostsXpert I let it get rid of the duplicates that might have already been added by the installed MVPS HOSTS file.

Edited by Andavari
Link to comment
Share on other sites

  • 1 month later...
  • Moderators

thanks for the reminder @hazelnut

Backup now & backup often.
It's your digital life - protect it with a backup.
Three things are certain; Birth, Death and loss of data. You control the last.

Link to comment
Share on other sites

  • 1 month later...
  • 2 weeks later...

Has anyone heard of this host file ?

 

Not sure if it's included within MVPS as well but this one targets Malware domains not ads

 

Got it from this site.

Every line of code written by man can be undone by man

.

"A loser in the real world is still a loser in the net!" - .hack//SIGN

.
Getting old is inevitable,  growing up is optional !!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.