├── .dev-tools ├── README ├── README.md ├── append_to_original_list ├── copytoroot ├── install-run-check-all ├── new-repository ├── pre-deploy ├── trigger-build └── update.me ├── Ads@Disconnect.me └── README.md ├── Badd-Boyz-Hosts └── README.md ├── Hacked-Malware-Websites └── README.md ├── KADhosts@azet12 └── README.md ├── LICENSE ├── NginxBadBotBlocker@mitchellkrogza ├── ACTIVE.hosts ├── ACTIVE.list ├── INACTIVE.hosts ├── INACTIVE.list ├── README.md ├── inactive_db ├── last_execution_time ├── output │ ├── .keep │ ├── HTTP_Analytic │ │ ├── .keep │ │ ├── ACTIVE │ │ │ └── .keep │ │ ├── POTENTIALLY_ACTIVE │ │ │ ├── .keep │ │ │ ├── 000 │ │ │ ├── hosts │ │ │ ├── list │ │ │ └── potentially_active.txt │ │ └── POTENTIALLY_INACTIVE │ │ │ ├── 400 │ │ │ ├── 403 │ │ │ ├── 404 │ │ │ ├── 410 │ │ │ ├── 416 │ │ │ ├── .keep │ │ │ ├── hosts │ │ │ ├── inactive_or_potentially.txt │ │ │ └── list │ ├── continue.txt │ ├── domains │ │ ├── .keep │ │ ├── ACTIVE │ │ │ ├── .keep │ │ │ └── list │ │ ├── INACTIVE │ │ │ ├── .keep │ │ │ └── list │ │ └── INVALID │ │ │ └── .keep │ ├── hosts │ │ ├── .keep │ │ ├── ACTIVE │ │ │ ├── .keep │ │ │ └── hosts │ │ ├── INACTIVE │ │ │ ├── .keep │ │ │ └── hosts │ │ └── INVALID │ │ │ └── .keep │ ├── logs │ │ ├── .keep │ │ ├── dateFormat │ │ │ └── .keep │ │ ├── execution.log │ │ ├── install.log │ │ ├── noReferer │ │ │ └── .keep │ │ ├── percentage │ │ │ ├── .keep │ │ │ └── percentage.txt │ │ └── whois │ │ │ └── .keep │ └── splited │ │ ├── .keep │ │ ├── active.txt │ │ └── inactive.txt ├── percentage.txt ├── tested-list │ ├── .keep │ └── Nginx_Bad_Bot_Blocker.list └── update.me ├── README.md ├── SpotifyAds └── README.md ├── Tracking@Disconnect.me └── README.md ├── UncheckyAds └── README.md ├── adaway.github.io@AdAway └── README.md ├── add.2o7Net └── README.md ├── add.Dead └── README.md ├── add.Risk └── README.md ├── add.Spam └── README.md ├── cameleon@sysctl.org └── README.md ├── currently_under_test ├── justdomains@mirror1.malwaredomains.com └── README.md ├── pl-host-file └── README.md ├── tyzbit └── README.md └── yoyo.org ├── ACTIVE.hosts ├── ACTIVE.list ├── INACTIVE.hosts ├── INACTIVE.list ├── INVALID.hosts ├── INVALID.list ├── README.md ├── inactive_db ├── last_execution_time ├── output ├── .keep ├── HTTP_Analytic │ ├── .keep │ ├── ACTIVE │ │ └── .keep │ ├── POTENTIALLY_ACTIVE │ │ ├── .keep │ │ ├── 000 │ │ ├── hosts │ │ ├── list │ │ └── potentially_active.txt │ └── POTENTIALLY_INACTIVE │ │ ├── 400 │ │ ├── 403 │ │ ├── 404 │ │ ├── 410 │ │ ├── .keep │ │ ├── hosts │ │ ├── inactive_or_potentially.txt │ │ └── list ├── continue.txt ├── domains │ ├── .keep │ ├── ACTIVE │ │ ├── .keep │ │ └── list │ ├── INACTIVE │ │ ├── .keep │ │ └── list │ └── INVALID │ │ ├── .keep │ │ └── list ├── hosts │ ├── .keep │ ├── ACTIVE │ │ ├── .keep │ │ └── hosts │ ├── INACTIVE │ │ ├── .keep │ │ └── hosts │ └── INVALID │ │ ├── .keep │ │ └── hosts ├── logs │ ├── .keep │ ├── dateFormat │ │ └── .keep │ ├── execution.log │ ├── install.log │ ├── noReferer │ │ ├── .keep │ │ └── .vu │ ├── percentage │ │ ├── .keep │ │ └── percentage.txt │ └── whois │ │ └── .keep └── splited │ ├── .keep │ ├── active.txt │ ├── inactive.txt │ └── invalid.txt ├── percentage.txt ├── tested-list ├── .keep └── yoyo.org.list └── update.me /.dev-tools/README: -------------------------------------------------------------------------------- 1 | # %%repoName%% 2 | 3 | `hosts` file downloaded from: **%%DownloadLink%%** 4 | 5 | ## Status (From [Funceble Wiki](https://github.com/funilrys/funceble/wiki/Status/)) 6 | 7 | Here you can find pieces of information about the current returned status. 8 | 9 | ### ACTIVE 10 | 11 | - `whois` let us read the date of expiration 12 | - `nslookup` don't return `server can't find domain-name.me: NXDOMAIN` 13 | 14 | ### INACTIVE 15 | 16 | - `whois` don't let us read the date of expiration 17 | 18 | **AND** 19 | 20 | - `nslookup` return `server can't find domain-name.me: NXDOMAIN` 21 | 22 | ### INVALID 23 | 24 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 25 | 26 | 27 | -------------------------------------------------------------------------------- 28 | 29 | # About Funceble 30 | 31 | To quote the most active user of [Funceble](https://github.com/funilrys/funceble): 32 | 33 | > [Funceble is an] Excellent script for checking ACTIVE, INACTIVE and EXPIRED Domain Names. 34 | 35 | ## Need more information? 36 | 37 | You can get more informations from the [repository](https://github.com/funilrys/funceble) or Funceble's [Wiki](https://github.com/funilrys/funceble/wiki). 38 | -------------------------------------------------------------------------------- /.dev-tools/README.md: -------------------------------------------------------------------------------- 1 | # Dev-Tools 2 | Here're some script that I use to make my work faster :smile: 3 | -------------------------------------------------------------------------------- /.dev-tools/append_to_original_list: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # GitHub : https://github.com/funilrys/funceble 14 | # GitHub : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################# 17 | # Let's contribute !! 18 | ############################################################################### 19 | 20 | # root directory 21 | root=${PWD} 22 | 23 | # Domain list directory 24 | directory=${root}/output/domains/ACTIVE 25 | 26 | # Tested-list directory 27 | testedList=$(find ${root}/tested-list/ -name '*.list') 28 | 29 | # Temp files 30 | tempfile=/var/tmp/appendTemp.$$ 31 | tempFileDump=/var/tmp/toappend.$$ 32 | tempOriginalList=/var/tmp/origin.$$ 33 | 34 | if [[ -f ${directory}/list ]] 35 | then 36 | 37 | sed -r '/^(\s*#|$)/d;' ${directory}/list > ${tempfile} 38 | 39 | # Uncomment this line if there's issue with comment line (should not happens) 40 | # sed -r '/^(\s*#|$)/d;' ${testedList} > ${tempOriginalList} 41 | 42 | 43 | if [[ true == true ]] 44 | then 45 | join -v1 -v2 <(sort ${tempOriginalList}) <(sort ${tempfile}) >> ${tempFileDump} 46 | 47 | echo "$(cat ${tempFileDump})" >> ${testedList} 48 | fi 49 | fi 50 | -------------------------------------------------------------------------------- /.dev-tools/copytoroot: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # GitHub : https://github.com/funilrys/funceble 14 | # GitHub : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################# 17 | # Let's contribute !! 18 | ############################################################################### 19 | 20 | # root directory 21 | root=${PWD} 22 | 23 | # list extension 24 | list_ext='.list' 25 | 26 | # hosts extension 27 | hosts_ext='.hosts' 28 | 29 | # Domain list directory 30 | domain_directory=${root}/output/domains/ 31 | 32 | # Hosts files directory 33 | hosts_directory=${root}/output/hosts/ 34 | 35 | # List of status to copy 36 | toCopy="ACTIVE INACTIVE INVALID" 37 | 38 | # list of file to delete 39 | toDelete="dir-structure funceble iana-domains-db tool" 40 | 41 | # percentage file 42 | percentageFile=${root}/output/logs/percentage/percentage.txt 43 | 44 | # Temporary file 45 | tempfile=/var/tmp/inactive_db.$$ 46 | 47 | # inactive database 48 | inactiveDB=${root}/inactive_db 49 | 50 | for status in $(echo ${toCopy}) 51 | do 52 | if [[ -f ${root}/${status}${list_ext} || -f ${root}/${status}${hosts_ext} ]] 53 | then 54 | rm ${status}* 55 | fi 56 | done 57 | 58 | for list_to_copy in $(find ${domain_directory} -type f -not -name '.keep' -not -name '.gitignore') 59 | do 60 | for status in $(echo ${toCopy}) 61 | do 62 | if [[ ${list_to_copy} =~ ${status} ]] 63 | then 64 | cp ${list_to_copy} ${root}/${status}${list_ext} 65 | fi 66 | done 67 | done 68 | 69 | for hosts_to_copy in $(find ${hosts_directory} -type f -not -name '.keep' -not -name '.gitignore') 70 | do 71 | for status in $(echo ${toCopy}) 72 | do 73 | if [[ ${hosts_to_copy} =~ ${status} ]] 74 | then 75 | cp ${hosts_to_copy} ${root}/${status}${hosts_ext} 76 | fi 77 | done 78 | done 79 | 80 | for deleteMe in $(echo ${toDelete}) 81 | do 82 | if [[ -f ${root}/${deleteMe} ]] 83 | then 84 | rm ${root}/${deleteMe} 85 | fi 86 | done 87 | 88 | if [[ -f ${percentageFile} ]] 89 | then 90 | cp ${percentageFile} ${root} 91 | fi 92 | 93 | if [[ -f ${root}/INACTIVE.list ]] 94 | then 95 | tempFileDump=/var/tmp/toappendtodb.$$ 96 | 97 | sed -r '/^(\s*#|$)/d;' ${root}/INACTIVE.list > ${tempfile} 98 | 99 | if [[ true == true ]] 100 | then 101 | touch ${inactiveDB} 102 | join -v1 -v2 <(sort ${tempfile}) <(sort ${inactiveDB}) >> ${tempFileDump} 103 | fi 104 | 105 | echo "$(cat ${tempFileDump})" >> ${inactiveDB} 106 | fi 107 | -------------------------------------------------------------------------------- /.dev-tools/install-run-check-all: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # GitHub : https://github.com/funilrys/funceble 14 | # GitHub : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | ################################################################################ 21 | # Move into the build directory 22 | ################################################################################ 23 | cd $TRAVIS_BUILD_DIR/.dev-tools/ 24 | 25 | # We get the parent directory which we're gonna call root 26 | root=$(dirname ${PWD}) 27 | 28 | # We set here the maximal of day between the last generation 29 | maximalDay=5 30 | 31 | # Latest dev tool link 32 | toolLink='https://raw.githubusercontent.com/funilrys/funceble/dev/tool' 33 | 34 | # Regex ci skip 35 | regexTravis='\[ci\sskip\]' 36 | ################################################################################ 37 | 38 | ############################### We move to ${root} ############################# 39 | cd ${root} 40 | 41 | ############################### Date to timestamp ############################## 42 | # Convert date 43 | # 44 | # @CalledBy * 45 | ################################################################################ 46 | date2stamp () 47 | { 48 | date --utc --date "${1}" +%s 49 | } 50 | 51 | ############################### Timestamp to date ############################## 52 | # Convert date 53 | # 54 | # @CalledBy * 55 | ################################################################################ 56 | stamp2date () 57 | { 58 | date --utc --date "1970-01-01 ${1} sec" "+%Y-%m-%d %T" 59 | } 60 | 61 | ############################### Date Difference ################################ 62 | # Get the difference between two dates 63 | # 64 | # @CalledBy * 65 | ################################################################################ 66 | dateDiff () 67 | { 68 | case ${1} in 69 | -s) 70 | sec=1 71 | ;; 72 | -m) 73 | sec=60; 74 | ;; 75 | -h) 76 | sec=3600; 77 | ;; 78 | -d) 79 | sec=86400 80 | ;; 81 | *) 82 | sec=86400 83 | ;; 84 | esac 85 | 86 | # We convert the given dates 87 | dte1=$(date2stamp ${1}) 88 | dte2=$(date2stamp ${2}) 89 | diffSec=$((dte2-dte1)) 90 | 91 | 92 | if [[ ${diffSec} < 0 ]] 93 | then 94 | abs=-1 95 | else 96 | abs=1 97 | fi 98 | 99 | echo $((diffSec/sec*abs)) 100 | } 101 | 102 | ############################# Travis Permissions ############################### 103 | # Used to manage/change permissions under travis 104 | # 105 | # @CalledBy startFunceble 106 | ################################################################################ 107 | travisPermissions() 108 | { 109 | if [[ ${travisMode} == true ]] 110 | then 111 | # We set the permissions to avoid some errors 112 | chown -R travis:travis ${TRAVIS_BUILD_DIR} 113 | chgrp -R travis ${TRAVIS_BUILD_DIR} 114 | chmod -R g+rwX ${TRAVIS_BUILD_DIR} 115 | chmod 777 -Rf ${TRAVIS_BUILD_DIR}/.git 116 | find ${TRAVIS_BUILD_DIR} -type d -exec chmod g+s '{}' + 117 | 118 | 119 | if [[ $(git config core.sharedRepository) == '' ]] 120 | then 121 | # We make sure that it's right configured 122 | git config core.sharedRepository group 123 | fi 124 | fi 125 | } 126 | 127 | ################################### Launch Build ############################### 128 | # Commit 'Launch build' 129 | # 130 | # @CalledBy startFunceble 131 | ################################################################################ 132 | launchBuild() 133 | { 134 | date > ${root}/.dev-tools/trigger-build && git add --all && git commit -a -m 'Launch build' && git push origin master 135 | } 136 | 137 | ################################## Start Funceble ############################## 138 | # Start funceble 139 | # 140 | # @CalledBy * 141 | ################################################################################ 142 | startFunceble() 143 | { 144 | # We get the directory 145 | local directory="${root}/${1}" 146 | # We get funceble 147 | local funcebleToStart="${directory}/funceble" 148 | # We contruct tool output 149 | local toolToStart="${directory}/tool" 150 | 151 | echo "${1}" > ${root}/currently_under_test 152 | 153 | # We move into the directory{directory} 154 | cd ${directory} 155 | 156 | # We get the latest dev tool 157 | curl -s ${toolLink} -o ${toolToStart} 158 | 159 | # We change permissions of all files 160 | travisPermissions 161 | 162 | # We change the permissions of tool 163 | chmod +x ${toolToStart} 164 | 165 | # We update funceble 166 | ${toolToStart} --dev --iana --directory-structure -u 167 | 168 | # We change permissions of all files 169 | travisPermissions 170 | 171 | # We change permission of funceble 172 | chmod +x ${funcebleToStart} 173 | 174 | if [[ $(git log -1 | tail -1) =~ ${regexTravis} || $(git log -1 | tail -1) =~ Launch\sbuild && ! -f ${directory}/inactive_checked ]] 175 | then 176 | # We update the tested-list/*.lists file(s) 177 | chmod +x update.me && ./update.me 178 | fi 179 | 180 | pwd && ${funcebleToStart} -v 181 | 182 | # We construct the file we have to look 183 | local fileToLook="$(find ${directory}/tested-list/* -not -name '.keep' -not -name '.gitignore')" 184 | 185 | # This line should disapear in the future (copyright respect) 186 | sort -i ${fileToLook} -o ${fileToLook} 187 | 188 | # We delete all commented line 189 | sed -i -r '/^(\s*#|$)/d;' ${fileToLook} 190 | 191 | 192 | if [[ -f ${directory}/inactive_db && ! -f ${directory}/inactive_checked ]] 193 | then 194 | sed -i -r '/^(\s*#|$)/d;' ${directory}/inactive_db 195 | 196 | # We launch tool 197 | ${toolToStart} --dev --autosave-minutes 10 --commit-autosave-message "${1} inactive_db - Test" --commit-results-message "${1} inactive_db - Results" -u -i 198 | 199 | # We launch funceble 200 | ${funcebleToStart} --cmd-before-end "bash ${root}/.dev-tools/append_to_original_list" --travis -a -ex --plain --split -h -f "${directory}/inactive_db" 201 | 202 | if [[ $(git log -1 | tail -1) =~ ${regexTravis} ]] 203 | then 204 | echo "${date}" > ${directory}/inactive_checked 205 | travisPermissions 206 | 207 | launchBuild 208 | fi 209 | 210 | exit 0 211 | 212 | else 213 | ${toolToStart} --dev --autosave-minutes 10 --commit-autosave-message "${1} - Test" --commit-results-message "${1} - Results" -u -i 214 | ${funcebleToStart} --cmd-before-end "bash ${root}/.dev-tools/copytoroot" --travis -a -ex --plain --split -h -f ${fileToLook} 215 | fi 216 | 217 | if [[ $(git log -1 | tail -1) =~ ${regexTravis} ]] 218 | then 219 | if [[ -f ${root}/currently_under_test ]] 220 | then 221 | travisPermissions 222 | rm ${root}/currently_under_test 223 | fi 224 | 225 | if [[ -f ${directory}/inactive_checked ]] 226 | then 227 | rm ${directory}/inactive_checked 228 | fi 229 | 230 | date > ${directory}/last_execution_time 231 | 232 | travisPermissions 233 | 234 | launchBuild 235 | fi 236 | 237 | exit 0 238 | } 239 | 240 | if [[ -f ${root}/currently_under_test ]] 241 | then 242 | currentlyTested="$(head -1 ${root}/currently_under_test)" 243 | 244 | find ${root}/${currentlyTested}/ -name 'percentage.txt' -exec rm {} \; 245 | 246 | # We start funceble over the current directory 247 | startFunceble "${currentlyTested}" 248 | else 249 | if [[ -f ${root}/currently_under_test ]] 250 | then 251 | travisPermissions 252 | rm ${root}/currently_under_test 253 | fi 254 | 255 | # We use this to look into every directory and execute an update :) 256 | for directory in * 257 | do 258 | # We check if the current readed data is a directory 259 | if [[ -d ${directory} ]] 260 | then 261 | executionTimeFile="${directory}/last_execution_time" 262 | 263 | # We check if percentage.txt exist 264 | if [[ -f "${executionTimeFile}" ]] 265 | then 266 | # We get the date of percentage.txt 267 | dateOfLastExecution="$(head -1 ${executionTimeFile})" 268 | 269 | # We get the difference between now and ${dateOfLastPercentage} 270 | diffenrenceInDay=$(dateDiff "$(date)" "${dateOfLastExecution}") 271 | 272 | if [[ ${dateOfLastExecution} == 'date' ]] 273 | then 274 | # We manage the case that 'date' has been printed into ${executionTimeFile} 275 | diffenrenceInDay=${maximalDay}+2 276 | fi 277 | 278 | if [[ "${diffenrenceInDay}" -ge ${maximalDay} ]] 279 | then 280 | # We start funceble over the current directory 281 | startFunceble "${directory}" 282 | fi 283 | else 284 | # We start funceble over the current directory 285 | startFunceble "${directory}" 286 | fi 287 | else 288 | # We continue our road :) 289 | continue 290 | fi 291 | done 292 | fi 293 | -------------------------------------------------------------------------------- /.dev-tools/new-repository: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # Github : https://github.com/funilrys/funceble 14 | # Github : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | 21 | ###############################  Text Format ################################### 22 | # Red Color 23 | red=$(tput setaf 1) 24 | 25 | # White Color 26 | white=$(tput setaf 7) 27 | 28 | # Bold 29 | bold=$(tput bold) 30 | 31 | # Disable formating 32 | normal=$(tput sgr0) 33 | ################################################################################ 34 | ############################## Default Values ################################## 35 | # Default list name 36 | listName='' 37 | 38 | # Default link to download 39 | linkToDownload='' 40 | 41 | # Parrent dirr 42 | parentDir=$(dirname ${PWD})/ 43 | 44 | # Default rawLink 45 | rawLink='' 46 | 47 | # Default README.md location 48 | readmeDef="${PWD}/README" 49 | 50 | # Default value of repo name 51 | repoName='' 52 | 53 | # Default tested-list Dir 54 | testedDir='tested-list' 55 | 56 | # Update.me filename 57 | updateMe='update.me' 58 | 59 | # Default update location 60 | updateMeDef="${PWD}/${updateMe}" 61 | ################################################################################ 62 | 63 | ################################## Check Variables ############################# 64 | # Used to check "integrity" of main variables 65 | # 66 | # @CalledBy createRepository 67 | ################################################################################ 68 | checkVariables() 69 | { 70 | important=("${listName}" "${rawLink}" "${repoName}") 71 | commands=('n' 'l' 'd') 72 | for i in ${!important[*]} 73 | do 74 | if [[ ${important[${i}]} == "" ]] 75 | then 76 | echo "${red}${bold}Please add ${white}-${commands[${i}]}${normal} ${red}${bold}to your statement${normal}" 77 | echo "" 78 | exit 1 79 | fi 80 | done 81 | } 82 | 83 | ################################## Create Dir ################################## 84 | # Used to apply DRY againt the creation of directory 85 | # 86 | # @CalledBy createRepository 87 | ################################################################################ 88 | createDir() 89 | { 90 | # We initiate the variable we need 91 | local mkdirectory="${1}" 92 | 93 | # We create directory 94 | mkdir "${mkdirectory}" 95 | # We create the file 96 | touch "${mkdirectory}/.keep" 97 | } 98 | 99 | ################################## Create Repository ########################### 100 | # logic aroung the creation of the sub-repository 101 | # 102 | # @CalledBy Arguments Handle section 103 | ################################################################################ 104 | createRepository() 105 | { 106 | checkVariables 107 | if [[ ${dirToCreate} != '' ]] 108 | then 109 | if [[ ! -d ${dirToCreate} ]] 110 | then 111 | # We create the main directory 112 | mkdir ${dirToCreate} 113 | 114 | # We create directory 115 | createDir ${dirToCreate}${testedDir} 116 | else 117 | echo 'Repo Already exist' 118 | exit 1 119 | fi 120 | 121 | # We copy the default files 122 | cp ${readmeDef} ${dirToCreate}/README.md 123 | cp ${updateMeDef} ${dirToCreate} 124 | 125 | # We give execution permission 126 | chmod +x ${dirToCreate}${updateMe} 127 | 128 | # We update the content of ${dirToCreate}${repoToolFileName} 129 | filesContent 130 | fi 131 | } 132 | 133 | ################################ Replace Content ############################### 134 | # sed to apply DRY againt the replacement of the content 135 | # 136 | # @CalledBy filesContent 137 | ################################################################################ 138 | replaceContent() 139 | { 140 | # We initiate the variable we need 141 | local regex="${1}" 142 | local replaceBy="${2}" 143 | local file="${3}" 144 | 145 | # We replace the content of the given file with the given data 146 | sed -i "s|${regex}|${replaceBy}|g" "${file}" 147 | } 148 | 149 | ################################ Replace Content ############################### 150 | # sed to apply DRY againt the replacement of the content 151 | # 152 | # @CalledBy filesContent 153 | ################################################################################ 154 | filesContent() 155 | { 156 | checkVariables 157 | local updateLocation="${dirToCreate}${updateMe}" 158 | local readmeLocation="${dirToCreate}README.md" 159 | 160 | listName=${listName// /_} 161 | 162 | regexListName="%%listName%%" 163 | regexRepoName='%%repoName%%' 164 | regexRawLink='%%rawLink%%' 165 | 166 | # We replace/update the content of update script 167 | 168 | replaceContent "${regexListName}" "${listName}" "${updateLocation}" 169 | replaceContent "${regexRawLink}" "${rawLink}" "${updateLocation}" 170 | 171 | # We replace/update the content of README.md 172 | replaceContent "${regexRepoName}" "${repoName}" "${readmeLocation}" 173 | replaceContent '%%DownloadLink%%' "${rawLink}" "${readmeLocation}" 174 | } 175 | 176 | ################################## Usage ####################################### 177 | # Help function 178 | # 179 | # @CalledBy main, Arguments Handle Section 180 | ################################################################################ 181 | usage() 182 | { 183 | echo "Usage: ${0}" 184 | echo "" 185 | echo " {[ -l 'http://linktothelist.com' ]} && {[ -n 'fileNameOfTheList' ]} && {[ -d 'nameOfTheMainDirectory' ]}" 186 | echo "" 187 | echo " -d Name of the main directory" 188 | echo " -n Name of the file that's gonna be downloaded (${red}${bold}Must be before ${white}-d${normal})" 189 | echo " -l Link to the raw format of the list (${red}${bold}Must be before ${white}-d${normal})" 190 | echo "" 191 | echo "Examples:" 192 | echo "" 193 | echo " ${0} ${red}-n${normal} ${bold}'badreferers'${normal} ${red}-l${normal} ${bold}'https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/Pull_Requests_Here_Please/badreferers.list'${normal} ${red}-d${normal} ${bold}'Badd-Boyz-Hosts@mitchellkrogza'${normal}" 194 | echo " Generate the ${bold}'Badd-Boyz-Hosts@mitchellkrogza'${normal} directory with the list name ${bold}'badreferers.list'${normal}" 195 | echo "" 196 | } 197 | 198 | 199 | ############################### Arguments Handle ############################### 200 | # We use this part to get arguments from command line. 201 | # 202 | # @Requiredby All 203 | ################################################################################ 204 | while [ "$#" -gt 0 ]; do 205 | case "$1" in 206 | # We catch the list name (whithout .list) 207 | -n) 208 | listName="${2}" 209 | shift 2 210 | ;; 211 | # We catch the repoName and create it's directory 212 | -d) # Need to be the last parameter to pass 213 | dirToCreate="${parentDir}${2}/" 214 | repoName="${2}" 215 | createRepository 216 | shift 2 217 | ;; 218 | # We catch the raw link 219 | -l) 220 | rawLink="${2}" 221 | shift 2 222 | ;; 223 | *) 224 | usage 225 | exit 1 226 | ;; 227 | esac 228 | done 229 | -------------------------------------------------------------------------------- /.dev-tools/pre-deploy: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # GitHub : https://github.com/funilrys/funceble 14 | # GitHub : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | cd $TRAVIS_BUILD_DIR 21 | 22 | ################################################################################ 23 | # Remove Remote Added by TravisCI 24 | ################################################################################ 25 | 26 | git remote rm origin 27 | 28 | ################################################################################ 29 | # Add Remote with Secure Key 30 | ################################################################################ 31 | 32 | git remote add origin https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git 33 | 34 | ################################################################################ 35 | # List Remotes ONLY DURING testing - do not do this on live repo / possible key leak 36 | # git remote -v 37 | ################################################################################ 38 | 39 | ################################################################################ 40 | # Set Our Git Variables 41 | ################################################################################ 42 | 43 | git config --global user.email "${GIT_EMAIL}" 44 | git config --global user.name "${GIT_NAME}" 45 | git config --global push.default simple 46 | 47 | ################################################################################ 48 | # Make sure we have checked out master branch 49 | ################################################################################ 50 | 51 | git checkout master 52 | 53 | ################################################################################ 54 | # Run funceble to check for dead domains 55 | ################################################################################ 56 | 57 | sudo bash -x $TRAVIS_BUILD_DIR/.dev-tools/install-run-check-all 58 | 59 | ################################################################################ 60 | # Travis now moves to the before_deploy: section of .travis.yml 61 | ################################################################################ 62 | -------------------------------------------------------------------------------- /.dev-tools/trigger-build: -------------------------------------------------------------------------------- 1 | Fri Nov 10 02:16:29 UTC 2017 2 | -------------------------------------------------------------------------------- /.dev-tools/update.me: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # Github : https://github.com/funilrys/funceble 14 | # Github : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | # Link of the raw file 21 | rawLink='%%rawLink%%' 22 | 23 | # list name 24 | listName='%%listName%%.list' 25 | 26 | # list directory 27 | listDir='tested-list/' 28 | 29 | # Output list 30 | outputList=${listDir}${listName} 31 | 32 | #################################### Update Me ################################ 33 | # Update.me 34 | # 35 | # @CalledBy nobody 36 | ################################################################################ 37 | updateMe() 38 | { 39 | # We get the latest list 40 | curl -s ${rawLink} -o ${outputList} 41 | 42 | # We convert the file 43 | dos2unix ${outputList} 2> /dev/null 44 | } 45 | 46 | updateMe 47 | -------------------------------------------------------------------------------- /Ads@Disconnect.me/README.md: -------------------------------------------------------------------------------- 1 | # Ads@Disconnect.me has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/Ad-filter-list_web_disconnect.me . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /Badd-Boyz-Hosts/README.md: -------------------------------------------------------------------------------- 1 | # Badd-Boyz-Hosts has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/Badd-Boyz-Hosts_git_mitchellkrogza . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /Hacked-Malware-Websites/README.md: -------------------------------------------------------------------------------- 1 | # Hacked-Malware-Websites has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/The-Big-List-of-Hacked-Malware-Web-Sites_git_mitchellkrogza . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /KADhosts@azet12/README.md: -------------------------------------------------------------------------------- 1 | # KADhosts@azet12 has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/KADhosts_git_azet12 . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Nissar Chababy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/INACTIVE.hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 0.0.0.0 1j7740kd.website 5 | 0.0.0.0 1millionusd.xyz 6 | 0.0.0.0 2015god.org 7 | 0.0.0.0 214jaluwobapef.cf 8 | 0.0.0.0 66cpwgln.space 9 | 0.0.0.0 6hopping.com 10 | 0.0.0.0 8kisses.eu 11 | 0.0.0.0 9icmzvn6.website 12 | 0.0.0.0 abcdefh.xyz 13 | 0.0.0.0 abcdeg.xyz 14 | 0.0.0.0 acgs.tk 15 | 0.0.0.0 adultfullhd.com 16 | 0.0.0.0 advocatemsk.ru 17 | 0.0.0.0 advokateg.xyz 18 | 0.0.0.0 alert-fdm.xyz 19 | 0.0.0.0 alert-fjg.xyz 20 | 0.0.0.0 alert-hgd.xyz 21 | 0.0.0.0 alert-jdh.xyz 22 | 0.0.0.0 alfabot.xyz 23 | 0.0.0.0 alphacarolinas.com 24 | 0.0.0.0 anal-acrobats.hol.es 25 | 0.0.0.0 andpolice.com 26 | 0.0.0.0 angry-fermi-7633.arukascloud.io 27 | 0.0.0.0 aosheng-tech.com 28 | 0.0.0.0 apple.com-webbrowsing-security.review 29 | 0.0.0.0 apple.com-webbrowsing-security.science 30 | 0.0.0.0 arendovalka.xyz 31 | 0.0.0.0 artdestshop.eu 32 | 0.0.0.0 aruplighting.com 33 | 0.0.0.0 atley.eu.pn 34 | 0.0.0.0 autoua.top 35 | 0.0.0.0 aviva-limoux.com 36 | 0.0.0.0 avtoarenda.by 37 | 0.0.0.0 axbocz.net 38 | 0.0.0.0 b2b-lounge.com 39 | 0.0.0.0 bangla-chat-uk-paralud.ga 40 | 0.0.0.0 battleforupdating.site 41 | 0.0.0.0 begalka.xyz 42 | 0.0.0.0 bezlimitko.xyz 43 | 0.0.0.0 bitcoins-live.ru 44 | 0.0.0.0 biteg.xyz 45 | 0.0.0.0 bjgugu.net.ua 46 | 0.0.0.0 boltalko.xyz 47 | 0.0.0.0 bookmark4you.com.biz 48 | 0.0.0.0 bosefux.esy.es 49 | 0.0.0.0 braindaily.xyz 50 | 0.0.0.0 brateg.xyz 51 | 0.0.0.0 budilneg.xyz 52 | 0.0.0.0 buketeg.xyz 53 | 0.0.0.0 bukleteg.xyz 54 | 0.0.0.0 buy-cheap-online.info 55 | 0.0.0.0 callmd5map.com 56 | 0.0.0.0 candlehandmade.com 57 | 0.0.0.0 cheatcode-lita12.rhcloud.com 58 | 0.0.0.0 compliance-alexa.top 59 | 0.0.0.0 compliance-alexa.xyz 60 | 0.0.0.0 compliance-alex.top 61 | 0.0.0.0 compliance-alex.xyz 62 | 0.0.0.0 compliance-andrew.top 63 | 0.0.0.0 compliance-andrew.xyz 64 | 0.0.0.0 compliance-barak.top 65 | 0.0.0.0 compliance-barak.xyz 66 | 0.0.0.0 compliance-brian.top 67 | 0.0.0.0 compliance-brian.xyz 68 | 0.0.0.0 compliance-donald.xyz 69 | 0.0.0.0 compliance-don.top 70 | 0.0.0.0 compliance-don.xyz 71 | 0.0.0.0 compliance-elena.top 72 | 0.0.0.0 compliance-elena.xyz 73 | 0.0.0.0 compliance-fred.top 74 | 0.0.0.0 compliance-fred.xyz 75 | 0.0.0.0 compliance-george.top 76 | 0.0.0.0 compliance-george.xyz 77 | 0.0.0.0 compliance-irvin.top 78 | 0.0.0.0 compliance-irvin.xyz 79 | 0.0.0.0 compliance-ivan.top 80 | 0.0.0.0 compliance-ivan.xyz 81 | 0.0.0.0 compliance-jack.top 82 | 0.0.0.0 compliance-jane.top 83 | 0.0.0.0 compliance-jessica.top 84 | 0.0.0.0 compliance-jess.top 85 | 0.0.0.0 compliance-john.top 86 | 0.0.0.0 compliance-josh.top 87 | 0.0.0.0 compliance-julianna.top 88 | 0.0.0.0 compliance-julia.top 89 | 0.0.0.0 compliance-margo.top 90 | 0.0.0.0 compliance-mark.top 91 | 0.0.0.0 compliance-mary.top 92 | 0.0.0.0 compliance-nelson.top 93 | 0.0.0.0 compliance-olga.top 94 | 0.0.0.0 compliance-viktor.top 95 | 0.0.0.0 compliance-walter.top 96 | 0.0.0.0 compliance-walt.top 97 | 0.0.0.0 compliance-willy.top 98 | 0.0.0.0 cookie-law-enforcement-aa.xyz 99 | 0.0.0.0 cookie-law-enforcement-ee.xyz 100 | 0.0.0.0 cookie-law-enforcement-ff.xyz 101 | 0.0.0.0 cookie-law-enforcement-hh.xyz 102 | 0.0.0.0 cosmeticswomens-womensports.rhcloud.com 103 | 0.0.0.0 cyclobenzaprinevstizanidine.blogspot.com 104 | 0.0.0.0 cymbaltaandtizanidine.blogspot.com 105 | 0.0.0.0 dikqlyremy.info 106 | 0.0.0.0 dogsrun.net 107 | 0.0.0.0 elektrischezi.canalblog.com 108 | 0.0.0.0 elmifarhangi.com 109 | 0.0.0.0 erectile.bid 110 | 0.0.0.0 esfchat.tk 111 | 0.0.0.0 eu-cookie-law.blogspot.com 112 | 0.0.0.0 exhibitionplus.eu 113 | 0.0.0.0 eywords-monitoring-your-success.com 114 | 0.0.0.0 ff30236ddef1465f88547e760973d70a.com 115 | 0.0.0.0 fivedwld.cf 116 | 0.0.0.0 floridamhca.org 117 | 0.0.0.0 free-laptop-reward.com 118 | 0.0.0.0 free-share-buttons.blogspot.com 119 | 0.0.0.0 free-social-buttons.com 120 | 0.0.0.0 free-social-buttons.xyz 121 | 0.0.0.0 free-traffic.xyz 122 | 0.0.0.0 frvo.alptandem.ru 123 | 0.0.0.0 fuck-paid-share-buttons.xyz 124 | 0.0.0.0 fyxabomiw.ru 125 | 0.0.0.0 get-your-social-buttons.info 126 | 0.0.0.0 ghernnqr.skyrock.com 127 | 0.0.0.0 glastecfilms.com.my 128 | 0.0.0.0 gok-kasten.net 129 | 0.0.0.0 gopro-online.info 130 | 0.0.0.0 g.starmoe.xyz 131 | 0.0.0.0 herehloadibs.cf 132 | 0.0.0.0 hkdiiohi.skyrock.com 133 | 0.0.0.0 homegardenlova.com 134 | 0.0.0.0 hoverboard360.es 135 | 0.0.0.0 hoverboard360.nl 136 | 0.0.0.0 humanorightswatch.org 137 | 0.0.0.0 hyhj.info 138 | 0.0.0.0 iccornacircri.cf 139 | 0.0.0.0 iinstalll-fii1leis.jus0wil.pp.ua 140 | 0.0.0.0 ilovevitaly.xyz 141 | 0.0.0.0 increasewwwtraffic.info 142 | 0.0.0.0 internetproviderstucson.com 143 | 0.0.0.0 istizanidineanarcoticdrug.blogspot.com 144 | 0.0.0.0 iwantmyfreecash.com 145 | 0.0.0.0 jewelryandfiligree.com 146 | 0.0.0.0 jus0wil.pp.ua 147 | 0.0.0.0 justprofit.xyz 148 | 0.0.0.0 kenaba.su 149 | 0.0.0.0 kmgamex.cf 150 | 0.0.0.0 labafydjxa.su 151 | 0.0.0.0 law-check-eight.xyz 152 | 0.0.0.0 law-check-nine.xyz 153 | 0.0.0.0 law-check-seven.xyz 154 | 0.0.0.0 law-check-two.xyz 155 | 0.0.0.0 levaquin750mg.blogspot.com 156 | 0.0.0.0 liran-locks.com 157 | 0.0.0.0 liveinternet.ro 158 | 0.0.0.0 loftdigital.eu 159 | 0.0.0.0 marcogrup.com 160 | 0.0.0.0 mezaruk.info 161 | 0.0.0.0 m-google.xyz 162 | 0.0.0.0 mlvc4zzw.space 163 | 0.0.0.0 my-cash-bot.co 164 | 0.0.0.0 nbsproject.ru 165 | 0.0.0.0 net-profits.xyz 166 | 0.0.0.0 nevansk.ru 167 | 0.0.0.0 new-apps.ru 168 | 0.0.0.0 northfacestore.online 169 | 0.0.0.0 norththeface.store 170 | 0.0.0.0 nottyu.xyz 171 | 0.0.0.0 osb.se11.ru 172 | 0.0.0.0 picture-group.com 173 | 0.0.0.0 pijoto.net 174 | 0.0.0.0 pochemychka.net 175 | 0.0.0.0 popander.mobi 176 | 0.0.0.0 popup-fdm.xyz 177 | 0.0.0.0 popup-hgd.xyz 178 | 0.0.0.0 popup-jdh.xyz 179 | 0.0.0.0 porno-video-chati.ru 180 | 0.0.0.0 prizestohandle.club 181 | 0.0.0.0 profitfx.online 182 | 0.0.0.0 profitsport.club 183 | 0.0.0.0 profitsport.club 184 | 0.0.0.0 pr-ten.de 185 | 0.0.0.0 quit-smoking.ga 186 | 0.0.0.0 rcpmda.ikan1080.xyz 187 | 0.0.0.0 remorcicomerciale.ro 188 | 0.0.0.0 rezeptiblud.ru 189 | 0.0.0.0 sarm.tk 190 | 0.0.0.0 sbetodiodnye-lampy.ru 191 | 0.0.0.0 scanner-george.top 192 | 0.0.0.0 scanner-irvin.top 193 | 0.0.0.0 scanner-ivan.top 194 | 0.0.0.0 scanner-jack.top 195 | 0.0.0.0 scanner-jane.top 196 | 0.0.0.0 scanner-jessica.top 197 | 0.0.0.0 scanner-jess.top 198 | 0.0.0.0 scanner-john.top 199 | 0.0.0.0 scanner-josh.top 200 | 0.0.0.0 scanner-julianna.top 201 | 0.0.0.0 scanner-julia.top 202 | 0.0.0.0 scanner-margo.top 203 | 0.0.0.0 scanner-mark.top 204 | 0.0.0.0 scanner-marwin.top 205 | 0.0.0.0 scanner-mary.top 206 | 0.0.0.0 scanner-nelson.top 207 | 0.0.0.0 scanner-olga.top 208 | 0.0.0.0 scanner-viktor.top 209 | 0.0.0.0 scanner-walter.top 210 | 0.0.0.0 scanner-walt.top 211 | 0.0.0.0 scanner-willy.top 212 | 0.0.0.0 secret.xn--oogle-wmc.com 213 | 0.0.0.0 seomarketings.online 214 | 0.0.0.0 sexyteens.hol.es 215 | 0.0.0.0 shell-pmr.ru 216 | 0.0.0.0 shitmovs.com 217 | 0.0.0.0 shop.xz618.com 218 | 0.0.0.0 signal03.ru 219 | 0.0.0.0 sitevaluation.org 220 | 0.0.0.0 sizeplus.work 221 | 0.0.0.0 snip.to 222 | 0.0.0.0 snts.shell-pmr.ru 223 | 0.0.0.0 social-button.xyz 224 | 0.0.0.0 social-s-ggg.xyz 225 | 0.0.0.0 social-s-hhh.xyz 226 | 0.0.0.0 social-s-iii.xyz 227 | 0.0.0.0 sohoindia.net 228 | 0.0.0.0 swinginwithme.ru 229 | 0.0.0.0 tech4master.com 230 | 0.0.0.0 tengohydar.tk 231 | 0.0.0.0 thin.me.pn 232 | 0.0.0.0 titelhelden.eu 233 | 0.0.0.0 tizanidineandgabapentin.blogspot.com 234 | 0.0.0.0 tizanidinedrugtest.blogspot.com 235 | 0.0.0.0 tizanidinehydrochloride4mgstreetvalue.blogspot.com 236 | 0.0.0.0 tizanidinesideeffectsweightloss.blogspot.com 237 | 0.0.0.0 tizanidinezanaflex.blogspot.com 238 | 0.0.0.0 trichizobswiv.agddns.net 239 | 0.0.0.0 tula.howotorg.ru 240 | 0.0.0.0 turizm.bz 241 | 0.0.0.0 u17795.netangels.ru 242 | 0.0.0.0 varikozdok.ru 243 | 0.0.0.0 voluumtracker1.com 244 | 0.0.0.0 vysigy.su 245 | 0.0.0.0 watchmyfb.pl 246 | 0.0.0.0 weightatraining.com 247 | 0.0.0.0 williamrobsonproperty.com 248 | 0.0.0.0 xitjw.info 249 | 0.0.0.0 xn----7sbaphztdjeboffeiof6c.xn--p1ai 250 | 0.0.0.0 youraticles.pl 251 | 0.0.0.0 yourserverisdown.com 252 | 0.0.0.0 zapiszto.pl 253 | 0.0.0.0 zatjmuzu.info 254 | 0.0.0.0 zawyna.ua 255 | 0.0.0.0 zebramart.ru 256 | 0.0.0.0 zigarettenonl.canalblog.com 257 | 0.0.0.0 zigarettenonlinekaufen.tumblr.com 258 | 0.0.0.0 zixizop.net.ru 259 | 0.0.0.0 zmoda.hostreo.com 260 | 0.0.0.0 zocaparj.kz 261 | 0.0.0.0 zynax.ua 262 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/INACTIVE.list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 1j7740kd.website 5 | 1millionusd.xyz 6 | 2015god.org 7 | 214jaluwobapef.cf 8 | 66cpwgln.space 9 | 6hopping.com 10 | 8kisses.eu 11 | 9icmzvn6.website 12 | abcdefh.xyz 13 | abcdeg.xyz 14 | acgs.tk 15 | adultfullhd.com 16 | advocatemsk.ru 17 | advokateg.xyz 18 | alert-fdm.xyz 19 | alert-fjg.xyz 20 | alert-hgd.xyz 21 | alert-jdh.xyz 22 | alfabot.xyz 23 | alphacarolinas.com 24 | anal-acrobats.hol.es 25 | andpolice.com 26 | angry-fermi-7633.arukascloud.io 27 | aosheng-tech.com 28 | apple.com-webbrowsing-security.review 29 | apple.com-webbrowsing-security.science 30 | arendovalka.xyz 31 | artdestshop.eu 32 | aruplighting.com 33 | atley.eu.pn 34 | autoua.top 35 | aviva-limoux.com 36 | avtoarenda.by 37 | axbocz.net 38 | b2b-lounge.com 39 | bangla-chat-uk-paralud.ga 40 | battleforupdating.site 41 | begalka.xyz 42 | bezlimitko.xyz 43 | bitcoins-live.ru 44 | biteg.xyz 45 | bjgugu.net.ua 46 | boltalko.xyz 47 | bookmark4you.com.biz 48 | bosefux.esy.es 49 | braindaily.xyz 50 | brateg.xyz 51 | budilneg.xyz 52 | buketeg.xyz 53 | bukleteg.xyz 54 | buy-cheap-online.info 55 | callmd5map.com 56 | candlehandmade.com 57 | cheatcode-lita12.rhcloud.com 58 | compliance-alexa.top 59 | compliance-alexa.xyz 60 | compliance-alex.top 61 | compliance-alex.xyz 62 | compliance-andrew.top 63 | compliance-andrew.xyz 64 | compliance-barak.top 65 | compliance-barak.xyz 66 | compliance-brian.top 67 | compliance-brian.xyz 68 | compliance-donald.xyz 69 | compliance-don.top 70 | compliance-don.xyz 71 | compliance-elena.top 72 | compliance-elena.xyz 73 | compliance-fred.top 74 | compliance-fred.xyz 75 | compliance-george.top 76 | compliance-george.xyz 77 | compliance-irvin.top 78 | compliance-irvin.xyz 79 | compliance-ivan.top 80 | compliance-ivan.xyz 81 | compliance-jack.top 82 | compliance-jane.top 83 | compliance-jessica.top 84 | compliance-jess.top 85 | compliance-john.top 86 | compliance-josh.top 87 | compliance-julianna.top 88 | compliance-julia.top 89 | compliance-margo.top 90 | compliance-mark.top 91 | compliance-mary.top 92 | compliance-nelson.top 93 | compliance-olga.top 94 | compliance-viktor.top 95 | compliance-walter.top 96 | compliance-walt.top 97 | compliance-willy.top 98 | cookie-law-enforcement-aa.xyz 99 | cookie-law-enforcement-ee.xyz 100 | cookie-law-enforcement-ff.xyz 101 | cookie-law-enforcement-hh.xyz 102 | cosmeticswomens-womensports.rhcloud.com 103 | cyclobenzaprinevstizanidine.blogspot.com 104 | cymbaltaandtizanidine.blogspot.com 105 | dikqlyremy.info 106 | dogsrun.net 107 | elektrischezi.canalblog.com 108 | elmifarhangi.com 109 | erectile.bid 110 | esfchat.tk 111 | eu-cookie-law.blogspot.com 112 | exhibitionplus.eu 113 | eywords-monitoring-your-success.com 114 | ff30236ddef1465f88547e760973d70a.com 115 | fivedwld.cf 116 | floridamhca.org 117 | free-laptop-reward.com 118 | free-share-buttons.blogspot.com 119 | free-social-buttons.com 120 | free-social-buttons.xyz 121 | free-traffic.xyz 122 | frvo.alptandem.ru 123 | fuck-paid-share-buttons.xyz 124 | fyxabomiw.ru 125 | get-your-social-buttons.info 126 | ghernnqr.skyrock.com 127 | glastecfilms.com.my 128 | gok-kasten.net 129 | gopro-online.info 130 | g.starmoe.xyz 131 | herehloadibs.cf 132 | hkdiiohi.skyrock.com 133 | homegardenlova.com 134 | hoverboard360.es 135 | hoverboard360.nl 136 | humanorightswatch.org 137 | hyhj.info 138 | iccornacircri.cf 139 | iinstalll-fii1leis.jus0wil.pp.ua 140 | ilovevitaly.xyz 141 | increasewwwtraffic.info 142 | internetproviderstucson.com 143 | istizanidineanarcoticdrug.blogspot.com 144 | iwantmyfreecash.com 145 | jewelryandfiligree.com 146 | jus0wil.pp.ua 147 | justprofit.xyz 148 | kenaba.su 149 | kmgamex.cf 150 | labafydjxa.su 151 | law-check-eight.xyz 152 | law-check-nine.xyz 153 | law-check-seven.xyz 154 | law-check-two.xyz 155 | levaquin750mg.blogspot.com 156 | liran-locks.com 157 | liveinternet.ro 158 | loftdigital.eu 159 | marcogrup.com 160 | mezaruk.info 161 | m-google.xyz 162 | mlvc4zzw.space 163 | my-cash-bot.co 164 | nbsproject.ru 165 | net-profits.xyz 166 | nevansk.ru 167 | new-apps.ru 168 | northfacestore.online 169 | norththeface.store 170 | nottyu.xyz 171 | osb.se11.ru 172 | picture-group.com 173 | pijoto.net 174 | pochemychka.net 175 | popander.mobi 176 | popup-fdm.xyz 177 | popup-hgd.xyz 178 | popup-jdh.xyz 179 | porno-video-chati.ru 180 | prizestohandle.club 181 | profitfx.online 182 | profitsport.club 183 | profitsport.club 184 | pr-ten.de 185 | quit-smoking.ga 186 | rcpmda.ikan1080.xyz 187 | remorcicomerciale.ro 188 | rezeptiblud.ru 189 | sarm.tk 190 | sbetodiodnye-lampy.ru 191 | scanner-george.top 192 | scanner-irvin.top 193 | scanner-ivan.top 194 | scanner-jack.top 195 | scanner-jane.top 196 | scanner-jessica.top 197 | scanner-jess.top 198 | scanner-john.top 199 | scanner-josh.top 200 | scanner-julianna.top 201 | scanner-julia.top 202 | scanner-margo.top 203 | scanner-mark.top 204 | scanner-marwin.top 205 | scanner-mary.top 206 | scanner-nelson.top 207 | scanner-olga.top 208 | scanner-viktor.top 209 | scanner-walter.top 210 | scanner-walt.top 211 | scanner-willy.top 212 | secret.xn--oogle-wmc.com 213 | seomarketings.online 214 | sexyteens.hol.es 215 | shell-pmr.ru 216 | shitmovs.com 217 | shop.xz618.com 218 | signal03.ru 219 | sitevaluation.org 220 | sizeplus.work 221 | snip.to 222 | snts.shell-pmr.ru 223 | social-button.xyz 224 | social-s-ggg.xyz 225 | social-s-hhh.xyz 226 | social-s-iii.xyz 227 | sohoindia.net 228 | swinginwithme.ru 229 | tech4master.com 230 | tengohydar.tk 231 | thin.me.pn 232 | titelhelden.eu 233 | tizanidineandgabapentin.blogspot.com 234 | tizanidinedrugtest.blogspot.com 235 | tizanidinehydrochloride4mgstreetvalue.blogspot.com 236 | tizanidinesideeffectsweightloss.blogspot.com 237 | tizanidinezanaflex.blogspot.com 238 | trichizobswiv.agddns.net 239 | tula.howotorg.ru 240 | turizm.bz 241 | u17795.netangels.ru 242 | varikozdok.ru 243 | voluumtracker1.com 244 | vysigy.su 245 | watchmyfb.pl 246 | weightatraining.com 247 | williamrobsonproperty.com 248 | xitjw.info 249 | xn----7sbaphztdjeboffeiof6c.xn--p1ai 250 | youraticles.pl 251 | yourserverisdown.com 252 | zapiszto.pl 253 | zatjmuzu.info 254 | zawyna.ua 255 | zebramart.ru 256 | zigarettenonl.canalblog.com 257 | zigarettenonlinekaufen.tumblr.com 258 | zixizop.net.ru 259 | zmoda.hostreo.com 260 | zocaparj.kz 261 | zynax.ua 262 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/README.md: -------------------------------------------------------------------------------- 1 | # NginxBadBotBlocker@mitchellkrogza 2 | 3 | `hosts` file downloaded from: **https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-referrers.list** 4 | 5 | ## Status (From [Funceble Wiki](https://github.com/funilrys/funceble/wiki/Status/)) 6 | 7 | Here you can find pieces of information about the current returned status. 8 | 9 | ### ACTIVE 10 | 11 | - `whois` let us read the date of expiration 12 | - `nslookup` don't return `server can't find domain-name.me: NXDOMAIN` 13 | 14 | ### INACTIVE 15 | 16 | - `whois` don't let us read the date of expiration 17 | 18 | **AND** 19 | 20 | - `nslookup` return `server can't find domain-name.me: NXDOMAIN` 21 | 22 | ### INVALID 23 | 24 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 25 | 26 | 27 | -------------------------------------------------------------------------------- 28 | 29 | # About Funceble 30 | 31 | To quote the most active user of [Funceble](https://github.com/funilrys/funceble): 32 | 33 | > [Funceble is an] Excellent script for checking ACTIVE, INACTIVE and EXPIRED Domain Names. 34 | 35 | ## Need more information? 36 | 37 | You can get more informations from the [repository](https://github.com/funilrys/funceble) or Funceble's [Wiki](https://github.com/funilrys/funceble/wiki). 38 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/inactive_db: -------------------------------------------------------------------------------- 1 | 1j7740kd.website 2 | 1millionusd.xyz 3 | 2015god.org 4 | 214jaluwobapef.cf 5 | 66cpwgln.space 6 | 6hopping.com 7 | 8kisses.eu 8 | 9icmzvn6.website 9 | abcdefh.xyz 10 | abcdeg.xyz 11 | advocatemsk.ru 12 | advokateg.xyz 13 | alert-fdm.xyz 14 | alert-fjg.xyz 15 | alert-hgd.xyz 16 | alert-jdh.xyz 17 | alfabot.xyz 18 | alphacarolinas.com 19 | anal-acrobats.hol.es 20 | andpolice.com 21 | angry-fermi-7633.arukascloud.io 22 | aosheng-tech.com 23 | apple.com-webbrowsing-security.review 24 | apple.com-webbrowsing-security.science 25 | arendovalka.xyz 26 | artdestshop.eu 27 | aruplighting.com 28 | atley.eu.pn 29 | aviva-limoux.com 30 | avtoarenda.by 31 | axbocz.net 32 | b2b-lounge.com 33 | bangla-chat-uk-paralud.ga 34 | battleforupdating.site 35 | begalka.xyz 36 | bestkfiledxd.cf 37 | bezlimitko.xyz 38 | biteg.xyz 39 | bjgugu.net.ua 40 | boltalko.xyz 41 | bookmark4you.com.biz 42 | bosefux.esy.es 43 | braindaily.xyz 44 | brateg.xyz 45 | budilneg.xyz 46 | buketeg.xyz 47 | bukleteg.xyz 48 | buy-cheap-online.info 49 | callmd5map.com 50 | candlehandmade.com 51 | cheatcode-lita12.rhcloud.com 52 | compliance-alexa.xyz 53 | compliance-alex.xyz 54 | compliance-andrew.xyz 55 | compliance-barak.xyz 56 | compliance-brian.xyz 57 | compliance-donald.xyz 58 | compliance-don.xyz 59 | compliance-elena.xyz 60 | compliance-fred.xyz 61 | compliance-george.xyz 62 | compliance-irvin.xyz 63 | compliance-ivan.xyz 64 | compliance-john.top 65 | compliance-josh.top 66 | compliance-julianna.top 67 | compliance-julia.top 68 | compliance-margo.top 69 | compliance-mark.top 70 | compliance-mary.top 71 | compliance-nelson.top 72 | compliance-olga.top 73 | compliance-viktor.top 74 | compliance-walter.top 75 | compliance-walt.top 76 | compliance-willy.top 77 | cookie-law-enforcement-aa.xyz 78 | cookie-law-enforcement-ee.xyz 79 | cookie-law-enforcement-ff.xyz 80 | cookie-law-enforcement-hh.xyz 81 | cosmeticswomens-womensports.rhcloud.com 82 | cyclobenzaprinevstizanidine.blogspot.com 83 | cymbaltaandtizanidine.blogspot.com 84 | dikqlyremy.info 85 | dogsrun.net 86 | elektrischezi.canalblog.com 87 | elmifarhangi.com 88 | erectile.bid 89 | esfchat.tk 90 | eu-cookie-law.blogspot.com 91 | exhibitionplus.eu 92 | eywords-monitoring-your-success.com 93 | ff30236ddef1465f88547e760973d70a.com 94 | fivedwld.cf 95 | free-laptop-reward.com 96 | free-share-buttons.blogspot.com 97 | free-social-buttons.xyz 98 | free-traffic.xyz 99 | frvo.alptandem.ru 100 | fuck-paid-share-buttons.xyz 101 | fyxabomiw.ru 102 | ghernnqr.skyrock.com 103 | glastecfilms.com.my 104 | gok-kasten.net 105 | gopro-online.info 106 | g.starmoe.xyz 107 | herehloadibs.cf 108 | hkdiiohi.skyrock.com 109 | homegardenlova.com 110 | hoverboard360.es 111 | hoverboard360.nl 112 | humanorightswatch.org 113 | hyhj.info 114 | iccornacircri.cf 115 | iinstalll-fii1leis.jus0wil.pp.ua 116 | ilovevitaly.xyz 117 | increasewwwtraffic.info 118 | internetproviderstucson.com 119 | istizanidineanarcoticdrug.blogspot.com 120 | iwantmyfreecash.com 121 | jewelryandfiligree.com 122 | jus0wil.pp.ua 123 | justprofit.xyz 124 | kenaba.su 125 | kmgamex.cf 126 | labafydjxa.su 127 | law-check-eight.xyz 128 | law-check-nine.xyz 129 | law-check-seven.xyz 130 | law-check-two.xyz 131 | levaquin750mg.blogspot.com 132 | liran-locks.com 133 | liveinternet.ro 134 | loftdigital.eu 135 | marcogrup.com 136 | medicines-choice.com 137 | mezaruk.info 138 | m-google.xyz 139 | mlvc4zzw.space 140 | nbsproject.ru 141 | net-profits.xyz 142 | nevansk.ru 143 | new-apps.ru 144 | northfacestore.online 145 | norththeface.store 146 | nottyu.xyz 147 | olympescort.com 148 | osb.se11.ru 149 | picture-group.com 150 | pijoto.net 151 | pochemychka.net 152 | popander.mobi 153 | popup-fdm.xyz 154 | popup-hgd.xyz 155 | popup-jdh.xyz 156 | porno-video-chati.ru 157 | profitfx.online 158 | profitsport.club 159 | pr-ten.de 160 | quit-smoking.ga 161 | rcpmda.ikan1080.xyz 162 | remorcicomerciale.ro 163 | rezeptiblud.ru 164 | sarm.tk 165 | sbetodiodnye-lampy.ru 166 | scanner-george.top 167 | scanner-irvin.top 168 | scanner-ivan.top 169 | scanner-jack.top 170 | scanner-jane.top 171 | scanner-jessica.top 172 | scanner-jess.top 173 | scanner-john.top 174 | scanner-josh.top 175 | scanner-julianna.top 176 | scanner-julia.top 177 | scanner-margo.top 178 | scanner-mark.top 179 | scanner-marwin.top 180 | scanner-mary.top 181 | scanner-nelson.top 182 | scanner-olga.top 183 | scanner-viktor.top 184 | scanner-walter.top 185 | scanner-walt.top 186 | scanner-willy.top 187 | secret.xn--oogle-wmc.com 188 | seomarketings.online 189 | sexyteens.hol.es 190 | shell-pmr.ru 191 | shop.xz618.com 192 | signal03.ru 193 | sizeplus.work 194 | snip.to 195 | snts.shell-pmr.ru 196 | social-button.xyz 197 | social-s-ggg.xyz 198 | social-s-hhh.xyz 199 | social-s-iii.xyz 200 | sohoindia.net 201 | swinginwithme.ru 202 | tech4master.com 203 | tengohydar.tk 204 | thin.me.pn 205 | titelhelden.eu 206 | tizanidineandgabapentin.blogspot.com 207 | tizanidinedrugtest.blogspot.com 208 | tizanidinehydrochloride4mgstreetvalue.blogspot.com 209 | tizanidinesideeffectsweightloss.blogspot.com 210 | tizanidinezanaflex.blogspot.com 211 | trichizobswiv.agddns.net 212 | tula.howotorg.ru 213 | turizm.bz 214 | u17795.netangels.ru 215 | varikozdok.ru 216 | videositename.com 217 | voluumtracker1.com 218 | vysigy.su 219 | weightatraining.com 220 | wildworld.site 221 | williamrobsonproperty.com 222 | xitjw.info 223 | xn----7sbaphztdjeboffeiof6c.xn--p1ai 224 | youraticles.pl 225 | yourserverisdown.com 226 | zapiszto.pl 227 | zatjmuzu.info 228 | zawyna.ua 229 | zigarettenonl.canalblog.com 230 | zigarettenonlinekaufen.tumblr.com 231 | zixizop.net.ru 232 | zmoda.hostreo.com 233 | zocaparj.kz 234 | zynax.ua 235 | acgs.tk 236 | adultfullhd.com 237 | autoua.top 238 | bestkfiledxd.cf 239 | bitcoins-live.ru 240 | compliance-alexa.top 241 | compliance-alex.top 242 | compliance-andrew.top 243 | compliance-barak.top 244 | compliance-brian.top 245 | compliance-don.top 246 | compliance-elena.top 247 | compliance-fred.top 248 | compliance-george.top 249 | compliance-irvin.top 250 | compliance-ivan.top 251 | compliance-jack.top 252 | compliance-jane.top 253 | compliance-jessica.top 254 | compliance-jess.top 255 | floridamhca.org 256 | free-social-buttons.com 257 | get-your-social-buttons.info 258 | medicines-choice.com 259 | my-cash-bot.co 260 | olympescort.com 261 | prizestohandle.club 262 | shitmovs.com 263 | sitevaluation.org 264 | videositename.com 265 | watchmyfb.pl 266 | wildworld.site 267 | zebramart.ru 268 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/last_execution_time: -------------------------------------------------------------------------------- 1 | Sat Oct 28 17:19:29 UTC 2017 2 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/logs/ 4 | !/hosts/ 5 | !/splited/ 6 | !/HTTP_Analytic/ 7 | !/domains/ 8 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/POTENTIALLY_ACTIVE/ 5 | !/POTENTIALLY_INACTIVE/ 6 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_ACTIVE/000: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 1j7740kd.website 5 | 2015god.org 6 | 214jaluwobapef.cf 7 | 66cpwgln.space 8 | 6hopping.com 9 | 8kisses.eu 10 | 9icmzvn6.website 11 | abcdefh.xyz 12 | abcdeg.xyz 13 | acgs.tk 14 | adultfullhd.com 15 | advocatemsk.ru 16 | advokateg.xyz 17 | alert-fdm.xyz 18 | alert-fjg.xyz 19 | alert-hgd.xyz 20 | alert-jdh.xyz 21 | alfabot.xyz 22 | alphacarolinas.com 23 | anal-acrobats.hol.es 24 | andpolice.com 25 | angry-fermi-7633.arukascloud.io 26 | aosheng-tech.com 27 | apple.com-webbrowsing-security.review 28 | apple.com-webbrowsing-security.science 29 | arendovalka.xyz 30 | artdestshop.eu 31 | aruplighting.com 32 | atley.eu.pn 33 | autoua.top 34 | aviva-limoux.com 35 | avtoarenda.by 36 | axbocz.net 37 | b2b-lounge.com 38 | bangla-chat-uk-paralud.ga 39 | battleforupdating.site 40 | begalka.xyz 41 | bezlimitko.xyz 42 | bitcoins-live.ru 43 | biteg.xyz 44 | bjgugu.net.ua 45 | boltalko.xyz 46 | bookmark4you.com.biz 47 | bosefux.esy.es 48 | braindaily.xyz 49 | brateg.xyz 50 | budilneg.xyz 51 | buketeg.xyz 52 | bukleteg.xyz 53 | buy-cheap-online.info 54 | callmd5map.com 55 | candlehandmade.com 56 | cheatcode-lita12.rhcloud.com 57 | compliance-alexa.top 58 | compliance-alexa.xyz 59 | compliance-alex.top 60 | compliance-alex.xyz 61 | compliance-andrew.top 62 | compliance-andrew.xyz 63 | compliance-barak.top 64 | compliance-barak.xyz 65 | compliance-brian.top 66 | compliance-brian.xyz 67 | compliance-donald.xyz 68 | compliance-don.top 69 | compliance-don.xyz 70 | compliance-elena.top 71 | compliance-elena.xyz 72 | compliance-fred.top 73 | compliance-fred.xyz 74 | compliance-george.top 75 | compliance-george.xyz 76 | compliance-irvin.top 77 | compliance-irvin.xyz 78 | compliance-ivan.top 79 | compliance-ivan.xyz 80 | compliance-jack.top 81 | compliance-jane.top 82 | compliance-jessica.top 83 | compliance-jess.top 84 | compliance-john.top 85 | compliance-josh.top 86 | compliance-julianna.top 87 | compliance-julia.top 88 | compliance-margo.top 89 | compliance-mark.top 90 | compliance-mary.top 91 | compliance-nelson.top 92 | compliance-olga.top 93 | compliance-viktor.top 94 | compliance-walter.top 95 | compliance-walt.top 96 | compliance-willy.top 97 | cookie-law-enforcement-aa.xyz 98 | cookie-law-enforcement-ee.xyz 99 | cookie-law-enforcement-ff.xyz 100 | cookie-law-enforcement-hh.xyz 101 | cosmeticswomens-womensports.rhcloud.com 102 | dikqlyremy.info 103 | dogsrun.net 104 | elmifarhangi.com 105 | erectile.bid 106 | esfchat.tk 107 | exhibitionplus.eu 108 | eywords-monitoring-your-success.com 109 | ff30236ddef1465f88547e760973d70a.com 110 | fivedwld.cf 111 | floridamhca.org 112 | free-laptop-reward.com 113 | free-social-buttons.com 114 | free-social-buttons.xyz 115 | free-traffic.xyz 116 | frvo.alptandem.ru 117 | fuck-paid-share-buttons.xyz 118 | fyxabomiw.ru 119 | get-your-social-buttons.info 120 | glastecfilms.com.my 121 | gok-kasten.net 122 | gopro-online.info 123 | g.starmoe.xyz 124 | herehloadibs.cf 125 | homegardenlova.com 126 | hoverboard360.es 127 | hoverboard360.nl 128 | humanorightswatch.org 129 | iccornacircri.cf 130 | ilovevitaly.xyz 131 | increasewwwtraffic.info 132 | internetproviderstucson.com 133 | iwantmyfreecash.com 134 | jewelryandfiligree.com 135 | justprofit.xyz 136 | kenaba.su 137 | kmgamex.cf 138 | law-check-eight.xyz 139 | law-check-nine.xyz 140 | law-check-seven.xyz 141 | law-check-two.xyz 142 | liran-locks.com 143 | loftdigital.eu 144 | marcogrup.com 145 | mezaruk.info 146 | m-google.xyz 147 | mlvc4zzw.space 148 | my-cash-bot.co 149 | nbsproject.ru 150 | net-profits.xyz 151 | new-apps.ru 152 | northfacestore.online 153 | norththeface.store 154 | nottyu.xyz 155 | osb.se11.ru 156 | picture-group.com 157 | pijoto.net 158 | pochemychka.net 159 | popander.mobi 160 | popup-fdm.xyz 161 | popup-hgd.xyz 162 | popup-jdh.xyz 163 | prizestohandle.club 164 | profitfx.online 165 | profitsport.club 166 | profitsport.club 167 | pr-ten.de 168 | quit-smoking.ga 169 | rcpmda.ikan1080.xyz 170 | rezeptiblud.ru 171 | sbetodiodnye-lampy.ru 172 | scanner-george.top 173 | scanner-irvin.top 174 | scanner-ivan.top 175 | scanner-jack.top 176 | scanner-jane.top 177 | scanner-jessica.top 178 | scanner-jess.top 179 | scanner-john.top 180 | scanner-josh.top 181 | scanner-julianna.top 182 | scanner-julia.top 183 | scanner-margo.top 184 | scanner-mark.top 185 | scanner-marwin.top 186 | scanner-mary.top 187 | scanner-nelson.top 188 | scanner-olga.top 189 | scanner-viktor.top 190 | scanner-walter.top 191 | scanner-walt.top 192 | scanner-willy.top 193 | seomarketings.online 194 | sexyteens.hol.es 195 | shell-pmr.ru 196 | shitmovs.com 197 | signal03.ru 198 | sitevaluation.org 199 | sizeplus.work 200 | snip.to 201 | snts.shell-pmr.ru 202 | social-button.xyz 203 | social-s-ggg.xyz 204 | social-s-hhh.xyz 205 | social-s-iii.xyz 206 | sohoindia.net 207 | swinginwithme.ru 208 | tech4master.com 209 | tengohydar.tk 210 | thin.me.pn 211 | titelhelden.eu 212 | trichizobswiv.agddns.net 213 | tula.howotorg.ru 214 | turizm.bz 215 | u17795.netangels.ru 216 | voluumtracker1.com 217 | vysigy.su 218 | watchmyfb.pl 219 | weightatraining.com 220 | williamrobsonproperty.com 221 | xitjw.info 222 | xn----7sbaphztdjeboffeiof6c.xn--p1ai 223 | youraticles.pl 224 | yourserverisdown.com 225 | zapiszto.pl 226 | zatjmuzu.info 227 | zawyna.ua 228 | zebramart.ru 229 | zixizop.net.ru 230 | zmoda.hostreo.com 231 | zocaparj.kz 232 | zynax.ua 233 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_ACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 0.0.0.0 1j7740kd.website 5 | 0.0.0.0 2015god.org 6 | 0.0.0.0 214jaluwobapef.cf 7 | 0.0.0.0 66cpwgln.space 8 | 0.0.0.0 6hopping.com 9 | 0.0.0.0 8kisses.eu 10 | 0.0.0.0 9icmzvn6.website 11 | 0.0.0.0 abcdefh.xyz 12 | 0.0.0.0 abcdeg.xyz 13 | 0.0.0.0 acgs.tk 14 | 0.0.0.0 adultfullhd.com 15 | 0.0.0.0 advocatemsk.ru 16 | 0.0.0.0 advokateg.xyz 17 | 0.0.0.0 alert-fdm.xyz 18 | 0.0.0.0 alert-fjg.xyz 19 | 0.0.0.0 alert-hgd.xyz 20 | 0.0.0.0 alert-jdh.xyz 21 | 0.0.0.0 alfabot.xyz 22 | 0.0.0.0 alphacarolinas.com 23 | 0.0.0.0 anal-acrobats.hol.es 24 | 0.0.0.0 andpolice.com 25 | 0.0.0.0 angry-fermi-7633.arukascloud.io 26 | 0.0.0.0 aosheng-tech.com 27 | 0.0.0.0 apple.com-webbrowsing-security.review 28 | 0.0.0.0 apple.com-webbrowsing-security.science 29 | 0.0.0.0 arendovalka.xyz 30 | 0.0.0.0 artdestshop.eu 31 | 0.0.0.0 aruplighting.com 32 | 0.0.0.0 atley.eu.pn 33 | 0.0.0.0 autoua.top 34 | 0.0.0.0 aviva-limoux.com 35 | 0.0.0.0 avtoarenda.by 36 | 0.0.0.0 axbocz.net 37 | 0.0.0.0 b2b-lounge.com 38 | 0.0.0.0 bangla-chat-uk-paralud.ga 39 | 0.0.0.0 battleforupdating.site 40 | 0.0.0.0 begalka.xyz 41 | 0.0.0.0 bezlimitko.xyz 42 | 0.0.0.0 bitcoins-live.ru 43 | 0.0.0.0 biteg.xyz 44 | 0.0.0.0 bjgugu.net.ua 45 | 0.0.0.0 boltalko.xyz 46 | 0.0.0.0 bookmark4you.com.biz 47 | 0.0.0.0 bosefux.esy.es 48 | 0.0.0.0 braindaily.xyz 49 | 0.0.0.0 brateg.xyz 50 | 0.0.0.0 budilneg.xyz 51 | 0.0.0.0 buketeg.xyz 52 | 0.0.0.0 bukleteg.xyz 53 | 0.0.0.0 buy-cheap-online.info 54 | 0.0.0.0 callmd5map.com 55 | 0.0.0.0 candlehandmade.com 56 | 0.0.0.0 cheatcode-lita12.rhcloud.com 57 | 0.0.0.0 compliance-alexa.top 58 | 0.0.0.0 compliance-alexa.xyz 59 | 0.0.0.0 compliance-alex.top 60 | 0.0.0.0 compliance-alex.xyz 61 | 0.0.0.0 compliance-andrew.top 62 | 0.0.0.0 compliance-andrew.xyz 63 | 0.0.0.0 compliance-barak.top 64 | 0.0.0.0 compliance-barak.xyz 65 | 0.0.0.0 compliance-brian.top 66 | 0.0.0.0 compliance-brian.xyz 67 | 0.0.0.0 compliance-donald.xyz 68 | 0.0.0.0 compliance-don.top 69 | 0.0.0.0 compliance-don.xyz 70 | 0.0.0.0 compliance-elena.top 71 | 0.0.0.0 compliance-elena.xyz 72 | 0.0.0.0 compliance-fred.top 73 | 0.0.0.0 compliance-fred.xyz 74 | 0.0.0.0 compliance-george.top 75 | 0.0.0.0 compliance-george.xyz 76 | 0.0.0.0 compliance-irvin.top 77 | 0.0.0.0 compliance-irvin.xyz 78 | 0.0.0.0 compliance-ivan.top 79 | 0.0.0.0 compliance-ivan.xyz 80 | 0.0.0.0 compliance-jack.top 81 | 0.0.0.0 compliance-jane.top 82 | 0.0.0.0 compliance-jessica.top 83 | 0.0.0.0 compliance-jess.top 84 | 0.0.0.0 compliance-john.top 85 | 0.0.0.0 compliance-josh.top 86 | 0.0.0.0 compliance-julianna.top 87 | 0.0.0.0 compliance-julia.top 88 | 0.0.0.0 compliance-margo.top 89 | 0.0.0.0 compliance-mark.top 90 | 0.0.0.0 compliance-mary.top 91 | 0.0.0.0 compliance-nelson.top 92 | 0.0.0.0 compliance-olga.top 93 | 0.0.0.0 compliance-viktor.top 94 | 0.0.0.0 compliance-walter.top 95 | 0.0.0.0 compliance-walt.top 96 | 0.0.0.0 compliance-willy.top 97 | 0.0.0.0 cookie-law-enforcement-aa.xyz 98 | 0.0.0.0 cookie-law-enforcement-ee.xyz 99 | 0.0.0.0 cookie-law-enforcement-ff.xyz 100 | 0.0.0.0 cookie-law-enforcement-hh.xyz 101 | 0.0.0.0 cosmeticswomens-womensports.rhcloud.com 102 | 0.0.0.0 dikqlyremy.info 103 | 0.0.0.0 dogsrun.net 104 | 0.0.0.0 elmifarhangi.com 105 | 0.0.0.0 erectile.bid 106 | 0.0.0.0 esfchat.tk 107 | 0.0.0.0 exhibitionplus.eu 108 | 0.0.0.0 eywords-monitoring-your-success.com 109 | 0.0.0.0 ff30236ddef1465f88547e760973d70a.com 110 | 0.0.0.0 fivedwld.cf 111 | 0.0.0.0 floridamhca.org 112 | 0.0.0.0 free-laptop-reward.com 113 | 0.0.0.0 free-social-buttons.com 114 | 0.0.0.0 free-social-buttons.xyz 115 | 0.0.0.0 free-traffic.xyz 116 | 0.0.0.0 frvo.alptandem.ru 117 | 0.0.0.0 fuck-paid-share-buttons.xyz 118 | 0.0.0.0 fyxabomiw.ru 119 | 0.0.0.0 get-your-social-buttons.info 120 | 0.0.0.0 glastecfilms.com.my 121 | 0.0.0.0 gok-kasten.net 122 | 0.0.0.0 gopro-online.info 123 | 0.0.0.0 g.starmoe.xyz 124 | 0.0.0.0 herehloadibs.cf 125 | 0.0.0.0 homegardenlova.com 126 | 0.0.0.0 hoverboard360.es 127 | 0.0.0.0 hoverboard360.nl 128 | 0.0.0.0 humanorightswatch.org 129 | 0.0.0.0 iccornacircri.cf 130 | 0.0.0.0 ilovevitaly.xyz 131 | 0.0.0.0 increasewwwtraffic.info 132 | 0.0.0.0 internetproviderstucson.com 133 | 0.0.0.0 iwantmyfreecash.com 134 | 0.0.0.0 jewelryandfiligree.com 135 | 0.0.0.0 justprofit.xyz 136 | 0.0.0.0 kenaba.su 137 | 0.0.0.0 kmgamex.cf 138 | 0.0.0.0 law-check-eight.xyz 139 | 0.0.0.0 law-check-nine.xyz 140 | 0.0.0.0 law-check-seven.xyz 141 | 0.0.0.0 law-check-two.xyz 142 | 0.0.0.0 liran-locks.com 143 | 0.0.0.0 loftdigital.eu 144 | 0.0.0.0 marcogrup.com 145 | 0.0.0.0 mezaruk.info 146 | 0.0.0.0 m-google.xyz 147 | 0.0.0.0 mlvc4zzw.space 148 | 0.0.0.0 my-cash-bot.co 149 | 0.0.0.0 nbsproject.ru 150 | 0.0.0.0 net-profits.xyz 151 | 0.0.0.0 new-apps.ru 152 | 0.0.0.0 northfacestore.online 153 | 0.0.0.0 norththeface.store 154 | 0.0.0.0 nottyu.xyz 155 | 0.0.0.0 osb.se11.ru 156 | 0.0.0.0 picture-group.com 157 | 0.0.0.0 pijoto.net 158 | 0.0.0.0 pochemychka.net 159 | 0.0.0.0 popander.mobi 160 | 0.0.0.0 popup-fdm.xyz 161 | 0.0.0.0 popup-hgd.xyz 162 | 0.0.0.0 popup-jdh.xyz 163 | 0.0.0.0 prizestohandle.club 164 | 0.0.0.0 profitfx.online 165 | 0.0.0.0 profitsport.club 166 | 0.0.0.0 profitsport.club 167 | 0.0.0.0 pr-ten.de 168 | 0.0.0.0 quit-smoking.ga 169 | 0.0.0.0 rcpmda.ikan1080.xyz 170 | 0.0.0.0 rezeptiblud.ru 171 | 0.0.0.0 sbetodiodnye-lampy.ru 172 | 0.0.0.0 scanner-george.top 173 | 0.0.0.0 scanner-irvin.top 174 | 0.0.0.0 scanner-ivan.top 175 | 0.0.0.0 scanner-jack.top 176 | 0.0.0.0 scanner-jane.top 177 | 0.0.0.0 scanner-jessica.top 178 | 0.0.0.0 scanner-jess.top 179 | 0.0.0.0 scanner-john.top 180 | 0.0.0.0 scanner-josh.top 181 | 0.0.0.0 scanner-julianna.top 182 | 0.0.0.0 scanner-julia.top 183 | 0.0.0.0 scanner-margo.top 184 | 0.0.0.0 scanner-mark.top 185 | 0.0.0.0 scanner-marwin.top 186 | 0.0.0.0 scanner-mary.top 187 | 0.0.0.0 scanner-nelson.top 188 | 0.0.0.0 scanner-olga.top 189 | 0.0.0.0 scanner-viktor.top 190 | 0.0.0.0 scanner-walter.top 191 | 0.0.0.0 scanner-walt.top 192 | 0.0.0.0 scanner-willy.top 193 | 0.0.0.0 seomarketings.online 194 | 0.0.0.0 sexyteens.hol.es 195 | 0.0.0.0 shell-pmr.ru 196 | 0.0.0.0 shitmovs.com 197 | 0.0.0.0 signal03.ru 198 | 0.0.0.0 sitevaluation.org 199 | 0.0.0.0 sizeplus.work 200 | 0.0.0.0 snip.to 201 | 0.0.0.0 snts.shell-pmr.ru 202 | 0.0.0.0 social-button.xyz 203 | 0.0.0.0 social-s-ggg.xyz 204 | 0.0.0.0 social-s-hhh.xyz 205 | 0.0.0.0 social-s-iii.xyz 206 | 0.0.0.0 sohoindia.net 207 | 0.0.0.0 swinginwithme.ru 208 | 0.0.0.0 tech4master.com 209 | 0.0.0.0 tengohydar.tk 210 | 0.0.0.0 thin.me.pn 211 | 0.0.0.0 titelhelden.eu 212 | 0.0.0.0 trichizobswiv.agddns.net 213 | 0.0.0.0 tula.howotorg.ru 214 | 0.0.0.0 turizm.bz 215 | 0.0.0.0 u17795.netangels.ru 216 | 0.0.0.0 voluumtracker1.com 217 | 0.0.0.0 vysigy.su 218 | 0.0.0.0 watchmyfb.pl 219 | 0.0.0.0 weightatraining.com 220 | 0.0.0.0 williamrobsonproperty.com 221 | 0.0.0.0 xitjw.info 222 | 0.0.0.0 xn----7sbaphztdjeboffeiof6c.xn--p1ai 223 | 0.0.0.0 youraticles.pl 224 | 0.0.0.0 yourserverisdown.com 225 | 0.0.0.0 zapiszto.pl 226 | 0.0.0.0 zatjmuzu.info 227 | 0.0.0.0 zawyna.ua 228 | 0.0.0.0 zebramart.ru 229 | 0.0.0.0 zixizop.net.ru 230 | 0.0.0.0 zmoda.hostreo.com 231 | 0.0.0.0 zocaparj.kz 232 | 0.0.0.0 zynax.ua 233 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_ACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 1j7740kd.website 5 | 2015god.org 6 | 214jaluwobapef.cf 7 | 66cpwgln.space 8 | 6hopping.com 9 | 8kisses.eu 10 | 9icmzvn6.website 11 | abcdefh.xyz 12 | abcdeg.xyz 13 | acgs.tk 14 | adultfullhd.com 15 | advocatemsk.ru 16 | advokateg.xyz 17 | alert-fdm.xyz 18 | alert-fjg.xyz 19 | alert-hgd.xyz 20 | alert-jdh.xyz 21 | alfabot.xyz 22 | alphacarolinas.com 23 | anal-acrobats.hol.es 24 | andpolice.com 25 | angry-fermi-7633.arukascloud.io 26 | aosheng-tech.com 27 | apple.com-webbrowsing-security.review 28 | apple.com-webbrowsing-security.science 29 | arendovalka.xyz 30 | artdestshop.eu 31 | aruplighting.com 32 | atley.eu.pn 33 | autoua.top 34 | aviva-limoux.com 35 | avtoarenda.by 36 | axbocz.net 37 | b2b-lounge.com 38 | bangla-chat-uk-paralud.ga 39 | battleforupdating.site 40 | begalka.xyz 41 | bezlimitko.xyz 42 | bitcoins-live.ru 43 | biteg.xyz 44 | bjgugu.net.ua 45 | boltalko.xyz 46 | bookmark4you.com.biz 47 | bosefux.esy.es 48 | braindaily.xyz 49 | brateg.xyz 50 | budilneg.xyz 51 | buketeg.xyz 52 | bukleteg.xyz 53 | buy-cheap-online.info 54 | callmd5map.com 55 | candlehandmade.com 56 | cheatcode-lita12.rhcloud.com 57 | compliance-alexa.top 58 | compliance-alexa.xyz 59 | compliance-alex.top 60 | compliance-alex.xyz 61 | compliance-andrew.top 62 | compliance-andrew.xyz 63 | compliance-barak.top 64 | compliance-barak.xyz 65 | compliance-brian.top 66 | compliance-brian.xyz 67 | compliance-donald.xyz 68 | compliance-don.top 69 | compliance-don.xyz 70 | compliance-elena.top 71 | compliance-elena.xyz 72 | compliance-fred.top 73 | compliance-fred.xyz 74 | compliance-george.top 75 | compliance-george.xyz 76 | compliance-irvin.top 77 | compliance-irvin.xyz 78 | compliance-ivan.top 79 | compliance-ivan.xyz 80 | compliance-jack.top 81 | compliance-jane.top 82 | compliance-jessica.top 83 | compliance-jess.top 84 | compliance-john.top 85 | compliance-josh.top 86 | compliance-julianna.top 87 | compliance-julia.top 88 | compliance-margo.top 89 | compliance-mark.top 90 | compliance-mary.top 91 | compliance-nelson.top 92 | compliance-olga.top 93 | compliance-viktor.top 94 | compliance-walter.top 95 | compliance-walt.top 96 | compliance-willy.top 97 | cookie-law-enforcement-aa.xyz 98 | cookie-law-enforcement-ee.xyz 99 | cookie-law-enforcement-ff.xyz 100 | cookie-law-enforcement-hh.xyz 101 | cosmeticswomens-womensports.rhcloud.com 102 | dikqlyremy.info 103 | dogsrun.net 104 | elmifarhangi.com 105 | erectile.bid 106 | esfchat.tk 107 | exhibitionplus.eu 108 | eywords-monitoring-your-success.com 109 | ff30236ddef1465f88547e760973d70a.com 110 | fivedwld.cf 111 | floridamhca.org 112 | free-laptop-reward.com 113 | free-social-buttons.com 114 | free-social-buttons.xyz 115 | free-traffic.xyz 116 | frvo.alptandem.ru 117 | fuck-paid-share-buttons.xyz 118 | fyxabomiw.ru 119 | get-your-social-buttons.info 120 | glastecfilms.com.my 121 | gok-kasten.net 122 | gopro-online.info 123 | g.starmoe.xyz 124 | herehloadibs.cf 125 | homegardenlova.com 126 | hoverboard360.es 127 | hoverboard360.nl 128 | humanorightswatch.org 129 | iccornacircri.cf 130 | ilovevitaly.xyz 131 | increasewwwtraffic.info 132 | internetproviderstucson.com 133 | iwantmyfreecash.com 134 | jewelryandfiligree.com 135 | justprofit.xyz 136 | kenaba.su 137 | kmgamex.cf 138 | law-check-eight.xyz 139 | law-check-nine.xyz 140 | law-check-seven.xyz 141 | law-check-two.xyz 142 | liran-locks.com 143 | loftdigital.eu 144 | marcogrup.com 145 | mezaruk.info 146 | m-google.xyz 147 | mlvc4zzw.space 148 | my-cash-bot.co 149 | nbsproject.ru 150 | net-profits.xyz 151 | new-apps.ru 152 | northfacestore.online 153 | norththeface.store 154 | nottyu.xyz 155 | osb.se11.ru 156 | picture-group.com 157 | pijoto.net 158 | pochemychka.net 159 | popander.mobi 160 | popup-fdm.xyz 161 | popup-hgd.xyz 162 | popup-jdh.xyz 163 | prizestohandle.club 164 | profitfx.online 165 | profitsport.club 166 | profitsport.club 167 | pr-ten.de 168 | quit-smoking.ga 169 | rcpmda.ikan1080.xyz 170 | rezeptiblud.ru 171 | sbetodiodnye-lampy.ru 172 | scanner-george.top 173 | scanner-irvin.top 174 | scanner-ivan.top 175 | scanner-jack.top 176 | scanner-jane.top 177 | scanner-jessica.top 178 | scanner-jess.top 179 | scanner-john.top 180 | scanner-josh.top 181 | scanner-julianna.top 182 | scanner-julia.top 183 | scanner-margo.top 184 | scanner-mark.top 185 | scanner-marwin.top 186 | scanner-mary.top 187 | scanner-nelson.top 188 | scanner-olga.top 189 | scanner-viktor.top 190 | scanner-walter.top 191 | scanner-walt.top 192 | scanner-willy.top 193 | seomarketings.online 194 | sexyteens.hol.es 195 | shell-pmr.ru 196 | shitmovs.com 197 | signal03.ru 198 | sitevaluation.org 199 | sizeplus.work 200 | snip.to 201 | snts.shell-pmr.ru 202 | social-button.xyz 203 | social-s-ggg.xyz 204 | social-s-hhh.xyz 205 | social-s-iii.xyz 206 | sohoindia.net 207 | swinginwithme.ru 208 | tech4master.com 209 | tengohydar.tk 210 | thin.me.pn 211 | titelhelden.eu 212 | trichizobswiv.agddns.net 213 | tula.howotorg.ru 214 | turizm.bz 215 | u17795.netangels.ru 216 | voluumtracker1.com 217 | vysigy.su 218 | watchmyfb.pl 219 | weightatraining.com 220 | williamrobsonproperty.com 221 | xitjw.info 222 | xn----7sbaphztdjeboffeiof6c.xn--p1ai 223 | youraticles.pl 224 | yourserverisdown.com 225 | zapiszto.pl 226 | zatjmuzu.info 227 | zawyna.ua 228 | zebramart.ru 229 | zixizop.net.ru 230 | zmoda.hostreo.com 231 | zocaparj.kz 232 | zynax.ua 233 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/400: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | asdfg.pro 5 | asdfz.pro 6 | audiobangout.com 7 | f5mtrack.com 8 | zeroredirect1.com 9 | zeroredirect5.com 10 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/403: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 123kuma.com 5 | 2020iscoming.info 6 | 24x7-server-support.site 7 | 7xc4n.com 8 | acortarurl.es 9 | adexprts.com 10 | adnotbad.com 11 | adultmeetonline.info 12 | advancedsoftwaresupport.com 13 | agreda.pluto.ro 14 | aihelen.net 15 | airlandsea.info 16 | albumsuper.info 17 | all-number.com 18 | android-systems.ru 19 | apiadanaknet-a.akamaihd.net 20 | apiallgeniusinfo-a.akamaihd.net 21 | apiappenableinfo-a.akamaihd.net 22 | apibatbrowsecom-a.akamaihd.net 23 | apibetweenlinesn-a.akamaihd.net 24 | apibrowsesmartne-a.akamaihd.net 25 | apidiamondatanet-a.akamaihd.net 26 | apidigidocketnet-a.akamaihd.net 27 | apifasterlightin-a.akamaihd.net 28 | apiholdingmypage-a.akamaihd.net 29 | apiitsthirteende-a.akamaihd.net 30 | apilinkswiftco-a.akamaihd.net 31 | apiluckyleapnet-a.akamaihd.net 32 | apimegabrowsebiz-a.akamaihd.net 33 | apimossnetinfo-a.akamaihd.net 34 | apimountainbikei-a.akamaihd.net 35 | apioasisspacenet-a.akamaihd.net 36 | apioutoboxnet-a.akamaihd.net 37 | apiportalmorecom-a.akamaihd.net 38 | apiqualitinknet-a.akamaihd.net 39 | apisecretsaucebi-a.akamaihd.net 40 | apispringsmartne-a.akamaihd.net 41 | apiwebwebgetcom-a.akamaihd.net 42 | apiwoodensealcom-a.akamaihd.net 43 | applyneedy.xyz 44 | app-ready.xyz 45 | arraty.altervista.org 46 | astrochicks.com 47 | atovh.local-finders.com 48 | avirasecureserver.com 49 | bala.getenjoyment.net 50 | bestimagecoollibrary.com 51 | bestofferswalkmydogouteveryday.gq 52 | bigames.online 53 | binaryoptionscops.info 54 | blog.f00kclan.de 55 | boole.onlinewebshop.net 56 | bosman.pluto.ro 57 | bronzeaid-a.akamaihd.net 58 | browsepulse-a.akamaihd.net 59 | buqayy0.livejournal.com 60 | butstrap.space 61 | buypanicdisorderpill.com 62 | buypillsorderonline.com 63 | buzzonclick.com 64 | c1.onedmp.com 65 | calvet.altervista.org 66 | cashkitten-a.akamaihd.net 67 | cdnanalytics.xyz 68 | cdncash.com 69 | cdncash.net 70 | cdncash.org 71 | cdnnetwok.xyz 72 | cdn.walkme.com 73 | cercacamion.it 74 | cheapcigarettesc.info 75 | connectionstrenth.com 76 | crirussian.ru 77 | customcatchcan.com 78 | customerpromos-a.akamaihd.net 79 | data1.scopich.com 80 | descargar-musica-gratis.net 81 | design-ideas.info 82 | discovertreasure-a.akamaihd.net 83 | domainanalyzing.xyz 84 | domaincdn.xyz 85 | drivotracker.com 86 | earl-brown.info 87 | edge.sharethis.com 88 | ekspresihati.info 89 | energydiet-info.ru 90 | epicbrogaming.com 91 | eupornstar.info 92 | ezigarettenkaufen1.pagina.gr 93 | f00kclan.de 94 | fenoyl.batcave.net 95 | findsexguide.com 96 | fiverr.com 97 | floating-share-buttons.com 98 | floridahuntingfishingadventures.com 99 | foto-basa.com 100 | fotopop.club 101 | free-share-buttons.top 102 | fxtips.ru 103 | gateway.zscalerone.net 104 | gateway.zscalertwo.net 105 | ge0ip.com 106 | ge0ip.net 107 | ge0ip.org 108 | generousdeal-a.akamaihd.net 109 | gopixdatabase.com 110 | gourcy.altervista.org 111 | greatfind-a.akamaihd.net 112 | grtyi.com 113 | highstairs-a.akamaihd.net 114 | homemade.gq 115 | hoste.octopis.com 116 | hostnow.men 117 | hotchatdate.com 118 | ideibiznesa2015.ru 119 | imagecoolpub.com 120 | imgata.com 121 | islamtoday.co.za 122 | jetsli.de 123 | jolic2.com 124 | junglenet-a.akamaihd.net 125 | kashubadesign.ru 126 | ketoanhanoi.info 127 | kfon.eu 128 | kinobaks.com 129 | kinoflux.net 130 | kino-fun.ru 131 | kreativperlen.ch 132 | lacasamorett.com 133 | lacloop.info 134 | lancheck.net 135 | linksharingt.com 136 | lisque.batcave.net 137 | livingroomdecor.info 138 | luckyday.world 139 | m1media.net 140 | mac-shield.com 141 | magicalfind-a.akamaihd.net 142 | magicdiet.gq 143 | maladot.com 144 | manyresultshub-a.akamaihd.net 145 | marinetraffic.com 146 | matchpal-a.akamaihd.net 147 | mature.free-websites.com 148 | message-warning.net 149 | middlerush-a.akamaihd.net 150 | mole.pluto.ro 151 | monarchfind-a.akamaihd.net 152 | moneyviking-a.akamaihd.net 153 | morlat.altervista.org 154 | moyakuhnia.ru 155 | msk-diplomat.com 156 | naperehresti.info 157 | nationalbreakdown.com 158 | negral.pluto.ro 159 | netanalytics.xyz 160 | networkcheck.xyz 161 | notebook-pro.ru 162 | onclickpredictiv.com 163 | onlineslotmaschine.com 164 | orhonit.com 165 | outrageousdeal-a.akamaihd.net 166 | patterntrader-en.com 167 | pcads.ru 168 | pelfind.me 169 | pendelprognos.se 170 | pflexads.com 171 | photo.houseofgaga.ru 172 | pinkduck.ga 173 | pinwallpaper.xyz 174 | plastgranar.nu 175 | plastgran.com 176 | plastjulgranar.se 177 | pogodnyyeavarii.gq 178 | postclass.com 179 | pst2017.onlinewebshop.net 180 | pts163.ru 181 | pulseonclick.com 182 | puserving.com 183 | quality-traffic.com 184 | questionmarque.ch 185 | razorweb-a.akamaihd.net 186 | realizmobi.com 187 | recordpage-a.akamaihd.net 188 | r-e-f-e-r-e-r.com 189 | refererx.com 190 | remedyotc.com 191 | resultshub-a.akamaihd.net 192 | rialp.getenjoyment.net 193 | rusexy.xyz 194 | sakhboard.ru 195 | sammlungfotos.online 196 | savingsslider-a.akamaihd.net 197 | sdelatmebel.ru 198 | searchinterneat-a.akamaihd.net 199 | searchmywindow-a.akamaihd.net 200 | searchtooknow-a.akamaihd.net 201 | searchwebknow-a.akamaihd.net 202 | seccioncontrabajo.com 203 | seeingmeerkat.com 204 | seemoreresultshu-a.akamaihd.net 205 | seeresultshub-a.akamaihd.net 206 | senger.atspace.co.uk 207 | seoanalyses.com 208 | sex-tracker.de 209 | sextracker.de 210 | sicfor.bcu.cc 211 | site-auditor.online 212 | siteheart.net 213 | sitevaluation.com 214 | slimcdn.com 215 | slim.sellany.ru 216 | smichovbike.cz 217 | soaksoak.ru 218 | soblaznu.net 219 | social-search.me 220 | sophang8.com 221 | sortthemesitesby.com 222 | sovinsteel.ru 223 | spaceshipad.com 224 | speedup-my.site 225 | spidtest.org 226 | spidtest.space 227 | splendorsearch-a.akamaihd.net 228 | spymac.net 229 | startwp.org 230 | stroiminsk.org 231 | strongsignal-a.akamaihd.net 232 | svarbit.com 233 | swinon.site 234 | takethatad.com 235 | terraclicks.com 236 | timetorelax.biz 237 | tongkatmadura.info 238 | topmira.com 239 | treasuretrack-a.akamaihd.net 240 | trustedmaccleaner.com 241 | ttsq.fr 242 | tv-spoty.info 243 | tvteleport.ru 244 | urll.eu 245 | uroffer.link 246 | validdomain.xyz 247 | vellings.info 248 | viagroid.ru 249 | vizitki.net 250 | webnode.me 251 | wesharepics.info 252 | wetgames.ru 253 | whatzmyip.net 254 | wordkeyhelper.com 255 | xnxxandxvideos.com 256 | xxxdatinglocal.us 257 | yhit.press 258 | youjizz.vc 259 | youradexchange.com 260 | zhongwenlink.com 261 | znakomstva-piter78.ru 262 | zs2vm.top 263 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/404: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 00author.com 5 | 00go.com 6 | 00it.com 7 | 5tey7463.weebly.com 8 | absolutelyanalog.com 9 | adclickservice.com 10 | add-add.men 11 | addbin.men 12 | addray.pro 13 | addtoadd.men 14 | adhome.biz 15 | ads-cool.pro 16 | adserver-e7.com 17 | adsfresh.men 18 | adsland.men 19 | adsref.men 20 | ads-seo.men 21 | artavenuegardenstudios.com 22 | articlesdirectoryme.info 23 | autoblogger24.info 24 | autodo.info 25 | beachpics.com 26 | best-way.men 27 | bestwebsitesawards.com 28 | big-boards.info 29 | bizfly.info 30 | blackhatworth.com 31 | bonanza-fortune.men 32 | bongiornos.info 33 | businesn.men 34 | cayado.snn.gr 35 | c-gainsbourg.com 36 | claytransformations.info 37 | coslab.club 38 | cscwtalkto.site 39 | customcollegeessays.net 40 | cyclobenzaprinevstizanidine.blogspot.com 41 | cymbaltaandtizanidine.blogspot.com 42 | d0t.ru 43 | damedingel.ya.ru 44 | dataloading.net 45 | dbmkfhqk.bloger.index.hr 46 | delta-line.men 47 | deniven.1bb.ru 48 | dev33.dioniqlabb.se 49 | dinkolove.ya.ru 50 | e-biznes.info 51 | econom.co 52 | educatemetv.com 53 | elektrischezi.canalblog.com 54 | elektrischezigarette2.devhub.com 55 | elektroniksigaraankara.info 56 | elektrozigarettekaufen1.devhub.com 57 | elidelcream.weebly.com 58 | empis.magix.net 59 | eu-cookie-law.blogspot.com 60 | ewebarticle.info 61 | extads.net 62 | extstat.com 63 | ezigaretteshop2.mywapblog.com 64 | filefilter.weebly.com 65 | filerockstar298.weebly.com 66 | focalink.com 67 | franecki.net 68 | free-share-buttons.blogspot.com 69 | fusoradio.info 70 | gamevalue7.weebly.com 71 | ghernnqr.skyrock.com 72 | go2mike.ru 73 | goldenggames.com 74 | google-liar.ru 75 | gratuitbaise.com 76 | gsmtlf.ru 77 | guildebzh.info 78 | gwhwpxbw.bloger.index.hr 79 | hamacapty.com 80 | happy.new.yeartwit.com 81 | hdapp1008-a.akamaihd.net 82 | hit-men.men 83 | hkdiiohi.skyrock.com 84 | hmywwogw.bloger.index.hr 85 | homedecoguide.info 86 | hoverboard360.se 87 | huhn.altervista.org 88 | hully.altervista.org 89 | i4track.net 90 | ilbe.club 91 | imagefinder.site 92 | imfamous.info 93 | iminent.com 94 | indetiske.ya.ru 95 | insta-add.pro 96 | istizanidineanarcoticdrug.blogspot.com 97 | jikoman.info 98 | journeydownthescale.info 99 | kidd.reunionwatch.com 100 | klejonka.info 101 | kndxbkdx.bloger.index.hr 102 | le-clos-des-alouettes.com 103 | levaquin750mg.blogspot.com 104 | limads.men 105 | loadingpages.me 106 | lowephotos.info 107 | magicplayer-s.acestream.net 108 | managerpak204.weebly.com 109 | marketingtechniques.info 110 | marwer.info 111 | max-eclat.men 112 | max-p.men 113 | meble-bogart.info 114 | mesbuta.info 115 | mmstat.com 116 | monetizer.com-01.site 117 | muabancantho.info 118 | myghillie.info 119 | nash-krym.info 120 | naval.jislaaik.com 121 | neobux-bg.info 122 | nero-us.com 123 | newyorkhotelsmotels.info 124 | nightvision746.weebly.com 125 | nzfilecloud.weebly.com 126 | odywpjtw.bloger.index.hr 127 | oecnhs.info 128 | ons-add.men 129 | ororodnik.goodbb.ru 130 | ourville.info 131 | oynat.info 132 | paleohub.info 133 | partnerads.men 134 | partner-cdn.men 135 | partner-high.men 136 | partnerline.men 137 | partner-pop.men 138 | partner-print.men 139 | partnersafe.men 140 | partners-ship.pro 141 | partner-trustworthy.men 142 | partnerworkroom.men 143 | pateaswing.com 144 | perso.wanadoo.es 145 | pestomou.info 146 | pipki.r.acdnpro.com 147 | pontiacsolstice.info 148 | portadd.men 149 | privatefx-in.ru 150 | pskcijdc.bloger.index.hr 151 | pssucai.info 152 | ptr.ruvds.com 153 | pushdata.sendpulse.com 154 | qcstrtvt.bloger.index.hr 155 | quebec-bin.com 156 | reckonstat.info 157 | refads.pro 158 | rff-cfal.info 159 | score-ads.men 160 | seadragonherbery.com 161 | semprofile.com 162 | seofirmreviewsus.info 163 | seorank.info 164 | seo-traffic-ranking.info 165 | sex-sex-sex5.com 166 | shopcheermakeup.info 167 | sims-sims.ru 168 | snsdeainavi.info 169 | soft1.ru 170 | sotkal.lark.ru 171 | spacash.com 172 | spbchampionat.ru 173 | statoutlook.info 174 | stauga.altervista.org 175 | stjamesschool.info 176 | stroilka.info 177 | taqplayer.info 178 | textads.men 179 | thewebsitetemplate.info 180 | titan-cloud.life 181 | tizanidineandgabapentin.blogspot.com 182 | tizanidinedrugtest.blogspot.com 183 | tizanidinehydrochloride4mgstreetvalue.blogspot.com 184 | tizanidinesideeffectsweightloss.blogspot.com 185 | tizanidinezanaflex.blogspot.com 186 | totu.info 187 | truck-addzilla.life 188 | truck-land.life 189 | truck-rece.life 190 | ugogo.info 191 | unmaroll.ya.ru 192 | urccvfmc.bloger.index.hr 193 | uvozdeckych.info 194 | vacances-voyages.info 195 | vapeface.club 196 | vintontech.info 197 | websiteexplorer.info 198 | westen-v.life 199 | westen-z.life 200 | white-truck.life 201 | woman-h.ru 202 | xchat26.myfreecams.com 203 | xgftnlrt.bloger.index.hr 204 | xn--c1acygb.xn--p1ai 205 | yachts-cruise.info 206 | yatrk.xyz 207 | yeartwit.com 208 | yellowads.men 209 | ynymnwbm.bloger.index.hr 210 | zeroredirect10.com 211 | zeroredirect11.com 212 | zeroredirect12.com 213 | zeroredirect2.com 214 | zeroredirect6.com 215 | zeroredirect8.com 216 | zeroredirect9.com 217 | zeroredirect.com 218 | zigarettenonl.canalblog.com 219 | zigarettenonlinekaufen2.drupalgardens.com 220 | zigarettenonlinekaufen.tumblr.com 221 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/410: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:49:23 UTC 2017 3 | 4 | elektrischezigarette1.onsugar.com 5 | elektrischezigarette2.onsugar.com 6 | elektrozigarette2.webs.com 7 | elektrozigaretten1.webs.com 8 | ezigaretteshop.webs.com 9 | s8-nowy-wygraj.comli.com 10 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/416: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | apartmentratings.com 5 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/HTTP_Analytic/POTENTIALLY_INACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 00author.com 5 | 00go.com 6 | 00it.com 7 | 123kuma.com 8 | 2020iscoming.info 9 | 24x7-server-support.site 10 | 5tey7463.weebly.com 11 | 7xc4n.com 12 | absolutelyanalog.com 13 | acortarurl.es 14 | adclickservice.com 15 | add-add.men 16 | addbin.men 17 | addray.pro 18 | addtoadd.men 19 | adexprts.com 20 | adhome.biz 21 | adnotbad.com 22 | ads-cool.pro 23 | adserver-e7.com 24 | adsfresh.men 25 | adsland.men 26 | adsref.men 27 | ads-seo.men 28 | adultmeetonline.info 29 | advancedsoftwaresupport.com 30 | agreda.pluto.ro 31 | aihelen.net 32 | airlandsea.info 33 | albumsuper.info 34 | all-number.com 35 | android-systems.ru 36 | apartmentratings.com 37 | apiadanaknet-a.akamaihd.net 38 | apiallgeniusinfo-a.akamaihd.net 39 | apiappenableinfo-a.akamaihd.net 40 | apibatbrowsecom-a.akamaihd.net 41 | apibetweenlinesn-a.akamaihd.net 42 | apibrowsesmartne-a.akamaihd.net 43 | apidiamondatanet-a.akamaihd.net 44 | apidigidocketnet-a.akamaihd.net 45 | apifasterlightin-a.akamaihd.net 46 | apiholdingmypage-a.akamaihd.net 47 | apiitsthirteende-a.akamaihd.net 48 | apilinkswiftco-a.akamaihd.net 49 | apiluckyleapnet-a.akamaihd.net 50 | apimegabrowsebiz-a.akamaihd.net 51 | apimossnetinfo-a.akamaihd.net 52 | apimountainbikei-a.akamaihd.net 53 | apioasisspacenet-a.akamaihd.net 54 | apioutoboxnet-a.akamaihd.net 55 | apiportalmorecom-a.akamaihd.net 56 | apiqualitinknet-a.akamaihd.net 57 | apisecretsaucebi-a.akamaihd.net 58 | apispringsmartne-a.akamaihd.net 59 | apiwebwebgetcom-a.akamaihd.net 60 | apiwoodensealcom-a.akamaihd.net 61 | applyneedy.xyz 62 | app-ready.xyz 63 | arraty.altervista.org 64 | artavenuegardenstudios.com 65 | articlesdirectoryme.info 66 | asdfg.pro 67 | asdfz.pro 68 | astrochicks.com 69 | atovh.local-finders.com 70 | audiobangout.com 71 | autoblogger24.info 72 | autodo.info 73 | avirasecureserver.com 74 | bala.getenjoyment.net 75 | beachpics.com 76 | bestimagecoollibrary.com 77 | bestofferswalkmydogouteveryday.gq 78 | best-way.men 79 | bestwebsitesawards.com 80 | bigames.online 81 | big-boards.info 82 | binaryoptionscops.info 83 | bizfly.info 84 | blackhatworth.com 85 | blog.f00kclan.de 86 | bonanza-fortune.men 87 | bongiornos.info 88 | boole.onlinewebshop.net 89 | bosman.pluto.ro 90 | bronzeaid-a.akamaihd.net 91 | browsepulse-a.akamaihd.net 92 | buqayy0.livejournal.com 93 | businesn.men 94 | butstrap.space 95 | buypanicdisorderpill.com 96 | buypillsorderonline.com 97 | buzzonclick.com 98 | c1.onedmp.com 99 | calvet.altervista.org 100 | cashkitten-a.akamaihd.net 101 | cayado.snn.gr 102 | cdnanalytics.xyz 103 | cdncash.com 104 | cdncash.net 105 | cdncash.org 106 | cdnnetwok.xyz 107 | cdn.walkme.com 108 | cercacamion.it 109 | c-gainsbourg.com 110 | cheapcigarettesc.info 111 | claytransformations.info 112 | connectionstrenth.com 113 | coslab.club 114 | crirussian.ru 115 | cscwtalkto.site 116 | customcatchcan.com 117 | customcollegeessays.net 118 | customerpromos-a.akamaihd.net 119 | cyclobenzaprinevstizanidine.blogspot.com 120 | cymbaltaandtizanidine.blogspot.com 121 | d0t.ru 122 | damedingel.ya.ru 123 | data1.scopich.com 124 | dataloading.net 125 | dbmkfhqk.bloger.index.hr 126 | delta-line.men 127 | deniven.1bb.ru 128 | descargar-musica-gratis.net 129 | design-ideas.info 130 | dev33.dioniqlabb.se 131 | dinkolove.ya.ru 132 | discovertreasure-a.akamaihd.net 133 | domainanalyzing.xyz 134 | domaincdn.xyz 135 | drivotracker.com 136 | earl-brown.info 137 | e-biznes.info 138 | econom.co 139 | edge.sharethis.com 140 | educatemetv.com 141 | ekspresihati.info 142 | elektrischezi.canalblog.com 143 | elektrischezigarette1.onsugar.com 144 | elektrischezigarette2.devhub.com 145 | elektrischezigarette2.onsugar.com 146 | elektroniksigaraankara.info 147 | elektrozigarette2.webs.com 148 | elektrozigarettekaufen1.devhub.com 149 | elektrozigaretten1.webs.com 150 | elidelcream.weebly.com 151 | empis.magix.net 152 | energydiet-info.ru 153 | epicbrogaming.com 154 | eu-cookie-law.blogspot.com 155 | eupornstar.info 156 | ewebarticle.info 157 | extads.net 158 | extstat.com 159 | ezigarettenkaufen1.pagina.gr 160 | ezigaretteshop2.mywapblog.com 161 | ezigaretteshop.webs.com 162 | f00kclan.de 163 | f5mtrack.com 164 | fenoyl.batcave.net 165 | filefilter.weebly.com 166 | filerockstar298.weebly.com 167 | findsexguide.com 168 | fiverr.com 169 | floating-share-buttons.com 170 | floridahuntingfishingadventures.com 171 | focalink.com 172 | foto-basa.com 173 | fotopop.club 174 | franecki.net 175 | free-share-buttons.blogspot.com 176 | free-share-buttons.top 177 | fusoradio.info 178 | fxtips.ru 179 | gamevalue7.weebly.com 180 | gateway.zscalerone.net 181 | gateway.zscalertwo.net 182 | ge0ip.com 183 | ge0ip.net 184 | ge0ip.org 185 | generousdeal-a.akamaihd.net 186 | ghernnqr.skyrock.com 187 | go2mike.ru 188 | goldenggames.com 189 | google-liar.ru 190 | gopixdatabase.com 191 | gourcy.altervista.org 192 | gratuitbaise.com 193 | greatfind-a.akamaihd.net 194 | grtyi.com 195 | gsmtlf.ru 196 | guildebzh.info 197 | gwhwpxbw.bloger.index.hr 198 | hamacapty.com 199 | happy.new.yeartwit.com 200 | hdapp1008-a.akamaihd.net 201 | highstairs-a.akamaihd.net 202 | hit-men.men 203 | hkdiiohi.skyrock.com 204 | hmywwogw.bloger.index.hr 205 | homedecoguide.info 206 | homemade.gq 207 | hoste.octopis.com 208 | hostnow.men 209 | hotchatdate.com 210 | hoverboard360.se 211 | huhn.altervista.org 212 | hully.altervista.org 213 | i4track.net 214 | ideibiznesa2015.ru 215 | ilbe.club 216 | imagecoolpub.com 217 | imagefinder.site 218 | imfamous.info 219 | imgata.com 220 | iminent.com 221 | indetiske.ya.ru 222 | insta-add.pro 223 | islamtoday.co.za 224 | istizanidineanarcoticdrug.blogspot.com 225 | jetsli.de 226 | jikoman.info 227 | jolic2.com 228 | journeydownthescale.info 229 | junglenet-a.akamaihd.net 230 | kashubadesign.ru 231 | ketoanhanoi.info 232 | kfon.eu 233 | kidd.reunionwatch.com 234 | kinobaks.com 235 | kinoflux.net 236 | kino-fun.ru 237 | klejonka.info 238 | kndxbkdx.bloger.index.hr 239 | kreativperlen.ch 240 | lacasamorett.com 241 | lacloop.info 242 | lancheck.net 243 | le-clos-des-alouettes.com 244 | levaquin750mg.blogspot.com 245 | limads.men 246 | linksharingt.com 247 | lisque.batcave.net 248 | livingroomdecor.info 249 | loadingpages.me 250 | lowephotos.info 251 | luckyday.world 252 | m1media.net 253 | mac-shield.com 254 | magicalfind-a.akamaihd.net 255 | magicdiet.gq 256 | magicplayer-s.acestream.net 257 | maladot.com 258 | managerpak204.weebly.com 259 | manyresultshub-a.akamaihd.net 260 | marinetraffic.com 261 | marketingtechniques.info 262 | marwer.info 263 | matchpal-a.akamaihd.net 264 | mature.free-websites.com 265 | max-eclat.men 266 | max-p.men 267 | meble-bogart.info 268 | mesbuta.info 269 | message-warning.net 270 | middlerush-a.akamaihd.net 271 | mmstat.com 272 | mole.pluto.ro 273 | monarchfind-a.akamaihd.net 274 | monetizer.com-01.site 275 | moneyviking-a.akamaihd.net 276 | morlat.altervista.org 277 | moyakuhnia.ru 278 | msk-diplomat.com 279 | muabancantho.info 280 | myghillie.info 281 | naperehresti.info 282 | nash-krym.info 283 | nationalbreakdown.com 284 | naval.jislaaik.com 285 | negral.pluto.ro 286 | neobux-bg.info 287 | nero-us.com 288 | netanalytics.xyz 289 | networkcheck.xyz 290 | newyorkhotelsmotels.info 291 | nightvision746.weebly.com 292 | notebook-pro.ru 293 | nzfilecloud.weebly.com 294 | odywpjtw.bloger.index.hr 295 | oecnhs.info 296 | onclickpredictiv.com 297 | onlineslotmaschine.com 298 | ons-add.men 299 | orhonit.com 300 | ororodnik.goodbb.ru 301 | ourville.info 302 | outrageousdeal-a.akamaihd.net 303 | oynat.info 304 | paleohub.info 305 | partnerads.men 306 | partner-cdn.men 307 | partner-high.men 308 | partnerline.men 309 | partner-pop.men 310 | partner-print.men 311 | partnersafe.men 312 | partners-ship.pro 313 | partner-trustworthy.men 314 | partnerworkroom.men 315 | pateaswing.com 316 | patterntrader-en.com 317 | pcads.ru 318 | pelfind.me 319 | pendelprognos.se 320 | perso.wanadoo.es 321 | pestomou.info 322 | pflexads.com 323 | photo.houseofgaga.ru 324 | pinkduck.ga 325 | pinwallpaper.xyz 326 | pipki.r.acdnpro.com 327 | plastgranar.nu 328 | plastgran.com 329 | plastjulgranar.se 330 | pogodnyyeavarii.gq 331 | pontiacsolstice.info 332 | portadd.men 333 | postclass.com 334 | privatefx-in.ru 335 | pskcijdc.bloger.index.hr 336 | pssucai.info 337 | pst2017.onlinewebshop.net 338 | ptr.ruvds.com 339 | pts163.ru 340 | pulseonclick.com 341 | puserving.com 342 | pushdata.sendpulse.com 343 | qcstrtvt.bloger.index.hr 344 | quality-traffic.com 345 | quebec-bin.com 346 | questionmarque.ch 347 | razorweb-a.akamaihd.net 348 | realizmobi.com 349 | reckonstat.info 350 | recordpage-a.akamaihd.net 351 | refads.pro 352 | r-e-f-e-r-e-r.com 353 | refererx.com 354 | remedyotc.com 355 | resultshub-a.akamaihd.net 356 | rff-cfal.info 357 | rialp.getenjoyment.net 358 | rusexy.xyz 359 | s8-nowy-wygraj.comli.com 360 | sakhboard.ru 361 | sammlungfotos.online 362 | savingsslider-a.akamaihd.net 363 | score-ads.men 364 | sdelatmebel.ru 365 | seadragonherbery.com 366 | searchinterneat-a.akamaihd.net 367 | searchmywindow-a.akamaihd.net 368 | searchtooknow-a.akamaihd.net 369 | searchwebknow-a.akamaihd.net 370 | seccioncontrabajo.com 371 | seeingmeerkat.com 372 | seemoreresultshu-a.akamaihd.net 373 | seeresultshub-a.akamaihd.net 374 | semprofile.com 375 | senger.atspace.co.uk 376 | seoanalyses.com 377 | seofirmreviewsus.info 378 | seorank.info 379 | seo-traffic-ranking.info 380 | sex-sex-sex5.com 381 | sex-tracker.de 382 | sextracker.de 383 | shopcheermakeup.info 384 | sicfor.bcu.cc 385 | sims-sims.ru 386 | site-auditor.online 387 | siteheart.net 388 | sitevaluation.com 389 | slimcdn.com 390 | slim.sellany.ru 391 | smichovbike.cz 392 | snsdeainavi.info 393 | soaksoak.ru 394 | soblaznu.net 395 | social-search.me 396 | soft1.ru 397 | sophang8.com 398 | sortthemesitesby.com 399 | sotkal.lark.ru 400 | sovinsteel.ru 401 | spacash.com 402 | spaceshipad.com 403 | spbchampionat.ru 404 | speedup-my.site 405 | spidtest.org 406 | spidtest.space 407 | splendorsearch-a.akamaihd.net 408 | spymac.net 409 | startwp.org 410 | statoutlook.info 411 | stauga.altervista.org 412 | stjamesschool.info 413 | stroilka.info 414 | stroiminsk.org 415 | strongsignal-a.akamaihd.net 416 | svarbit.com 417 | swinon.site 418 | takethatad.com 419 | taqplayer.info 420 | terraclicks.com 421 | textads.men 422 | thewebsitetemplate.info 423 | timetorelax.biz 424 | titan-cloud.life 425 | tizanidineandgabapentin.blogspot.com 426 | tizanidinedrugtest.blogspot.com 427 | tizanidinehydrochloride4mgstreetvalue.blogspot.com 428 | tizanidinesideeffectsweightloss.blogspot.com 429 | tizanidinezanaflex.blogspot.com 430 | tongkatmadura.info 431 | topmira.com 432 | totu.info 433 | treasuretrack-a.akamaihd.net 434 | truck-addzilla.life 435 | truck-land.life 436 | truck-rece.life 437 | trustedmaccleaner.com 438 | ttsq.fr 439 | tv-spoty.info 440 | tvteleport.ru 441 | ugogo.info 442 | unmaroll.ya.ru 443 | urccvfmc.bloger.index.hr 444 | urll.eu 445 | uroffer.link 446 | uvozdeckych.info 447 | vacances-voyages.info 448 | validdomain.xyz 449 | vapeface.club 450 | vellings.info 451 | viagroid.ru 452 | vintontech.info 453 | vizitki.net 454 | webnode.me 455 | websiteexplorer.info 456 | wesharepics.info 457 | westen-v.life 458 | westen-z.life 459 | wetgames.ru 460 | whatzmyip.net 461 | white-truck.life 462 | woman-h.ru 463 | wordkeyhelper.com 464 | xchat26.myfreecams.com 465 | xgftnlrt.bloger.index.hr 466 | xn--c1acygb.xn--p1ai 467 | xnxxandxvideos.com 468 | xxxdatinglocal.us 469 | yachts-cruise.info 470 | yatrk.xyz 471 | yeartwit.com 472 | yellowads.men 473 | yhit.press 474 | ynymnwbm.bloger.index.hr 475 | youjizz.vc 476 | youradexchange.com 477 | zeroredirect10.com 478 | zeroredirect11.com 479 | zeroredirect12.com 480 | zeroredirect1.com 481 | zeroredirect2.com 482 | zeroredirect5.com 483 | zeroredirect6.com 484 | zeroredirect8.com 485 | zeroredirect9.com 486 | zeroredirect.com 487 | zhongwenlink.com 488 | zigarettenonl.canalblog.com 489 | zigarettenonlinekaufen2.drupalgardens.com 490 | zigarettenonlinekaufen.tumblr.com 491 | znakomstva-piter78.ru 492 | zs2vm.top 493 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/continue.txt: -------------------------------------------------------------------------------- 1 | /home/travis/build/funilrys/dead-hosts/NginxBadBotBlocker@mitchellkrogza/tested-list/Nginx_Bad_Bot_Blocker.list zzlgxh.com 5867 5609 258 0 2 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/domains/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/domains/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/domains/INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/domains/INACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 1j7740kd.website 5 | 1millionusd.xyz 6 | 2015god.org 7 | 214jaluwobapef.cf 8 | 66cpwgln.space 9 | 6hopping.com 10 | 8kisses.eu 11 | 9icmzvn6.website 12 | abcdefh.xyz 13 | abcdeg.xyz 14 | acgs.tk 15 | adultfullhd.com 16 | advocatemsk.ru 17 | advokateg.xyz 18 | alert-fdm.xyz 19 | alert-fjg.xyz 20 | alert-hgd.xyz 21 | alert-jdh.xyz 22 | alfabot.xyz 23 | alphacarolinas.com 24 | anal-acrobats.hol.es 25 | andpolice.com 26 | angry-fermi-7633.arukascloud.io 27 | aosheng-tech.com 28 | apple.com-webbrowsing-security.review 29 | apple.com-webbrowsing-security.science 30 | arendovalka.xyz 31 | artdestshop.eu 32 | aruplighting.com 33 | atley.eu.pn 34 | autoua.top 35 | aviva-limoux.com 36 | avtoarenda.by 37 | axbocz.net 38 | b2b-lounge.com 39 | bangla-chat-uk-paralud.ga 40 | battleforupdating.site 41 | begalka.xyz 42 | bezlimitko.xyz 43 | bitcoins-live.ru 44 | biteg.xyz 45 | bjgugu.net.ua 46 | boltalko.xyz 47 | bookmark4you.com.biz 48 | bosefux.esy.es 49 | braindaily.xyz 50 | brateg.xyz 51 | budilneg.xyz 52 | buketeg.xyz 53 | bukleteg.xyz 54 | buy-cheap-online.info 55 | callmd5map.com 56 | candlehandmade.com 57 | cheatcode-lita12.rhcloud.com 58 | compliance-alexa.top 59 | compliance-alexa.xyz 60 | compliance-alex.top 61 | compliance-alex.xyz 62 | compliance-andrew.top 63 | compliance-andrew.xyz 64 | compliance-barak.top 65 | compliance-barak.xyz 66 | compliance-brian.top 67 | compliance-brian.xyz 68 | compliance-donald.xyz 69 | compliance-don.top 70 | compliance-don.xyz 71 | compliance-elena.top 72 | compliance-elena.xyz 73 | compliance-fred.top 74 | compliance-fred.xyz 75 | compliance-george.top 76 | compliance-george.xyz 77 | compliance-irvin.top 78 | compliance-irvin.xyz 79 | compliance-ivan.top 80 | compliance-ivan.xyz 81 | compliance-jack.top 82 | compliance-jane.top 83 | compliance-jessica.top 84 | compliance-jess.top 85 | compliance-john.top 86 | compliance-josh.top 87 | compliance-julianna.top 88 | compliance-julia.top 89 | compliance-margo.top 90 | compliance-mark.top 91 | compliance-mary.top 92 | compliance-nelson.top 93 | compliance-olga.top 94 | compliance-viktor.top 95 | compliance-walter.top 96 | compliance-walt.top 97 | compliance-willy.top 98 | cookie-law-enforcement-aa.xyz 99 | cookie-law-enforcement-ee.xyz 100 | cookie-law-enforcement-ff.xyz 101 | cookie-law-enforcement-hh.xyz 102 | cosmeticswomens-womensports.rhcloud.com 103 | cyclobenzaprinevstizanidine.blogspot.com 104 | cymbaltaandtizanidine.blogspot.com 105 | dikqlyremy.info 106 | dogsrun.net 107 | elektrischezi.canalblog.com 108 | elmifarhangi.com 109 | erectile.bid 110 | esfchat.tk 111 | eu-cookie-law.blogspot.com 112 | exhibitionplus.eu 113 | eywords-monitoring-your-success.com 114 | ff30236ddef1465f88547e760973d70a.com 115 | fivedwld.cf 116 | floridamhca.org 117 | free-laptop-reward.com 118 | free-share-buttons.blogspot.com 119 | free-social-buttons.com 120 | free-social-buttons.xyz 121 | free-traffic.xyz 122 | frvo.alptandem.ru 123 | fuck-paid-share-buttons.xyz 124 | fyxabomiw.ru 125 | get-your-social-buttons.info 126 | ghernnqr.skyrock.com 127 | glastecfilms.com.my 128 | gok-kasten.net 129 | gopro-online.info 130 | g.starmoe.xyz 131 | herehloadibs.cf 132 | hkdiiohi.skyrock.com 133 | homegardenlova.com 134 | hoverboard360.es 135 | hoverboard360.nl 136 | humanorightswatch.org 137 | hyhj.info 138 | iccornacircri.cf 139 | iinstalll-fii1leis.jus0wil.pp.ua 140 | ilovevitaly.xyz 141 | increasewwwtraffic.info 142 | internetproviderstucson.com 143 | istizanidineanarcoticdrug.blogspot.com 144 | iwantmyfreecash.com 145 | jewelryandfiligree.com 146 | jus0wil.pp.ua 147 | justprofit.xyz 148 | kenaba.su 149 | kmgamex.cf 150 | labafydjxa.su 151 | law-check-eight.xyz 152 | law-check-nine.xyz 153 | law-check-seven.xyz 154 | law-check-two.xyz 155 | levaquin750mg.blogspot.com 156 | liran-locks.com 157 | liveinternet.ro 158 | loftdigital.eu 159 | marcogrup.com 160 | mezaruk.info 161 | m-google.xyz 162 | mlvc4zzw.space 163 | my-cash-bot.co 164 | nbsproject.ru 165 | net-profits.xyz 166 | nevansk.ru 167 | new-apps.ru 168 | northfacestore.online 169 | norththeface.store 170 | nottyu.xyz 171 | osb.se11.ru 172 | picture-group.com 173 | pijoto.net 174 | pochemychka.net 175 | popander.mobi 176 | popup-fdm.xyz 177 | popup-hgd.xyz 178 | popup-jdh.xyz 179 | porno-video-chati.ru 180 | prizestohandle.club 181 | profitfx.online 182 | profitsport.club 183 | profitsport.club 184 | pr-ten.de 185 | quit-smoking.ga 186 | rcpmda.ikan1080.xyz 187 | remorcicomerciale.ro 188 | rezeptiblud.ru 189 | sarm.tk 190 | sbetodiodnye-lampy.ru 191 | scanner-george.top 192 | scanner-irvin.top 193 | scanner-ivan.top 194 | scanner-jack.top 195 | scanner-jane.top 196 | scanner-jessica.top 197 | scanner-jess.top 198 | scanner-john.top 199 | scanner-josh.top 200 | scanner-julianna.top 201 | scanner-julia.top 202 | scanner-margo.top 203 | scanner-mark.top 204 | scanner-marwin.top 205 | scanner-mary.top 206 | scanner-nelson.top 207 | scanner-olga.top 208 | scanner-viktor.top 209 | scanner-walter.top 210 | scanner-walt.top 211 | scanner-willy.top 212 | secret.xn--oogle-wmc.com 213 | seomarketings.online 214 | sexyteens.hol.es 215 | shell-pmr.ru 216 | shitmovs.com 217 | shop.xz618.com 218 | signal03.ru 219 | sitevaluation.org 220 | sizeplus.work 221 | snip.to 222 | snts.shell-pmr.ru 223 | social-button.xyz 224 | social-s-ggg.xyz 225 | social-s-hhh.xyz 226 | social-s-iii.xyz 227 | sohoindia.net 228 | swinginwithme.ru 229 | tech4master.com 230 | tengohydar.tk 231 | thin.me.pn 232 | titelhelden.eu 233 | tizanidineandgabapentin.blogspot.com 234 | tizanidinedrugtest.blogspot.com 235 | tizanidinehydrochloride4mgstreetvalue.blogspot.com 236 | tizanidinesideeffectsweightloss.blogspot.com 237 | tizanidinezanaflex.blogspot.com 238 | trichizobswiv.agddns.net 239 | tula.howotorg.ru 240 | turizm.bz 241 | u17795.netangels.ru 242 | varikozdok.ru 243 | voluumtracker1.com 244 | vysigy.su 245 | watchmyfb.pl 246 | weightatraining.com 247 | williamrobsonproperty.com 248 | xitjw.info 249 | xn----7sbaphztdjeboffeiof6c.xn--p1ai 250 | youraticles.pl 251 | yourserverisdown.com 252 | zapiszto.pl 253 | zatjmuzu.info 254 | zawyna.ua 255 | zebramart.ru 256 | zigarettenonl.canalblog.com 257 | zigarettenonlinekaufen.tumblr.com 258 | zixizop.net.ru 259 | zmoda.hostreo.com 260 | zocaparj.kz 261 | zynax.ua 262 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/domains/INVALID/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/hosts/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/hosts/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/hosts/INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/hosts/INACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 15:25:20 UTC 2017 3 | 4 | 0.0.0.0 1j7740kd.website 5 | 0.0.0.0 1millionusd.xyz 6 | 0.0.0.0 2015god.org 7 | 0.0.0.0 214jaluwobapef.cf 8 | 0.0.0.0 66cpwgln.space 9 | 0.0.0.0 6hopping.com 10 | 0.0.0.0 8kisses.eu 11 | 0.0.0.0 9icmzvn6.website 12 | 0.0.0.0 abcdefh.xyz 13 | 0.0.0.0 abcdeg.xyz 14 | 0.0.0.0 acgs.tk 15 | 0.0.0.0 adultfullhd.com 16 | 0.0.0.0 advocatemsk.ru 17 | 0.0.0.0 advokateg.xyz 18 | 0.0.0.0 alert-fdm.xyz 19 | 0.0.0.0 alert-fjg.xyz 20 | 0.0.0.0 alert-hgd.xyz 21 | 0.0.0.0 alert-jdh.xyz 22 | 0.0.0.0 alfabot.xyz 23 | 0.0.0.0 alphacarolinas.com 24 | 0.0.0.0 anal-acrobats.hol.es 25 | 0.0.0.0 andpolice.com 26 | 0.0.0.0 angry-fermi-7633.arukascloud.io 27 | 0.0.0.0 aosheng-tech.com 28 | 0.0.0.0 apple.com-webbrowsing-security.review 29 | 0.0.0.0 apple.com-webbrowsing-security.science 30 | 0.0.0.0 arendovalka.xyz 31 | 0.0.0.0 artdestshop.eu 32 | 0.0.0.0 aruplighting.com 33 | 0.0.0.0 atley.eu.pn 34 | 0.0.0.0 autoua.top 35 | 0.0.0.0 aviva-limoux.com 36 | 0.0.0.0 avtoarenda.by 37 | 0.0.0.0 axbocz.net 38 | 0.0.0.0 b2b-lounge.com 39 | 0.0.0.0 bangla-chat-uk-paralud.ga 40 | 0.0.0.0 battleforupdating.site 41 | 0.0.0.0 begalka.xyz 42 | 0.0.0.0 bezlimitko.xyz 43 | 0.0.0.0 bitcoins-live.ru 44 | 0.0.0.0 biteg.xyz 45 | 0.0.0.0 bjgugu.net.ua 46 | 0.0.0.0 boltalko.xyz 47 | 0.0.0.0 bookmark4you.com.biz 48 | 0.0.0.0 bosefux.esy.es 49 | 0.0.0.0 braindaily.xyz 50 | 0.0.0.0 brateg.xyz 51 | 0.0.0.0 budilneg.xyz 52 | 0.0.0.0 buketeg.xyz 53 | 0.0.0.0 bukleteg.xyz 54 | 0.0.0.0 buy-cheap-online.info 55 | 0.0.0.0 callmd5map.com 56 | 0.0.0.0 candlehandmade.com 57 | 0.0.0.0 cheatcode-lita12.rhcloud.com 58 | 0.0.0.0 compliance-alexa.top 59 | 0.0.0.0 compliance-alexa.xyz 60 | 0.0.0.0 compliance-alex.top 61 | 0.0.0.0 compliance-alex.xyz 62 | 0.0.0.0 compliance-andrew.top 63 | 0.0.0.0 compliance-andrew.xyz 64 | 0.0.0.0 compliance-barak.top 65 | 0.0.0.0 compliance-barak.xyz 66 | 0.0.0.0 compliance-brian.top 67 | 0.0.0.0 compliance-brian.xyz 68 | 0.0.0.0 compliance-donald.xyz 69 | 0.0.0.0 compliance-don.top 70 | 0.0.0.0 compliance-don.xyz 71 | 0.0.0.0 compliance-elena.top 72 | 0.0.0.0 compliance-elena.xyz 73 | 0.0.0.0 compliance-fred.top 74 | 0.0.0.0 compliance-fred.xyz 75 | 0.0.0.0 compliance-george.top 76 | 0.0.0.0 compliance-george.xyz 77 | 0.0.0.0 compliance-irvin.top 78 | 0.0.0.0 compliance-irvin.xyz 79 | 0.0.0.0 compliance-ivan.top 80 | 0.0.0.0 compliance-ivan.xyz 81 | 0.0.0.0 compliance-jack.top 82 | 0.0.0.0 compliance-jane.top 83 | 0.0.0.0 compliance-jessica.top 84 | 0.0.0.0 compliance-jess.top 85 | 0.0.0.0 compliance-john.top 86 | 0.0.0.0 compliance-josh.top 87 | 0.0.0.0 compliance-julianna.top 88 | 0.0.0.0 compliance-julia.top 89 | 0.0.0.0 compliance-margo.top 90 | 0.0.0.0 compliance-mark.top 91 | 0.0.0.0 compliance-mary.top 92 | 0.0.0.0 compliance-nelson.top 93 | 0.0.0.0 compliance-olga.top 94 | 0.0.0.0 compliance-viktor.top 95 | 0.0.0.0 compliance-walter.top 96 | 0.0.0.0 compliance-walt.top 97 | 0.0.0.0 compliance-willy.top 98 | 0.0.0.0 cookie-law-enforcement-aa.xyz 99 | 0.0.0.0 cookie-law-enforcement-ee.xyz 100 | 0.0.0.0 cookie-law-enforcement-ff.xyz 101 | 0.0.0.0 cookie-law-enforcement-hh.xyz 102 | 0.0.0.0 cosmeticswomens-womensports.rhcloud.com 103 | 0.0.0.0 cyclobenzaprinevstizanidine.blogspot.com 104 | 0.0.0.0 cymbaltaandtizanidine.blogspot.com 105 | 0.0.0.0 dikqlyremy.info 106 | 0.0.0.0 dogsrun.net 107 | 0.0.0.0 elektrischezi.canalblog.com 108 | 0.0.0.0 elmifarhangi.com 109 | 0.0.0.0 erectile.bid 110 | 0.0.0.0 esfchat.tk 111 | 0.0.0.0 eu-cookie-law.blogspot.com 112 | 0.0.0.0 exhibitionplus.eu 113 | 0.0.0.0 eywords-monitoring-your-success.com 114 | 0.0.0.0 ff30236ddef1465f88547e760973d70a.com 115 | 0.0.0.0 fivedwld.cf 116 | 0.0.0.0 floridamhca.org 117 | 0.0.0.0 free-laptop-reward.com 118 | 0.0.0.0 free-share-buttons.blogspot.com 119 | 0.0.0.0 free-social-buttons.com 120 | 0.0.0.0 free-social-buttons.xyz 121 | 0.0.0.0 free-traffic.xyz 122 | 0.0.0.0 frvo.alptandem.ru 123 | 0.0.0.0 fuck-paid-share-buttons.xyz 124 | 0.0.0.0 fyxabomiw.ru 125 | 0.0.0.0 get-your-social-buttons.info 126 | 0.0.0.0 ghernnqr.skyrock.com 127 | 0.0.0.0 glastecfilms.com.my 128 | 0.0.0.0 gok-kasten.net 129 | 0.0.0.0 gopro-online.info 130 | 0.0.0.0 g.starmoe.xyz 131 | 0.0.0.0 herehloadibs.cf 132 | 0.0.0.0 hkdiiohi.skyrock.com 133 | 0.0.0.0 homegardenlova.com 134 | 0.0.0.0 hoverboard360.es 135 | 0.0.0.0 hoverboard360.nl 136 | 0.0.0.0 humanorightswatch.org 137 | 0.0.0.0 hyhj.info 138 | 0.0.0.0 iccornacircri.cf 139 | 0.0.0.0 iinstalll-fii1leis.jus0wil.pp.ua 140 | 0.0.0.0 ilovevitaly.xyz 141 | 0.0.0.0 increasewwwtraffic.info 142 | 0.0.0.0 internetproviderstucson.com 143 | 0.0.0.0 istizanidineanarcoticdrug.blogspot.com 144 | 0.0.0.0 iwantmyfreecash.com 145 | 0.0.0.0 jewelryandfiligree.com 146 | 0.0.0.0 jus0wil.pp.ua 147 | 0.0.0.0 justprofit.xyz 148 | 0.0.0.0 kenaba.su 149 | 0.0.0.0 kmgamex.cf 150 | 0.0.0.0 labafydjxa.su 151 | 0.0.0.0 law-check-eight.xyz 152 | 0.0.0.0 law-check-nine.xyz 153 | 0.0.0.0 law-check-seven.xyz 154 | 0.0.0.0 law-check-two.xyz 155 | 0.0.0.0 levaquin750mg.blogspot.com 156 | 0.0.0.0 liran-locks.com 157 | 0.0.0.0 liveinternet.ro 158 | 0.0.0.0 loftdigital.eu 159 | 0.0.0.0 marcogrup.com 160 | 0.0.0.0 mezaruk.info 161 | 0.0.0.0 m-google.xyz 162 | 0.0.0.0 mlvc4zzw.space 163 | 0.0.0.0 my-cash-bot.co 164 | 0.0.0.0 nbsproject.ru 165 | 0.0.0.0 net-profits.xyz 166 | 0.0.0.0 nevansk.ru 167 | 0.0.0.0 new-apps.ru 168 | 0.0.0.0 northfacestore.online 169 | 0.0.0.0 norththeface.store 170 | 0.0.0.0 nottyu.xyz 171 | 0.0.0.0 osb.se11.ru 172 | 0.0.0.0 picture-group.com 173 | 0.0.0.0 pijoto.net 174 | 0.0.0.0 pochemychka.net 175 | 0.0.0.0 popander.mobi 176 | 0.0.0.0 popup-fdm.xyz 177 | 0.0.0.0 popup-hgd.xyz 178 | 0.0.0.0 popup-jdh.xyz 179 | 0.0.0.0 porno-video-chati.ru 180 | 0.0.0.0 prizestohandle.club 181 | 0.0.0.0 profitfx.online 182 | 0.0.0.0 profitsport.club 183 | 0.0.0.0 profitsport.club 184 | 0.0.0.0 pr-ten.de 185 | 0.0.0.0 quit-smoking.ga 186 | 0.0.0.0 rcpmda.ikan1080.xyz 187 | 0.0.0.0 remorcicomerciale.ro 188 | 0.0.0.0 rezeptiblud.ru 189 | 0.0.0.0 sarm.tk 190 | 0.0.0.0 sbetodiodnye-lampy.ru 191 | 0.0.0.0 scanner-george.top 192 | 0.0.0.0 scanner-irvin.top 193 | 0.0.0.0 scanner-ivan.top 194 | 0.0.0.0 scanner-jack.top 195 | 0.0.0.0 scanner-jane.top 196 | 0.0.0.0 scanner-jessica.top 197 | 0.0.0.0 scanner-jess.top 198 | 0.0.0.0 scanner-john.top 199 | 0.0.0.0 scanner-josh.top 200 | 0.0.0.0 scanner-julianna.top 201 | 0.0.0.0 scanner-julia.top 202 | 0.0.0.0 scanner-margo.top 203 | 0.0.0.0 scanner-mark.top 204 | 0.0.0.0 scanner-marwin.top 205 | 0.0.0.0 scanner-mary.top 206 | 0.0.0.0 scanner-nelson.top 207 | 0.0.0.0 scanner-olga.top 208 | 0.0.0.0 scanner-viktor.top 209 | 0.0.0.0 scanner-walter.top 210 | 0.0.0.0 scanner-walt.top 211 | 0.0.0.0 scanner-willy.top 212 | 0.0.0.0 secret.xn--oogle-wmc.com 213 | 0.0.0.0 seomarketings.online 214 | 0.0.0.0 sexyteens.hol.es 215 | 0.0.0.0 shell-pmr.ru 216 | 0.0.0.0 shitmovs.com 217 | 0.0.0.0 shop.xz618.com 218 | 0.0.0.0 signal03.ru 219 | 0.0.0.0 sitevaluation.org 220 | 0.0.0.0 sizeplus.work 221 | 0.0.0.0 snip.to 222 | 0.0.0.0 snts.shell-pmr.ru 223 | 0.0.0.0 social-button.xyz 224 | 0.0.0.0 social-s-ggg.xyz 225 | 0.0.0.0 social-s-hhh.xyz 226 | 0.0.0.0 social-s-iii.xyz 227 | 0.0.0.0 sohoindia.net 228 | 0.0.0.0 swinginwithme.ru 229 | 0.0.0.0 tech4master.com 230 | 0.0.0.0 tengohydar.tk 231 | 0.0.0.0 thin.me.pn 232 | 0.0.0.0 titelhelden.eu 233 | 0.0.0.0 tizanidineandgabapentin.blogspot.com 234 | 0.0.0.0 tizanidinedrugtest.blogspot.com 235 | 0.0.0.0 tizanidinehydrochloride4mgstreetvalue.blogspot.com 236 | 0.0.0.0 tizanidinesideeffectsweightloss.blogspot.com 237 | 0.0.0.0 tizanidinezanaflex.blogspot.com 238 | 0.0.0.0 trichizobswiv.agddns.net 239 | 0.0.0.0 tula.howotorg.ru 240 | 0.0.0.0 turizm.bz 241 | 0.0.0.0 u17795.netangels.ru 242 | 0.0.0.0 varikozdok.ru 243 | 0.0.0.0 voluumtracker1.com 244 | 0.0.0.0 vysigy.su 245 | 0.0.0.0 watchmyfb.pl 246 | 0.0.0.0 weightatraining.com 247 | 0.0.0.0 williamrobsonproperty.com 248 | 0.0.0.0 xitjw.info 249 | 0.0.0.0 xn----7sbaphztdjeboffeiof6c.xn--p1ai 250 | 0.0.0.0 youraticles.pl 251 | 0.0.0.0 yourserverisdown.com 252 | 0.0.0.0 zapiszto.pl 253 | 0.0.0.0 zatjmuzu.info 254 | 0.0.0.0 zawyna.ua 255 | 0.0.0.0 zebramart.ru 256 | 0.0.0.0 zigarettenonl.canalblog.com 257 | 0.0.0.0 zigarettenonlinekaufen.tumblr.com 258 | 0.0.0.0 zixizop.net.ru 259 | 0.0.0.0 zmoda.hostreo.com 260 | 0.0.0.0 zocaparj.kz 261 | 0.0.0.0 zynax.ua 262 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/hosts/INVALID/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/whois/ 4 | !/dateFormat/ 5 | !/percentage/ 6 | !/noReferer/ 7 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/dateFormat/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/execution.log: -------------------------------------------------------------------------------- 1 | Execution Time log of Sat Oct 28 15:37:21 UTC 2017 2 | ---------------------------------------------------------------- 3 | Start: 1509205041 4 | Execution Time log of Sat Oct 28 15:49:23 UTC 2017 5 | ---------------------------------------------------------------- 6 | Start: 1509205763 7 | Execution Time log of Sat Oct 28 16:00:49 UTC 2017 8 | ---------------------------------------------------------------- 9 | Start: 1509206449 10 | Execution Time log of Sat Oct 28 16:12:47 UTC 2017 11 | ---------------------------------------------------------------- 12 | Start: 1509207167 13 | Execution Time log of Sat Oct 28 16:24:18 UTC 2017 14 | ---------------------------------------------------------------- 15 | Start: 1509207858 16 | Execution Time log of Sat Oct 28 16:35:48 UTC 2017 17 | ---------------------------------------------------------------- 18 | Start: 1509208548 19 | Execution Time log of Sat Oct 28 16:47:35 UTC 2017 20 | ---------------------------------------------------------------- 21 | Start: 1509209255 22 | Execution Time log of Sat Oct 28 16:59:21 UTC 2017 23 | ---------------------------------------------------------------- 24 | Start: 1509209961 25 | Execution Time log of Sat Oct 28 17:11:14 UTC 2017 26 | ---------------------------------------------------------------- 27 | Start: 1509210674 28 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/install.log: -------------------------------------------------------------------------------- 1 | Sat Oct 28 17:11:12 UTC 2017 2 | Checking Version ✔ 3 | Script exist ✔ 4 | Script readable ✔ 5 | Script executable ✔ 6 | awk installed ✔ 7 | curl installed ✔ 8 | date installed ✔ 9 | echo installed ✔ 10 | expect installed ✔ 11 | head installed ✔ 12 | nslookup installed ✔ 13 | sed installed ✔ 14 | sha512sum installed ✔ 15 | tail installed ✔ 16 | touch installed ✔ 17 | tr installed ✔ 18 | whois installed ✔ 19 | Installation of working directory ✔ 20 | Update of iana-domains-db ✔ 21 | Creation of non existant files and directories ✔ 22 | 23 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/noReferer/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/percentage/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/percentage/percentage.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:11:14 UTC 2017 3 | 4 | 5 | Status Percentage Numbers 6 | ----------- ------------ ------------- 7 | ACTIVE 95% 5609 8 | INACTIVE 4% 258 9 | INVALID 0% 0 10 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/logs/whois/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/output/splited/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/percentage.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:11:14 UTC 2017 3 | 4 | 5 | Status Percentage Numbers 6 | ----------- ------------ ------------- 7 | ACTIVE 95% 5609 8 | INACTIVE 4% 258 9 | INVALID 0% 0 10 | -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/tested-list/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funilrys/dead-hosts/c0577383ce57a9efcec228f227c6303464d8765e/NginxBadBotBlocker@mitchellkrogza/tested-list/.keep -------------------------------------------------------------------------------- /NginxBadBotBlocker@mitchellkrogza/update.me: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # Github : https://github.com/funilrys/funceble 14 | # Github : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | # Link of the raw file 21 | rawLink='https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-referrers.list' 22 | 23 | # list name 24 | listName='Nginx_Bad_Bot_Blocker.list' 25 | 26 | # list directory 27 | listDir='tested-list/' 28 | 29 | # Output list 30 | outputList=${listDir}${listName} 31 | 32 | #################################### Update Me ################################ 33 | # Update.me 34 | # 35 | # @CalledBy nobody 36 | ################################################################################ 37 | updateMe() 38 | { 39 | # We get the latest list 40 | curl -s ${rawLink} -o ${outputList} 41 | 42 | # We convert the file 43 | dos2unix ${outputList} 2> /dev/null 44 | } 45 | 46 | updateMe 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dead Hosts 2 | 3 | [![license](https://img.shields.io/github/license/funilrys/dead-hosts.svg)](https://github.com/funilrys/dead-hosts/blob/master/LICENSE) [![Build Status](https://travis-ci.org/funilrys/dead-hosts.svg?branch=master)](https://travis-ci.org/funilrys/dead-hosts) [![GitHub tag](https://img.shields.io/github/tag/funilrys/dead-hosts.svg)](https://github.com/funilrys/dead-hosts/tags) [![GitHub release](https://img.shields.io/github/release/funilrys/dead-hosts.svg)](https://github.com/funilrys/dead-hosts/releases/latest) 4 | 5 | > Let's test hosts file against [Funceble](https://github.com/funilrys/funceble) ! 6 | 7 | ## Valuable links 8 | 9 | They updated their hosts file or blocklist with the help of [Funceble](https://github.com/funilrys/funceble/) or this repository. 10 | 11 | Repo / List Name | Author | Repository / Website | Raw 12 | ---------------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------- 13 | add.2o7Net | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/add.2o7Net) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts) 14 | add.Dead | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/add.Dead) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts) 15 | add.Risk | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/add.Risk) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts) 16 | add.Spam | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/add.Spam) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts) 17 | Badd-Boyz-Hosts | [Mitchell Krog](https://github.com/mitchellkrogza) | [Repository](https://github.com/mitchellkrogza/Badd-Boyz-Hosts) | [Raw](https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/PULL_REQUESTS/domains.txt) 18 | KADhosts | [KAD](https://github.com/azet12) | [Repository](https://github.com/azet12/KADhosts) | [Raw](https://raw.githubusercontent.com/azet12/KADhosts/master/KADhosts.txt) 19 | Nginx Ultimate Bad Bot & Referrer Spam Blocker | [Mitchell Krog](https://github.com/mitchellkrogza) | [Repository](https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/) | [Raw](https://raw.githubusercontent.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/master/_generator_lists/bad-referrers.list) 20 | SpotifyAds | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/SpotifyAds) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/SpotifyAds/hosts) 21 | The Big List of Hacked Malware Web Sites | [Mitchell Krog](https://github.com/mitchellkrogza) | [Repository](https://github.com//mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/) | [Raw](https://raw.githubusercontent.com/mitchellkrogza/The-Big-List-of-Hacked-Malware-Web-Sites/master/.dev-tools/_strip_domains/domains.txt) 22 | UncheckyAds | [Tomasz Przybył](https://github.com/FadeMind) | [Repository](https://github.com/FadeMind/hosts.extras/tree/master/UncheckyAds) | [Raw](https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts) 23 | 24 | Your list or repository is not listed here? Fill a new issue [here](https://github.com/funilrys/dead-hosts/issues/new?title=Please%20add%20my%20list%20or%20repository%20to%20the%20valuable%20links) :smile_cat: 25 | 26 | -------------------------------------------------------------------------------- 27 | 28 | # About Funceble 29 | 30 | To quote the most active user of [Funceble](https://github.com/funilrys/funceble): 31 | 32 | > [Funceble is an] Excellent script for checking ACTIVE, INACTIVE and EXPIRED Domain Names. 33 | 34 | ## Need more information? 35 | 36 | You can get more informations from the [repository](https://github.com/funilrys/funceble) or Funceble's [Wiki](https://github.com/funilrys/funceble/wiki). 37 | 38 | -------------------------------------------------------------------------------- 39 | 40 | # Supporting the project 41 | 42 | [Funceble](https://github.com/funilrys/funceble) and [dead-hosts](https://github.com/funilrys/dead-hosts) are powered by :coffee:! 43 | 44 | This project helps you and or you like it? Why don't you buy me a cup of :coffee: ? :smile_cat: 45 | 46 | [![Buy me a cup of coffee](https://img.shields.io/badge/Buy%20-me%20a%20cup%20of%20%E2%98%95-blue.svg)](https://www.paypal.me/funilrys/) 47 | -------------------------------------------------------------------------------- /SpotifyAds/README.md: -------------------------------------------------------------------------------- 1 | # SpotifyAds has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/SpotifyAds_git_FadeMind . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /Tracking@Disconnect.me/README.md: -------------------------------------------------------------------------------- 1 | # Tracking@Disconnect.me has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/Basic-tracking-list_web_disconnect.me . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /UncheckyAds/README.md: -------------------------------------------------------------------------------- 1 | # UncheckyAds has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/UncheckyAds_git_FadeMind . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /adaway.github.io@AdAway/README.md: -------------------------------------------------------------------------------- 1 | # adaway.github.io@AdAway has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/adaway.github.io_git_AdAway . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /add.2o7Net/README.md: -------------------------------------------------------------------------------- 1 | # add.2o7Net has been moved ! 2 | 3 | 4 | Please report to https://github.com/dead-hosts/add.2o7Net_git_FadeMind . 5 | 6 | -------------------------------------------------------------------------------- 7 | 8 | # About Dead-hosts 9 | 10 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 11 | 12 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 13 | 14 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 15 | 16 | -------------------------------------------------------------------------------- 17 | 18 | # About PyFunceble 19 | 20 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 21 | 22 | It also has been described by one of its most active user as: 23 | 24 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 25 | 26 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 27 | 28 | ## About the status returned by PyFunceble 29 | 30 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 31 | 32 | ### ACTIVE 33 | 34 | This status is returned when **one of the following cases** is met: 35 | 36 | - We can extract the expiration date from `Lookup().whois()`. 37 | 38 | - _Please note that we don't check if the date is in the past._ 39 | 40 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 41 | 42 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 43 | 44 | ### INACTIVE 45 | 46 | This status is returned when **all the following cases** are met: 47 | 48 | - We can't extract the expiration date from `Lookup().whois()`. 49 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 50 | 51 | ### INVALID 52 | 53 | This status is returned when **the following case** is met: 54 | 55 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 56 | 57 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 58 | -------------------------------------------------------------------------------- /add.Dead/README.md: -------------------------------------------------------------------------------- 1 | # add.Dead has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/add.Dead_git_FadeMind . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /add.Risk/README.md: -------------------------------------------------------------------------------- 1 | # add.Risk has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/add.Risk_git_FadeMind . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /add.Spam/README.md: -------------------------------------------------------------------------------- 1 | # add.Spam has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/add.Spam_git_FadeMind . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /cameleon@sysctl.org/README.md: -------------------------------------------------------------------------------- 1 | # cameleon@sysctl.org has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/cameleon_web_sysctl.org . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /currently_under_test: -------------------------------------------------------------------------------- 1 | Ads@Disconnect.me 2 | -------------------------------------------------------------------------------- /justdomains@mirror1.malwaredomains.com/README.md: -------------------------------------------------------------------------------- 1 | # justdomains@mirror1.malwaredomains.com has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/just-domains_web_malwaredomains.com . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /pl-host-file/README.md: -------------------------------------------------------------------------------- 1 | # pl-host-file has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/.pl-host-file_git_xxcriticxx . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /tyzbit/README.md: -------------------------------------------------------------------------------- 1 | # tyzbit has been moved ! 2 | 3 | Please report to https://github.com/dead-hosts/hosts_git_tyzbit . 4 | 5 | -------------------------------------------------------------------------------- 6 | 7 | # About Dead-hosts 8 | 9 | [Dead-Hosts](https://github.com/dead-hosts) is the replacement of the original idea behind this repository. 10 | 11 | Indeed, the idea was to test - with the help of PyFunceble and Travis CI - hosts file, list of domains or even bocklist in order to have a list of active domains. 12 | 13 | As this grew up it became impossible to have all those lists into one repository, that's why we use the GitHub organization system in order to create different repository for each list that has to be tested. 14 | 15 | -------------------------------------------------------------------------------- 16 | 17 | # About PyFunceble 18 | 19 | PyFunceble like [Funceble](https://github.com/funilrys/funceble) is A tool to check domains or IP availability by returning 3 possible [status](https://github.com/funilrys/PyFunceble/wiki/Columns#status): ACTIVE, INACTIVE or INVALID. 20 | 21 | It also has been described by one of its most active user as: 22 | 23 | > [An] excellent script for checking ACTIVE, INACTIVE and EXPIRED domain names. 24 | 25 | If you need further informations about PyFunceble or Funceble please report to our [Wiki page](https://github.com/funilrys/PyFunceble/wiki) and/or if you don't find any answer feel free to create an issue into one of the [Dead Hosts](https://github.com/search?q=user%3Adead-hosts&type=Repositories&utf8=%E2%9C%93)'s or [Py-Funceble](https://github.com/search?utf8=%E2%9C%93&q=funceble+user%3Afunilrys&type=)'s repositories. 26 | 27 | ## About the status returned by PyFunceble 28 | 29 | For an up to date version of this part please report to the [Status](https://github.com/funilrys/PyFunceble/wiki/Columns#status) section of our Wiki. 30 | 31 | ### ACTIVE 32 | 33 | This status is returned when **one of the following cases** is met: 34 | 35 | - We can extract the expiration date from `Lookup().whois()`. 36 | 37 | - _Please note that we don't check if the date is in the past._ 38 | 39 | - `Lookup().nslookup()` don't return `server can't find domain-name.me: NXDOMAIN`. 40 | 41 | - `HTTOCode().get()` return one the following code `[100, 101, 200, 201, 202, 203, 204, 205, 206]`. 42 | 43 | ### INACTIVE 44 | 45 | This status is returned when **all the following cases** are met: 46 | 47 | - We can't extract the expiration date from `Lookup().whois()`. 48 | - `Lookup().nslookup()` return `server can't find domain-name.me: NXDOMAIN`. 49 | 50 | ### INVALID 51 | 52 | This status is returned when **the following case** is met: 53 | 54 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 55 | 56 | - Understand by this that the extension **is not present into the `iana-domains-db.json` file**. 57 | -------------------------------------------------------------------------------- /yoyo.org/INACTIVE.hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 a.collective-media.net 5 | 0.0.0.0 adimage.asiaone.com.sg 6 | 0.0.0.0 ads.adultswim.com 7 | 0.0.0.0 ads.batpmturner.com 8 | 0.0.0.0 ads.canalblog.com 9 | 0.0.0.0 adserver.dotcommedia.de 10 | 0.0.0.0 ads.groundspeak.com 11 | 0.0.0.0 ads.newsquest.co.uk 12 | 0.0.0.0 ads.sift.co.uk 13 | 0.0.0.0 ads.trinitymirror.co.uk 14 | 0.0.0.0 clients.tbo.com 15 | 0.0.0.0 dmtracking2.alibaba.com 16 | 0.0.0.0 dmtracking.alibaba.com 17 | 0.0.0.0 lct.salesforce.com 18 | 0.0.0.0 touchclarity.natwest.com 19 | -------------------------------------------------------------------------------- /yoyo.org/INACTIVE.list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | a.collective-media.net 5 | adimage.asiaone.com.sg 6 | ads.adultswim.com 7 | ads.batpmturner.com 8 | ads.canalblog.com 9 | adserver.dotcommedia.de 10 | ads.groundspeak.com 11 | ads.newsquest.co.uk 12 | ads.sift.co.uk 13 | ads.trinitymirror.co.uk 14 | clients.tbo.com 15 | dmtracking2.alibaba.com 16 | dmtracking.alibaba.com 17 | lct.salesforce.com 18 | touchclarity.natwest.com 19 | -------------------------------------------------------------------------------- /yoyo.org/INVALID.hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 accounts.pkr.com.invalid 5 | 0.0.0.0 adfactor.nl.invalid 6 | 0.0.0.0 bravenet.com.invalid 7 | 0.0.0.0 cibleclick.com.invalid 8 | 0.0.0.0 gigya.com.invalid 9 | 0.0.0.0 globaltrack.com.invalid 10 | 0.0.0.0 naiadsystems.com.invalid 11 | 0.0.0.0 parse.ly.invalid 12 | 0.0.0.0 reedbusiness.com.invalid 13 | 0.0.0.0 seeq.com.invalid 14 | 0.0.0.0 test.invalid 15 | 0.0.0.0 top20.com.invalid 16 | 0.0.0.0 topmmorpgsites.com.invalid 17 | -------------------------------------------------------------------------------- /yoyo.org/INVALID.list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | accounts.pkr.com.invalid 5 | adfactor.nl.invalid 6 | bravenet.com.invalid 7 | cibleclick.com.invalid 8 | gigya.com.invalid 9 | globaltrack.com.invalid 10 | naiadsystems.com.invalid 11 | parse.ly.invalid 12 | reedbusiness.com.invalid 13 | seeq.com.invalid 14 | test.invalid 15 | top20.com.invalid 16 | topmmorpgsites.com.invalid 17 | -------------------------------------------------------------------------------- /yoyo.org/README.md: -------------------------------------------------------------------------------- 1 | # yoyo.org 2 | 3 | `hosts` file downloaded from: **https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext&useip=0.0.0.0** 4 | 5 | ## Status (From [Funceble Wiki](https://github.com/funilrys/funceble/wiki/Status/)) 6 | 7 | Here you can find pieces of information about the current returned status. 8 | 9 | ### ACTIVE 10 | 11 | - `whois` let us read the date of expiration 12 | - `nslookup` don't return `server can't find domain-name.me: NXDOMAIN` 13 | 14 | ### INACTIVE 15 | 16 | - `whois` don't let us read the date of expiration 17 | 18 | **AND** 19 | 20 | - `nslookup` return `server can't find domain-name.me: NXDOMAIN` 21 | 22 | ### INVALID 23 | 24 | - Domain extension has an invalid format or is unregistered in **[IANA](https://www.iana.org/domains/root/db) Root Zone Database**. 25 | 26 | 27 | -------------------------------------------------------------------------------- 28 | 29 | # About Funceble 30 | 31 | To quote the most active user of [Funceble](https://github.com/funilrys/funceble): 32 | 33 | > [Funceble is an] Excellent script for checking ACTIVE, INACTIVE and EXPIRED Domain Names. 34 | 35 | ## Need more information? 36 | 37 | You can get more informations from the [repository](https://github.com/funilrys/funceble) or Funceble's [Wiki](https://github.com/funilrys/funceble/wiki). 38 | -------------------------------------------------------------------------------- /yoyo.org/inactive_db: -------------------------------------------------------------------------------- 1 | a.collective-media.net 2 | ads.adultswim.com 3 | ads.batpmturner.com 4 | ads.canalblog.com 5 | adserver.dotcommedia.de 6 | ads.groundspeak.com 7 | ads.newsquest.co.uk 8 | ads.sift.co.uk 9 | ads.trinitymirror.co.uk 10 | clients.tbo.com 11 | dmtracking2.alibaba.com 12 | dmtracking.alibaba.com 13 | lct.salesforce.com 14 | touchclarity.natwest.com 15 | adimage.asiaone.com.sg 16 | -------------------------------------------------------------------------------- /yoyo.org/last_execution_time: -------------------------------------------------------------------------------- 1 | Sat Oct 28 18:35:20 UTC 2017 2 | -------------------------------------------------------------------------------- /yoyo.org/output/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/logs/ 4 | !/hosts/ 5 | !/splited/ 6 | !/HTTP_Analytic/ 7 | !/domains/ 8 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/POTENTIALLY_ACTIVE/ 5 | !/POTENTIALLY_INACTIVE/ 6 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_ACTIVE/000: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | accounts.pkr.com.invalid 5 | a.collective-media.net 6 | adfactor.nl.invalid 7 | adimage.asiaone.com.sg 8 | ads.adultswim.com 9 | ads.batpmturner.com 10 | adserver.dotcommedia.de 11 | ads.groundspeak.com 12 | ads.newsquest.co.uk 13 | ads.sift.co.uk 14 | ads.trinitymirror.co.uk 15 | bravenet.com.invalid 16 | cibleclick.com.invalid 17 | clients.tbo.com 18 | dmtracking2.alibaba.com 19 | dmtracking.alibaba.com 20 | gigya.com.invalid 21 | globaltrack.com.invalid 22 | lct.salesforce.com 23 | naiadsystems.com.invalid 24 | parse.ly.invalid 25 | reedbusiness.com.invalid 26 | seeq.com.invalid 27 | test.invalid 28 | top20.com.invalid 29 | topmmorpgsites.com.invalid 30 | touchclarity.natwest.com 31 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_ACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 accounts.pkr.com.invalid 5 | 0.0.0.0 a.collective-media.net 6 | 0.0.0.0 adfactor.nl.invalid 7 | 0.0.0.0 adimage.asiaone.com.sg 8 | 0.0.0.0 ads.adultswim.com 9 | 0.0.0.0 ads.batpmturner.com 10 | 0.0.0.0 adserver.dotcommedia.de 11 | 0.0.0.0 ads.groundspeak.com 12 | 0.0.0.0 ads.newsquest.co.uk 13 | 0.0.0.0 ads.sift.co.uk 14 | 0.0.0.0 ads.trinitymirror.co.uk 15 | 0.0.0.0 bravenet.com.invalid 16 | 0.0.0.0 cibleclick.com.invalid 17 | 0.0.0.0 clients.tbo.com 18 | 0.0.0.0 dmtracking2.alibaba.com 19 | 0.0.0.0 dmtracking.alibaba.com 20 | 0.0.0.0 gigya.com.invalid 21 | 0.0.0.0 globaltrack.com.invalid 22 | 0.0.0.0 lct.salesforce.com 23 | 0.0.0.0 naiadsystems.com.invalid 24 | 0.0.0.0 parse.ly.invalid 25 | 0.0.0.0 reedbusiness.com.invalid 26 | 0.0.0.0 seeq.com.invalid 27 | 0.0.0.0 test.invalid 28 | 0.0.0.0 top20.com.invalid 29 | 0.0.0.0 topmmorpgsites.com.invalid 30 | 0.0.0.0 touchclarity.natwest.com 31 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_ACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | accounts.pkr.com.invalid 5 | a.collective-media.net 6 | adfactor.nl.invalid 7 | adimage.asiaone.com.sg 8 | ads.adultswim.com 9 | ads.batpmturner.com 10 | adserver.dotcommedia.de 11 | ads.groundspeak.com 12 | ads.newsquest.co.uk 13 | ads.sift.co.uk 14 | ads.trinitymirror.co.uk 15 | bravenet.com.invalid 16 | cibleclick.com.invalid 17 | clients.tbo.com 18 | dmtracking2.alibaba.com 19 | dmtracking.alibaba.com 20 | gigya.com.invalid 21 | globaltrack.com.invalid 22 | lct.salesforce.com 23 | naiadsystems.com.invalid 24 | parse.ly.invalid 25 | reedbusiness.com.invalid 26 | seeq.com.invalid 27 | test.invalid 28 | top20.com.invalid 29 | topmmorpgsites.com.invalid 30 | touchclarity.natwest.com 31 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_ACTIVE/potentially_active.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 5 | Domain Status HTTP Code Analyse Date 6 | ---------------------------------------------------------------------------------------------------- ----------- ---------- ------------------------------- 7 | accounts.pkr.com.invalid INVALID 000 Sat Oct 28 17:55:30 UTC 2017 8 | a.collective-media.net INACTIVE 000 Sat Oct 28 17:55:31 UTC 2017 9 | adfactor.nl.invalid INVALID 000 Sat Oct 28 17:57:04 UTC 2017 10 | adimage.asiaone.com.sg INACTIVE 000 Sat Oct 28 17:57:27 UTC 2017 11 | ads.adultswim.com INACTIVE 000 Sat Oct 28 17:59:48 UTC 2017 12 | ads.batpmturner.com INACTIVE 000 Sat Oct 28 18:00:14 UTC 2017 13 | adserver.dotcommedia.de INACTIVE 000 Sat Oct 28 18:01:49 UTC 2017 14 | ads.groundspeak.com INACTIVE 000 Sat Oct 28 18:03:05 UTC 2017 15 | ads.newsquest.co.uk INACTIVE 000 Sat Oct 28 18:04:21 UTC 2017 16 | ads.sift.co.uk INACTIVE 000 Sat Oct 28 18:07:23 UTC 2017 17 | ads.trinitymirror.co.uk INACTIVE 000 Sat Oct 28 18:07:42 UTC 2017 18 | bravenet.com.invalid INVALID 000 Sat Oct 28 18:13:03 UTC 2017 19 | cibleclick.com.invalid INVALID 000 Sat Oct 28 18:13:41 UTC 2017 20 | clients.tbo.com INACTIVE 000 Sat Oct 28 18:14:14 UTC 2017 21 | dmtracking2.alibaba.com INACTIVE 000 Sat Oct 28 18:15:42 UTC 2017 22 | dmtracking.alibaba.com INACTIVE 000 Sat Oct 28 18:15:43 UTC 2017 23 | gigya.com.invalid INVALID 000 Sat Oct 28 18:19:37 UTC 2017 24 | globaltrack.com.invalid INVALID 000 Sat Oct 28 18:19:39 UTC 2017 25 | lct.salesforce.com INACTIVE 000 Sat Oct 28 18:21:43 UTC 2017 26 | naiadsystems.com.invalid INVALID 000 Sat Oct 28 18:23:35 UTC 2017 27 | parse.ly.invalid INVALID 000 Sat Oct 28 18:24:54 UTC 2017 28 | reedbusiness.com.invalid INVALID 000 Sat Oct 28 18:26:52 UTC 2017 29 | seeq.com.invalid INVALID 000 Sat Oct 28 18:27:46 UTC 2017 30 | test.invalid INVALID 000 Sat Oct 28 18:31:46 UTC 2017 31 | top20.com.invalid INVALID 000 Sat Oct 28 18:32:02 UTC 2017 32 | topmmorpgsites.com.invalid INVALID 000 Sat Oct 28 18:32:13 UTC 2017 33 | touchclarity.natwest.com INACTIVE 000 Sat Oct 28 18:32:24 UTC 2017 34 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/400: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 51yes.com 5 | a32.g.a.yimg.com 6 | ad.foxnetworks.com 7 | ads.ak.facebook.com.edgesuite.net 8 | adserver.bing.com 9 | ads.jobsite.co.uk 10 | ads.web.de 11 | banner.getgo.de 12 | banners.czi.cz 13 | bullseye.backbeatmedia.com 14 | cdn.freefacti.com 15 | fastclick.com.edgesuite.net 16 | realmedia-a800.d4p.net 17 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/403: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | a.aproductmsg.com 5 | adaction.de 6 | adcept.net 7 | ad.domainfactory.de 8 | adexchangegate.com 9 | adexchangeprediction.com 10 | adext.inkclub.com 11 | adimage.guardian.co.uk 12 | adjix.com 13 | ad.keenspace.com 14 | ad.lupa.cz 15 | adnetworkperformance.com 16 | ads10.speedbit.com 17 | ads2.contentabc.com 18 | ads2.xnet.cz 19 | ads3.contentabc.com 20 | ads.adfox.ru 21 | ads.administrator.de 22 | ads.betfair.com 23 | ads.bigfoot.com 24 | ads.bumq.com 25 | ads.eagletribune.com 26 | ads.easy-forex.com 27 | adserver1.backbeatmedia.com 28 | adserver.break-even.it 29 | ads.fairfax.com.au 30 | ads.fool.com 31 | ads.foxnews.com 32 | ads.gamershell.com 33 | ads.grindinggears.com 34 | ads.kelbymediagroup.com 35 | ad.smartclip.net 36 | adsmart.net 37 | ads.nationalgeographic.com 38 | ads.psd2html.com 39 | ads.rcs.it 40 | ads.s3.sitepoint.com 41 | ads.ultimate-guitar.com 42 | ads.v3.com 43 | ads.webmasterpoint.org 44 | ads.wikia.nocookie.net 45 | ads.yldmgrimg.net 46 | ad.thewheelof.com 47 | adv.cooperhosting.net 48 | adverticus.de 49 | adyea.com 50 | adzerk.s3.amazonaws.com 51 | affiliation-france.com 52 | alexa-sitestats.s3.amazonaws.com 53 | a.mktw.net 54 | analytics.live.com 55 | a.ucoz.net 56 | banik.redigy.cz 57 | banner.casinodelrio.com 58 | banner.eurogrand.com 59 | banners.isoftmarketing.com 60 | banners.videosz.com 61 | banners.virtuagirlhd.com 62 | banners.wunderground.com 63 | bidvertiser.com 64 | bpath.com 65 | buzzonclick.com 66 | campaign.bharatmatrimony.com 67 | cbanners.virtuagirlhd.com 68 | ceskydomov.alias.ngs.modry.cz 69 | clickbank.net 70 | click.fool.com 71 | clicktag.de 72 | clickthrutraffic.com 73 | clicktrack.ziyu.net 74 | compactbanner.com 75 | counter.mojgorod.ru 76 | counter.snackly.co 77 | count.west263.com 78 | discountclick.com 79 | dmtracker.com 80 | entrecard.s3.amazonaws.com 81 | etahub.com 82 | eu1.madsone.com 83 | eur.a1.yimg.com 84 | euros4click.de 85 | fast-adv.it 86 | fqtag.com 87 | fragmentserv.iac-online.de 88 | freestats.tv 89 | freewebcounter.com 90 | gbanners.hornymatches.com 91 | hidden.gogoceleb.com 92 | hyperbanner.net 93 | ia.iinfo.cz 94 | icptrack.com 95 | ientrymail.com 96 | ifa.tube8live.com 97 | ilead.itrack.it 98 | imageads.canoe.ca 99 | images.v3.com 100 | links-ranking.de 101 | linkswaper.com 102 | linktarget.com 103 | liveadexchanger.com 104 | logger.snackly.co 105 | megacash.de 106 | ndparking.com 107 | neocounter.neoworx-blog-tools.net 108 | netclickstats.com 109 | newads.bangbros.com 110 | oas.benchmark.fr 111 | openx.blindferret.com 112 | ordingly.com 113 | pagerank4you.com 114 | pbterra.com 115 | pcash.imlive.com 116 | pixel.redditmedia.com 117 | protraffic.com 118 | publicidad.elmundo.es 119 | ranking-hits.de 120 | ratings.lycos.com 121 | s.adroll.com 122 | scripte-monster.de 123 | shareadspace.com 124 | sher.index.hu 125 | spykemediatrack.co 126 | srwww1.com 127 | stat.dealtime.com 128 | static.itrack.it 129 | statistik-gallup.net 130 | stats.olark.com 131 | stats.townnews.com 132 | stats.unwired-i.net 133 | suavalds.com 134 | t.pusk.ru 135 | tradeadexchange.com 136 | trafficleader.com 137 | tvmtracker.com 138 | us.a1.yimg.com 139 | utils.mediageneral.net 140 | view4cash.de 141 | werbung.meteoxpress.com 142 | whaleads.com 143 | witch-counter.de 144 | wondoads.de 145 | yab-adimages.s3.amazonaws.com 146 | yieldtraffic.com 147 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/404: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 4d5.net 5 | ad.a8.net 6 | ad.abum.com 7 | ad.altervista.org 8 | adap.tv 9 | ad.auditude.com 10 | ad.bnmla.com 11 | ad.caradisiac.com 12 | adcast.deviantart.com 13 | adgardener.com 14 | adimg1.chosun.com 15 | adimg.uimserv.net 16 | adnet.asahi.com 17 | adnet-media.net 18 | adrolays.de 19 | adrotate.de 20 | adrotator.se 21 | ads1.virtual-nights.com 22 | ads2.virtual-nights.com 23 | ads3.virtual-nights.com 24 | ads4.virtual-nights.com 25 | ads5.virtual-nights.com 26 | ads.adultfriendfinder.com 27 | ads.alt.com 28 | ads.amigos.com 29 | ads.asiafriendfinder.com 30 | ads.aspalliance.com 31 | ads.bigchurch.com 32 | ads.bittorrent.com 33 | ads.canalblog.com 34 | ads.cc-dt.com 35 | ads.centraliprom.com 36 | ads.cgnetworks.com 37 | ads.contextweb.com 38 | ads.creative-serving.com 39 | ads.datingyes.com 40 | ads.deviantart.com 41 | ads.domain.com 42 | ad.sensismediasmart.com.au 43 | adserver.viagogo.com 44 | adserver.yahoo.com 45 | ads.expat-blog.biz 46 | ads.ferianc.com 47 | ads.friendfinder.com 48 | ads.glispa.com 49 | ads.gmodules.com 50 | ads.gradfinder.com 51 | ads.hollywood.com 52 | adshost1.com 53 | ads.jewishfriendfinder.com 54 | ads.jpost.com 55 | ads.kinxxx.com 56 | ads.lesbianpersonals.com 57 | ads.moceanads.com 58 | ads.newmedia.cz 59 | ads.okcimg.com 60 | ads.outpersonals.com 61 | ads.passion.com 62 | ads.pushplay.com 63 | adsrvr.org 64 | ads.seniorfriendfinder.com 65 | ads.slim.com 66 | ads.stackoverflow.com 67 | ads.themovienation.com 68 | ads.tripod.com 69 | adsys.townnews.com 70 | advideo.uimserv.net 71 | ad.virtual-nights.com 72 | affbuzzads.com 73 | ard.xxxblackbook.com 74 | as.webmd.com 75 | a.ucoz.ru 76 | avpa.javalobby.org 77 | banners.sexsearch.com 78 | b.aol.com 79 | b.engadget.com 80 | bs.yandex.ru 81 | clickserve.cc-dt.com 82 | clientmetrics-pa.googleapis.com 83 | cpxinteractive.com 84 | d.adroll.com 85 | enquisite.com 86 | googleadservices.com 87 | gp.dejanews.com 88 | iad.anm.co.uk 89 | idcounter.com 90 | mas.sector.sk 91 | max.i12.de 92 | mbs.megaroticlive.com 93 | measuremap.com 94 | mobclix.com 95 | ota.cartrawler.com 96 | otto-images.developershed.com 97 | pagead.l.google.com 98 | partnerad.l.google.com 99 | pixel.jumptap.com 100 | reklama.mironet.cz 101 | reklam.rfsl.se 102 | servedbyadbutler.com 103 | spacash.com 104 | t.insigit.com 105 | track.gawker.com 106 | traffic.focuusing.com 107 | trafficspaces.net 108 | video-stats.video.google.com 109 | web2.deja.com 110 | webmasterplan.de 111 | ws-gateway.com 112 | www8.glam.com 113 | www-google-analytics.l.google.com 114 | yieldlab.net 115 | zantracker.com 116 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/410: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | ads.linuxfoundation.org 5 | pubs.lemonde.fr 6 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 4d5.net 5 | 0.0.0.0 51yes.com 6 | 0.0.0.0 a32.g.a.yimg.com 7 | 0.0.0.0 a.aproductmsg.com 8 | 0.0.0.0 ad.a8.net 9 | 0.0.0.0 ad.abum.com 10 | 0.0.0.0 adaction.de 11 | 0.0.0.0 ad.altervista.org 12 | 0.0.0.0 adap.tv 13 | 0.0.0.0 ad.auditude.com 14 | 0.0.0.0 ad.bnmla.com 15 | 0.0.0.0 ad.caradisiac.com 16 | 0.0.0.0 adcast.deviantart.com 17 | 0.0.0.0 adcept.net 18 | 0.0.0.0 ad.domainfactory.de 19 | 0.0.0.0 adexchangegate.com 20 | 0.0.0.0 adexchangeprediction.com 21 | 0.0.0.0 adext.inkclub.com 22 | 0.0.0.0 ad.foxnetworks.com 23 | 0.0.0.0 adgardener.com 24 | 0.0.0.0 adimage.guardian.co.uk 25 | 0.0.0.0 adimg1.chosun.com 26 | 0.0.0.0 adimg.uimserv.net 27 | 0.0.0.0 adjix.com 28 | 0.0.0.0 ad.keenspace.com 29 | 0.0.0.0 ad.lupa.cz 30 | 0.0.0.0 adnet.asahi.com 31 | 0.0.0.0 adnet-media.net 32 | 0.0.0.0 adnetworkperformance.com 33 | 0.0.0.0 adrolays.de 34 | 0.0.0.0 adrotate.de 35 | 0.0.0.0 adrotator.se 36 | 0.0.0.0 ads10.speedbit.com 37 | 0.0.0.0 ads1.virtual-nights.com 38 | 0.0.0.0 ads2.contentabc.com 39 | 0.0.0.0 ads2.virtual-nights.com 40 | 0.0.0.0 ads2.xnet.cz 41 | 0.0.0.0 ads3.contentabc.com 42 | 0.0.0.0 ads3.virtual-nights.com 43 | 0.0.0.0 ads4.virtual-nights.com 44 | 0.0.0.0 ads5.virtual-nights.com 45 | 0.0.0.0 ads.adfox.ru 46 | 0.0.0.0 ads.administrator.de 47 | 0.0.0.0 ads.adultfriendfinder.com 48 | 0.0.0.0 ads.ak.facebook.com.edgesuite.net 49 | 0.0.0.0 ads.alt.com 50 | 0.0.0.0 ads.amigos.com 51 | 0.0.0.0 ads.asiafriendfinder.com 52 | 0.0.0.0 ads.aspalliance.com 53 | 0.0.0.0 ads.betfair.com 54 | 0.0.0.0 ads.bigchurch.com 55 | 0.0.0.0 ads.bigfoot.com 56 | 0.0.0.0 ads.bittorrent.com 57 | 0.0.0.0 ads.bumq.com 58 | 0.0.0.0 ads.canalblog.com 59 | 0.0.0.0 ads.cc-dt.com 60 | 0.0.0.0 ads.centraliprom.com 61 | 0.0.0.0 ads.cgnetworks.com 62 | 0.0.0.0 ads.contextweb.com 63 | 0.0.0.0 ads.creative-serving.com 64 | 0.0.0.0 ads.datingyes.com 65 | 0.0.0.0 ads.deviantart.com 66 | 0.0.0.0 ads.domain.com 67 | 0.0.0.0 ads.eagletribune.com 68 | 0.0.0.0 ads.easy-forex.com 69 | 0.0.0.0 ad.sensismediasmart.com.au 70 | 0.0.0.0 adserver1.backbeatmedia.com 71 | 0.0.0.0 adserver.bing.com 72 | 0.0.0.0 adserver.break-even.it 73 | 0.0.0.0 adserver.viagogo.com 74 | 0.0.0.0 adserver.yahoo.com 75 | 0.0.0.0 ads.expat-blog.biz 76 | 0.0.0.0 ads.fairfax.com.au 77 | 0.0.0.0 ads.ferianc.com 78 | 0.0.0.0 ads.fool.com 79 | 0.0.0.0 ads.foxnews.com 80 | 0.0.0.0 ads.friendfinder.com 81 | 0.0.0.0 ads.gamershell.com 82 | 0.0.0.0 ads.glispa.com 83 | 0.0.0.0 ads.gmodules.com 84 | 0.0.0.0 ads.gradfinder.com 85 | 0.0.0.0 ads.grindinggears.com 86 | 0.0.0.0 ads.hollywood.com 87 | 0.0.0.0 adshost1.com 88 | 0.0.0.0 ads.jewishfriendfinder.com 89 | 0.0.0.0 ads.jobsite.co.uk 90 | 0.0.0.0 ads.jpost.com 91 | 0.0.0.0 ads.kelbymediagroup.com 92 | 0.0.0.0 ads.kinxxx.com 93 | 0.0.0.0 ads.lesbianpersonals.com 94 | 0.0.0.0 ads.linuxfoundation.org 95 | 0.0.0.0 ad.smartclip.net 96 | 0.0.0.0 adsmart.net 97 | 0.0.0.0 ads.moceanads.com 98 | 0.0.0.0 ads.nationalgeographic.com 99 | 0.0.0.0 ads.newmedia.cz 100 | 0.0.0.0 ads.okcimg.com 101 | 0.0.0.0 ads.outpersonals.com 102 | 0.0.0.0 ads.passion.com 103 | 0.0.0.0 ads.psd2html.com 104 | 0.0.0.0 ads.pushplay.com 105 | 0.0.0.0 ads.rcs.it 106 | 0.0.0.0 adsrvr.org 107 | 0.0.0.0 ads.s3.sitepoint.com 108 | 0.0.0.0 ads.seniorfriendfinder.com 109 | 0.0.0.0 ads.slim.com 110 | 0.0.0.0 ads.stackoverflow.com 111 | 0.0.0.0 ads.themovienation.com 112 | 0.0.0.0 ads.tripod.com 113 | 0.0.0.0 ads.ultimate-guitar.com 114 | 0.0.0.0 ads.v3.com 115 | 0.0.0.0 ads.web.de 116 | 0.0.0.0 ads.webmasterpoint.org 117 | 0.0.0.0 ads.wikia.nocookie.net 118 | 0.0.0.0 ads.yldmgrimg.net 119 | 0.0.0.0 adsys.townnews.com 120 | 0.0.0.0 ad.thewheelof.com 121 | 0.0.0.0 adv.cooperhosting.net 122 | 0.0.0.0 adverticus.de 123 | 0.0.0.0 advideo.uimserv.net 124 | 0.0.0.0 ad.virtual-nights.com 125 | 0.0.0.0 adyea.com 126 | 0.0.0.0 adzerk.s3.amazonaws.com 127 | 0.0.0.0 affbuzzads.com 128 | 0.0.0.0 affiliation-france.com 129 | 0.0.0.0 alexa-sitestats.s3.amazonaws.com 130 | 0.0.0.0 a.mktw.net 131 | 0.0.0.0 analytics.live.com 132 | 0.0.0.0 ard.xxxblackbook.com 133 | 0.0.0.0 as.webmd.com 134 | 0.0.0.0 a.ucoz.net 135 | 0.0.0.0 a.ucoz.ru 136 | 0.0.0.0 avpa.javalobby.org 137 | 0.0.0.0 banik.redigy.cz 138 | 0.0.0.0 banner.casinodelrio.com 139 | 0.0.0.0 banner.eurogrand.com 140 | 0.0.0.0 banner.getgo.de 141 | 0.0.0.0 banners.czi.cz 142 | 0.0.0.0 banners.isoftmarketing.com 143 | 0.0.0.0 banners.sexsearch.com 144 | 0.0.0.0 banners.videosz.com 145 | 0.0.0.0 banners.virtuagirlhd.com 146 | 0.0.0.0 banners.wunderground.com 147 | 0.0.0.0 b.aol.com 148 | 0.0.0.0 b.engadget.com 149 | 0.0.0.0 bidvertiser.com 150 | 0.0.0.0 bpath.com 151 | 0.0.0.0 bs.yandex.ru 152 | 0.0.0.0 bullseye.backbeatmedia.com 153 | 0.0.0.0 buzzonclick.com 154 | 0.0.0.0 campaign.bharatmatrimony.com 155 | 0.0.0.0 cbanners.virtuagirlhd.com 156 | 0.0.0.0 cdn.freefacti.com 157 | 0.0.0.0 ceskydomov.alias.ngs.modry.cz 158 | 0.0.0.0 clickbank.net 159 | 0.0.0.0 click.fool.com 160 | 0.0.0.0 clickserve.cc-dt.com 161 | 0.0.0.0 clicktag.de 162 | 0.0.0.0 clickthrutraffic.com 163 | 0.0.0.0 clicktrack.ziyu.net 164 | 0.0.0.0 clientmetrics-pa.googleapis.com 165 | 0.0.0.0 compactbanner.com 166 | 0.0.0.0 counter.mojgorod.ru 167 | 0.0.0.0 counter.snackly.co 168 | 0.0.0.0 count.west263.com 169 | 0.0.0.0 cpxinteractive.com 170 | 0.0.0.0 d.adroll.com 171 | 0.0.0.0 discountclick.com 172 | 0.0.0.0 dmtracker.com 173 | 0.0.0.0 enquisite.com 174 | 0.0.0.0 entrecard.s3.amazonaws.com 175 | 0.0.0.0 etahub.com 176 | 0.0.0.0 eu1.madsone.com 177 | 0.0.0.0 eur.a1.yimg.com 178 | 0.0.0.0 euros4click.de 179 | 0.0.0.0 fast-adv.it 180 | 0.0.0.0 fastclick.com.edgesuite.net 181 | 0.0.0.0 fqtag.com 182 | 0.0.0.0 fragmentserv.iac-online.de 183 | 0.0.0.0 freestats.tv 184 | 0.0.0.0 freewebcounter.com 185 | 0.0.0.0 gbanners.hornymatches.com 186 | 0.0.0.0 googleadservices.com 187 | 0.0.0.0 gp.dejanews.com 188 | 0.0.0.0 hidden.gogoceleb.com 189 | 0.0.0.0 hyperbanner.net 190 | 0.0.0.0 iad.anm.co.uk 191 | 0.0.0.0 ia.iinfo.cz 192 | 0.0.0.0 icptrack.com 193 | 0.0.0.0 idcounter.com 194 | 0.0.0.0 ientrymail.com 195 | 0.0.0.0 ifa.tube8live.com 196 | 0.0.0.0 ilead.itrack.it 197 | 0.0.0.0 imageads.canoe.ca 198 | 0.0.0.0 images.v3.com 199 | 0.0.0.0 links-ranking.de 200 | 0.0.0.0 linkswaper.com 201 | 0.0.0.0 linktarget.com 202 | 0.0.0.0 liveadexchanger.com 203 | 0.0.0.0 logger.snackly.co 204 | 0.0.0.0 mas.sector.sk 205 | 0.0.0.0 max.i12.de 206 | 0.0.0.0 mbs.megaroticlive.com 207 | 0.0.0.0 measuremap.com 208 | 0.0.0.0 megacash.de 209 | 0.0.0.0 mobclix.com 210 | 0.0.0.0 ndparking.com 211 | 0.0.0.0 neocounter.neoworx-blog-tools.net 212 | 0.0.0.0 netclickstats.com 213 | 0.0.0.0 newads.bangbros.com 214 | 0.0.0.0 oas.benchmark.fr 215 | 0.0.0.0 openx.blindferret.com 216 | 0.0.0.0 ordingly.com 217 | 0.0.0.0 ota.cartrawler.com 218 | 0.0.0.0 otto-images.developershed.com 219 | 0.0.0.0 pagead.l.google.com 220 | 0.0.0.0 pagerank4you.com 221 | 0.0.0.0 partnerad.l.google.com 222 | 0.0.0.0 pbterra.com 223 | 0.0.0.0 pcash.imlive.com 224 | 0.0.0.0 pixel.jumptap.com 225 | 0.0.0.0 pixel.redditmedia.com 226 | 0.0.0.0 protraffic.com 227 | 0.0.0.0 publicidad.elmundo.es 228 | 0.0.0.0 pubs.lemonde.fr 229 | 0.0.0.0 ranking-hits.de 230 | 0.0.0.0 ratings.lycos.com 231 | 0.0.0.0 realmedia-a800.d4p.net 232 | 0.0.0.0 reklama.mironet.cz 233 | 0.0.0.0 reklam.rfsl.se 234 | 0.0.0.0 s.adroll.com 235 | 0.0.0.0 scripte-monster.de 236 | 0.0.0.0 servedbyadbutler.com 237 | 0.0.0.0 shareadspace.com 238 | 0.0.0.0 sher.index.hu 239 | 0.0.0.0 spacash.com 240 | 0.0.0.0 spykemediatrack.co 241 | 0.0.0.0 srwww1.com 242 | 0.0.0.0 stat.dealtime.com 243 | 0.0.0.0 static.itrack.it 244 | 0.0.0.0 statistik-gallup.net 245 | 0.0.0.0 stats.olark.com 246 | 0.0.0.0 stats.townnews.com 247 | 0.0.0.0 stats.unwired-i.net 248 | 0.0.0.0 suavalds.com 249 | 0.0.0.0 t.insigit.com 250 | 0.0.0.0 t.pusk.ru 251 | 0.0.0.0 track.gawker.com 252 | 0.0.0.0 tradeadexchange.com 253 | 0.0.0.0 traffic.focuusing.com 254 | 0.0.0.0 trafficleader.com 255 | 0.0.0.0 trafficspaces.net 256 | 0.0.0.0 tvmtracker.com 257 | 0.0.0.0 us.a1.yimg.com 258 | 0.0.0.0 utils.mediageneral.net 259 | 0.0.0.0 video-stats.video.google.com 260 | 0.0.0.0 view4cash.de 261 | 0.0.0.0 web2.deja.com 262 | 0.0.0.0 webmasterplan.de 263 | 0.0.0.0 werbung.meteoxpress.com 264 | 0.0.0.0 whaleads.com 265 | 0.0.0.0 witch-counter.de 266 | 0.0.0.0 wondoads.de 267 | 0.0.0.0 ws-gateway.com 268 | 0.0.0.0 www8.glam.com 269 | 0.0.0.0 www-google-analytics.l.google.com 270 | 0.0.0.0 yab-adimages.s3.amazonaws.com 271 | 0.0.0.0 yieldlab.net 272 | 0.0.0.0 yieldtraffic.com 273 | 0.0.0.0 zantracker.com 274 | -------------------------------------------------------------------------------- /yoyo.org/output/HTTP_Analytic/POTENTIALLY_INACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 4d5.net 5 | 51yes.com 6 | a32.g.a.yimg.com 7 | a.aproductmsg.com 8 | ad.a8.net 9 | ad.abum.com 10 | adaction.de 11 | ad.altervista.org 12 | adap.tv 13 | ad.auditude.com 14 | ad.bnmla.com 15 | ad.caradisiac.com 16 | adcast.deviantart.com 17 | adcept.net 18 | ad.domainfactory.de 19 | adexchangegate.com 20 | adexchangeprediction.com 21 | adext.inkclub.com 22 | ad.foxnetworks.com 23 | adgardener.com 24 | adimage.guardian.co.uk 25 | adimg1.chosun.com 26 | adimg.uimserv.net 27 | adjix.com 28 | ad.keenspace.com 29 | ad.lupa.cz 30 | adnet.asahi.com 31 | adnet-media.net 32 | adnetworkperformance.com 33 | adrolays.de 34 | adrotate.de 35 | adrotator.se 36 | ads10.speedbit.com 37 | ads1.virtual-nights.com 38 | ads2.contentabc.com 39 | ads2.virtual-nights.com 40 | ads2.xnet.cz 41 | ads3.contentabc.com 42 | ads3.virtual-nights.com 43 | ads4.virtual-nights.com 44 | ads5.virtual-nights.com 45 | ads.adfox.ru 46 | ads.administrator.de 47 | ads.adultfriendfinder.com 48 | ads.ak.facebook.com.edgesuite.net 49 | ads.alt.com 50 | ads.amigos.com 51 | ads.asiafriendfinder.com 52 | ads.aspalliance.com 53 | ads.betfair.com 54 | ads.bigchurch.com 55 | ads.bigfoot.com 56 | ads.bittorrent.com 57 | ads.bumq.com 58 | ads.canalblog.com 59 | ads.cc-dt.com 60 | ads.centraliprom.com 61 | ads.cgnetworks.com 62 | ads.contextweb.com 63 | ads.creative-serving.com 64 | ads.datingyes.com 65 | ads.deviantart.com 66 | ads.domain.com 67 | ads.eagletribune.com 68 | ads.easy-forex.com 69 | ad.sensismediasmart.com.au 70 | adserver1.backbeatmedia.com 71 | adserver.bing.com 72 | adserver.break-even.it 73 | adserver.viagogo.com 74 | adserver.yahoo.com 75 | ads.expat-blog.biz 76 | ads.fairfax.com.au 77 | ads.ferianc.com 78 | ads.fool.com 79 | ads.foxnews.com 80 | ads.friendfinder.com 81 | ads.gamershell.com 82 | ads.glispa.com 83 | ads.gmodules.com 84 | ads.gradfinder.com 85 | ads.grindinggears.com 86 | ads.hollywood.com 87 | adshost1.com 88 | ads.jewishfriendfinder.com 89 | ads.jobsite.co.uk 90 | ads.jpost.com 91 | ads.kelbymediagroup.com 92 | ads.kinxxx.com 93 | ads.lesbianpersonals.com 94 | ads.linuxfoundation.org 95 | ad.smartclip.net 96 | adsmart.net 97 | ads.moceanads.com 98 | ads.nationalgeographic.com 99 | ads.newmedia.cz 100 | ads.okcimg.com 101 | ads.outpersonals.com 102 | ads.passion.com 103 | ads.psd2html.com 104 | ads.pushplay.com 105 | ads.rcs.it 106 | adsrvr.org 107 | ads.s3.sitepoint.com 108 | ads.seniorfriendfinder.com 109 | ads.slim.com 110 | ads.stackoverflow.com 111 | ads.themovienation.com 112 | ads.tripod.com 113 | ads.ultimate-guitar.com 114 | ads.v3.com 115 | ads.web.de 116 | ads.webmasterpoint.org 117 | ads.wikia.nocookie.net 118 | ads.yldmgrimg.net 119 | adsys.townnews.com 120 | ad.thewheelof.com 121 | adv.cooperhosting.net 122 | adverticus.de 123 | advideo.uimserv.net 124 | ad.virtual-nights.com 125 | adyea.com 126 | adzerk.s3.amazonaws.com 127 | affbuzzads.com 128 | affiliation-france.com 129 | alexa-sitestats.s3.amazonaws.com 130 | a.mktw.net 131 | analytics.live.com 132 | ard.xxxblackbook.com 133 | as.webmd.com 134 | a.ucoz.net 135 | a.ucoz.ru 136 | avpa.javalobby.org 137 | banik.redigy.cz 138 | banner.casinodelrio.com 139 | banner.eurogrand.com 140 | banner.getgo.de 141 | banners.czi.cz 142 | banners.isoftmarketing.com 143 | banners.sexsearch.com 144 | banners.videosz.com 145 | banners.virtuagirlhd.com 146 | banners.wunderground.com 147 | b.aol.com 148 | b.engadget.com 149 | bidvertiser.com 150 | bpath.com 151 | bs.yandex.ru 152 | bullseye.backbeatmedia.com 153 | buzzonclick.com 154 | campaign.bharatmatrimony.com 155 | cbanners.virtuagirlhd.com 156 | cdn.freefacti.com 157 | ceskydomov.alias.ngs.modry.cz 158 | clickbank.net 159 | click.fool.com 160 | clickserve.cc-dt.com 161 | clicktag.de 162 | clickthrutraffic.com 163 | clicktrack.ziyu.net 164 | clientmetrics-pa.googleapis.com 165 | compactbanner.com 166 | counter.mojgorod.ru 167 | counter.snackly.co 168 | count.west263.com 169 | cpxinteractive.com 170 | d.adroll.com 171 | discountclick.com 172 | dmtracker.com 173 | enquisite.com 174 | entrecard.s3.amazonaws.com 175 | etahub.com 176 | eu1.madsone.com 177 | eur.a1.yimg.com 178 | euros4click.de 179 | fast-adv.it 180 | fastclick.com.edgesuite.net 181 | fqtag.com 182 | fragmentserv.iac-online.de 183 | freestats.tv 184 | freewebcounter.com 185 | gbanners.hornymatches.com 186 | googleadservices.com 187 | gp.dejanews.com 188 | hidden.gogoceleb.com 189 | hyperbanner.net 190 | iad.anm.co.uk 191 | ia.iinfo.cz 192 | icptrack.com 193 | idcounter.com 194 | ientrymail.com 195 | ifa.tube8live.com 196 | ilead.itrack.it 197 | imageads.canoe.ca 198 | images.v3.com 199 | links-ranking.de 200 | linkswaper.com 201 | linktarget.com 202 | liveadexchanger.com 203 | logger.snackly.co 204 | mas.sector.sk 205 | max.i12.de 206 | mbs.megaroticlive.com 207 | measuremap.com 208 | megacash.de 209 | mobclix.com 210 | ndparking.com 211 | neocounter.neoworx-blog-tools.net 212 | netclickstats.com 213 | newads.bangbros.com 214 | oas.benchmark.fr 215 | openx.blindferret.com 216 | ordingly.com 217 | ota.cartrawler.com 218 | otto-images.developershed.com 219 | pagead.l.google.com 220 | pagerank4you.com 221 | partnerad.l.google.com 222 | pbterra.com 223 | pcash.imlive.com 224 | pixel.jumptap.com 225 | pixel.redditmedia.com 226 | protraffic.com 227 | publicidad.elmundo.es 228 | pubs.lemonde.fr 229 | ranking-hits.de 230 | ratings.lycos.com 231 | realmedia-a800.d4p.net 232 | reklama.mironet.cz 233 | reklam.rfsl.se 234 | s.adroll.com 235 | scripte-monster.de 236 | servedbyadbutler.com 237 | shareadspace.com 238 | sher.index.hu 239 | spacash.com 240 | spykemediatrack.co 241 | srwww1.com 242 | stat.dealtime.com 243 | static.itrack.it 244 | statistik-gallup.net 245 | stats.olark.com 246 | stats.townnews.com 247 | stats.unwired-i.net 248 | suavalds.com 249 | t.insigit.com 250 | t.pusk.ru 251 | track.gawker.com 252 | tradeadexchange.com 253 | traffic.focuusing.com 254 | trafficleader.com 255 | trafficspaces.net 256 | tvmtracker.com 257 | us.a1.yimg.com 258 | utils.mediageneral.net 259 | video-stats.video.google.com 260 | view4cash.de 261 | web2.deja.com 262 | webmasterplan.de 263 | werbung.meteoxpress.com 264 | whaleads.com 265 | witch-counter.de 266 | wondoads.de 267 | ws-gateway.com 268 | www8.glam.com 269 | www-google-analytics.l.google.com 270 | yab-adimages.s3.amazonaws.com 271 | yieldlab.net 272 | yieldtraffic.com 273 | zantracker.com 274 | -------------------------------------------------------------------------------- /yoyo.org/output/continue.txt: -------------------------------------------------------------------------------- 1 | /home/travis/build/funilrys/dead-hosts/yoyo.org/tested-list/yoyo.org.list zv1.november-lax.com 2470 2442 15 13 2 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/INACTIVE/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | a.collective-media.net 5 | adimage.asiaone.com.sg 6 | ads.adultswim.com 7 | ads.batpmturner.com 8 | ads.canalblog.com 9 | adserver.dotcommedia.de 10 | ads.groundspeak.com 11 | ads.newsquest.co.uk 12 | ads.sift.co.uk 13 | ads.trinitymirror.co.uk 14 | clients.tbo.com 15 | dmtracking2.alibaba.com 16 | dmtracking.alibaba.com 17 | lct.salesforce.com 18 | touchclarity.natwest.com 19 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/INVALID/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/domains/INVALID/list: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | accounts.pkr.com.invalid 5 | adfactor.nl.invalid 6 | bravenet.com.invalid 7 | cibleclick.com.invalid 8 | gigya.com.invalid 9 | globaltrack.com.invalid 10 | naiadsystems.com.invalid 11 | parse.ly.invalid 12 | reedbusiness.com.invalid 13 | seeq.com.invalid 14 | test.invalid 15 | top20.com.invalid 16 | topmmorpgsites.com.invalid 17 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/ACTIVE/ 4 | !/INACTIVE/ 5 | !/INVALID/ 6 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/ACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/INACTIVE/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/INACTIVE/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 a.collective-media.net 5 | 0.0.0.0 adimage.asiaone.com.sg 6 | 0.0.0.0 ads.adultswim.com 7 | 0.0.0.0 ads.batpmturner.com 8 | 0.0.0.0 ads.canalblog.com 9 | 0.0.0.0 adserver.dotcommedia.de 10 | 0.0.0.0 ads.groundspeak.com 11 | 0.0.0.0 ads.newsquest.co.uk 12 | 0.0.0.0 ads.sift.co.uk 13 | 0.0.0.0 ads.trinitymirror.co.uk 14 | 0.0.0.0 clients.tbo.com 15 | 0.0.0.0 dmtracking2.alibaba.com 16 | 0.0.0.0 dmtracking.alibaba.com 17 | 0.0.0.0 lct.salesforce.com 18 | 0.0.0.0 touchclarity.natwest.com 19 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/INVALID/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/hosts/INVALID/hosts: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 0.0.0.0 accounts.pkr.com.invalid 5 | 0.0.0.0 adfactor.nl.invalid 6 | 0.0.0.0 bravenet.com.invalid 7 | 0.0.0.0 cibleclick.com.invalid 8 | 0.0.0.0 gigya.com.invalid 9 | 0.0.0.0 globaltrack.com.invalid 10 | 0.0.0.0 naiadsystems.com.invalid 11 | 0.0.0.0 parse.ly.invalid 12 | 0.0.0.0 reedbusiness.com.invalid 13 | 0.0.0.0 seeq.com.invalid 14 | 0.0.0.0 test.invalid 15 | 0.0.0.0 top20.com.invalid 16 | 0.0.0.0 topmmorpgsites.com.invalid 17 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !/whois/ 4 | !/dateFormat/ 5 | !/percentage/ 6 | !/noReferer/ 7 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/dateFormat/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/execution.log: -------------------------------------------------------------------------------- 1 | Execution Time log of Sat Oct 28 18:07:06 UTC 2017 2 | ---------------------------------------------------------------- 3 | Start: 1509214026 4 | Execution Time log of Sat Oct 28 18:19:14 UTC 2017 5 | ---------------------------------------------------------------- 6 | Start: 1509214754 7 | Execution Time log of Sat Oct 28 18:31:17 UTC 2017 8 | ---------------------------------------------------------------- 9 | Start: 1509215477 10 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/install.log: -------------------------------------------------------------------------------- 1 | Sat Oct 28 18:31:14 UTC 2017 2 | Checking Version ✔ 3 | Script exist ✔ 4 | Script readable ✔ 5 | Script executable ✔ 6 | awk installed ✔ 7 | curl installed ✔ 8 | date installed ✔ 9 | echo installed ✔ 10 | expect installed ✔ 11 | head installed ✔ 12 | nslookup installed ✔ 13 | sed installed ✔ 14 | sha512sum installed ✔ 15 | tail installed ✔ 16 | touch installed ✔ 17 | tr installed ✔ 18 | whois installed ✔ 19 | Installation of working directory ✔ 20 | Update of iana-domains-db ✔ 21 | Creation of non existant files and directories ✔ 22 | 23 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/noReferer/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/noReferer/.vu: -------------------------------------------------------------------------------- 1 | ==================================================================================================== 2 | No referer found for: vu domains 3 | Tested domain: adboost.de.vu 4 | ==================================================================================================== 5 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/percentage/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/percentage/percentage.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 18:31:17 UTC 2017 3 | 4 | 5 | Status Percentage Numbers 6 | ----------- ------------ ------------- 7 | ACTIVE 98% 2442 8 | INACTIVE 0% 15 9 | INVALID 0% 13 10 | -------------------------------------------------------------------------------- /yoyo.org/output/logs/whois/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/splited/.keep: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /yoyo.org/output/splited/inactive.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 5 | Domain WHOIS Server Status Source HTTP Code Analyse Date 6 | ---------------------------------------------------------------------------------------------------- ----------------------------------- ----------- ---------- ---------- ---------------------------- 7 | a.collective-media.net Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 17:55:31 UTC 2017 8 | adimage.asiaone.com.sg Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 17:57:27 UTC 2017 9 | ads.adultswim.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 17:59:48 UTC 2017 10 | ads.batpmturner.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:00:14 UTC 2017 11 | ads.canalblog.com INACTIVE SPECIAL 404 Sat Oct 28 18:00:37 UTC 2017 12 | adserver.dotcommedia.de Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:01:49 UTC 2017 13 | ads.groundspeak.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:03:05 UTC 2017 14 | ads.newsquest.co.uk Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:04:21 UTC 2017 15 | ads.sift.co.uk Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:07:23 UTC 2017 16 | ads.trinitymirror.co.uk Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:07:42 UTC 2017 17 | clients.tbo.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:14:14 UTC 2017 18 | dmtracking2.alibaba.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:15:42 UTC 2017 19 | dmtracking.alibaba.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:15:43 UTC 2017 20 | lct.salesforce.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:21:43 UTC 2017 21 | touchclarity.natwest.com Not Found INACTIVE NSLOOKUP 000 Sat Oct 28 18:32:24 UTC 2017 22 | -------------------------------------------------------------------------------- /yoyo.org/output/splited/invalid.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 17:55:07 UTC 2017 3 | 4 | 5 | Domain Status Source HTTP Code Analyse Date 6 | ---------------------------------------------------------------------------------------------------- ----------- ---------- ---------- ---------------------------- 7 | accounts.pkr.com.invalid INVALID IANA 000 Sat Oct 28 17:55:30 UTC 2017 8 | adfactor.nl.invalid INVALID IANA 000 Sat Oct 28 17:57:04 UTC 2017 9 | bravenet.com.invalid INVALID IANA 000 Sat Oct 28 18:13:03 UTC 2017 10 | cibleclick.com.invalid INVALID IANA 000 Sat Oct 28 18:13:41 UTC 2017 11 | gigya.com.invalid INVALID IANA 000 Sat Oct 28 18:19:37 UTC 2017 12 | globaltrack.com.invalid INVALID IANA 000 Sat Oct 28 18:19:39 UTC 2017 13 | naiadsystems.com.invalid INVALID IANA 000 Sat Oct 28 18:23:35 UTC 2017 14 | parse.ly.invalid INVALID IANA 000 Sat Oct 28 18:24:54 UTC 2017 15 | reedbusiness.com.invalid INVALID IANA 000 Sat Oct 28 18:26:52 UTC 2017 16 | seeq.com.invalid INVALID IANA 000 Sat Oct 28 18:27:46 UTC 2017 17 | test.invalid INVALID IANA 000 Sat Oct 28 18:31:46 UTC 2017 18 | top20.com.invalid INVALID IANA 000 Sat Oct 28 18:32:02 UTC 2017 19 | topmmorpgsites.com.invalid INVALID IANA 000 Sat Oct 28 18:32:13 UTC 2017 20 | -------------------------------------------------------------------------------- /yoyo.org/percentage.txt: -------------------------------------------------------------------------------- 1 | # File generated with https://github.com/funilrys/funceble 2 | # Date of generation: Sat Oct 28 18:31:17 UTC 2017 3 | 4 | 5 | Status Percentage Numbers 6 | ----------- ------------ ------------- 7 | ACTIVE 98% 2442 8 | INACTIVE 0% 15 9 | INVALID 0% 13 10 | -------------------------------------------------------------------------------- /yoyo.org/tested-list/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funilrys/dead-hosts/c0577383ce57a9efcec228f227c6303464d8765e/yoyo.org/tested-list/.keep -------------------------------------------------------------------------------- /yoyo.org/update.me: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # _______ _ _______ _______ ______ _ _______ 4 | # ( ____ \|\ /|( ( /|( ____ \( ____ \( ___ \ ( \ ( ____ \ 5 | # | ( \/| ) ( || \ ( || ( \/| ( \/| ( ) )| ( | ( \/ 6 | # | (__ | | | || \ | || | | (__ | (__/ / | | | (__ 7 | # | __) | | | || (\ \) || | | __) | __ ( | | | __) 8 | # | ( | | | || | \ || | | ( | ( \ \ | | | ( 9 | # | ) | (___) || ) \ || (____/\| (____/\| )___) )| (____/\| (____/\ 10 | # |/ (_______)|/ )_)(_______/(_______/|/ \___/ (_______/(_______/ 11 | 12 | # Written by: @Funilrys, Nissar Chababy 13 | # Github : https://github.com/funilrys/funceble 14 | # Github : https://github.com/funilrys/dead-hosts 15 | 16 | ################################ Contributors ################################## 17 | # Let's contribute !! 18 | ################################################################################ 19 | 20 | # Link of the raw file 21 | rawLink='https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext&useip=0.0.0.0' 22 | 23 | # list name 24 | listName='yoyo.org.list' 25 | 26 | # list directory 27 | listDir='tested-list/' 28 | 29 | # Output list 30 | outputList=${listDir}${listName} 31 | 32 | #################################### Update Me ################################ 33 | # Update.me 34 | # 35 | # @CalledBy nobody 36 | ################################################################################ 37 | updateMe() 38 | { 39 | # We get the latest list 40 | curl -s ${rawLink} -o ${outputList} 41 | 42 | # We convert the file 43 | dos2unix ${outputList} 2> /dev/null 44 | } 45 | 46 | updateMe 47 | --------------------------------------------------------------------------------