├── LICENSE ├── README.md └── filterlist /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | iploggerfilter 294 | Copyright (C) {2015} {piperun} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iploggerfilter 2 | This repo is for uBlock Origin/Adblock Plus and similar blockers to filter any site/subsite who's only purpose is to log your IP 3 | 4 | ## Installation 5 | 6 | ### Automatic (Adblock Plus, uBlock Origin) 7 | Click this: [(Subscribe)](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist&title=Piperun%27s%20iplogger%20filter) 8 | 9 | ### Manual (uBlock Origin) 10 | 11 | - Go to uBlock Origin settings 12 | - Navigate to 3rd-party filters page 13 | - On the bottom of the page, there should be an textbox where there are a bunch of example urls 14 | - Copy and paste into the textbox: 15 | 16 | ``` 17 | https://raw.githubusercontent.com/piperun/iploggerfilter/master/filterlist 18 | ``` 19 | 20 | - Now there should appear a yellow button called "Parse", click it 21 | - Lastly you need to go to the top and hit the yellow "Update now" button 22 | 23 | ## Manually updating (uBlock Origin) 24 | It seems uBlock can be slow with updating the filter list itself, so if you want to stay up to the latest version as fast as possible you need to manually update it: 25 | - Go to uBlock Origin settings 26 | - Navigate to the 3rd-party filters page 27 | - There should be a custom filter named: Piperun's iplogger filter 28 | - Click on the "purge cache" on the right of the name 29 | - Now there should appear a yellow button at the upper left named: "Apply Changes", click it 30 | - It should now show the correct amount of filter items 31 | 32 | 33 | Note: This list is only for any domain name which purpose is only to log your IP and or your browser, such as a site's only clear motive or having it as a hidden unnecessary functionality (like an URL-shortener) which can then be distributed to either a customer(s) or user(s) of that site, however, if the site specifically makes it clear that it only logs the IP for technical or security reason for the site itself and it doesn't invade people's privacy or security it will most likely not be added. 34 | -------------------------------------------------------------------------------- /filterlist: -------------------------------------------------------------------------------- 1 | ! Title: Piperun's IP-Logger Filter 2 | ! Expires: 3 days 3 | ! Last modified: 20 December 2023 4 | ! Homepage: https://github.com/piperun/iploggerfilter 5 | ! Contribute: https://github.com/piperun/iploggerfilter/issues 6 | ! License: https://github.com/piperun/iploggerfilter/blob/master/LICENSE 7 | 8 | # WARNING: Sites listed below can be harmful. Please, do not visit them if you don't know what you're doing! 9 | 10 | ################################# 11 | # Main IP Loggers # 12 | # Part 1-Scroll Down for Part 2 # 13 | # Last Updated: 02.08.2022 # 14 | ################################# 15 | 16 | # Main: grabify.link 17 | ||grabify.link^$important,all 18 | ||bmwforum.co^$important,all 19 | ||leancoding.co^$important,all 20 | ||spottyfly.com^$important,all 21 | ||stopify.co^$important,all 22 | ||yoütu.be^$important,all 23 | ||starbucksiswrong.com^$important,all 24 | ||starbucksisbadforyou.com^$important,all 25 | ||bucks.as^$important,all 26 | ||discörd.com^$important,all 27 | ||minecräft.com^$important,all 28 | ||freegiftcards.co^$important,all 29 | ||disçordapp.com^$important,all 30 | ||xda-developers.us^$important,all 31 | ||quickmessage.us^$important,all 32 | ||fortnight.space^$important,all 33 | ||fortnitechat.site^$important,all 34 | ||youshouldclick.us^$important,all 35 | ||joinmy.site^$important,all 36 | ||crabrave.pw^$important,all 37 | ||ajc1.cn^$important,all 38 | ||cnyc99.com^$important,all 39 | ||dxrbc.cn^$important,all 40 | ||hwhssc.cn^$important,all 41 | ||mjzssc.cn^$important,all 42 | ||nnmssc.cn^$important,all 43 | ||tnfbc.cn^$important,all 44 | ||toolce.cn^$important,all 45 | ||zjrbc.cn^$important,all 46 | ||catsnthing.com^$important,all 47 | ||lovebird.guru^$important,all 48 | ||trulove.guru^$important,all 49 | ||dateing.club^$important,all 50 | ||otherhalf.life^$important,all 51 | ||shrekis.life^$important,all 52 | ||datasig.io^$important,all 53 | ||datauth.io^$important,all 54 | ||headshot.monster^$important,all 55 | ||gaming-at-my.best^$important,all 56 | ||progaming.monster^$important,all 57 | ||yourmy.monster^$important,all 58 | ||screenshare.host^$important,all 59 | ||imageshare.best^$important,all 60 | ||screenshot.best^$important,all 61 | ||gamingfun.me^$important,all 62 | ||catsnthings.fun^$important,all 63 | ||curiouscat.club^$important,all 64 | ||mymassive.yachts^$important,all 65 | ||stonks.boats^$important,all 66 | ||stonks.fun^$important,all 67 | ||toes.beauty^$important,all 68 | ||barefoot.pics^$important,all 69 | ||shareit.pics^$important,all 70 | ||gamer.tattoo^$important,all 71 | ||shipment.website^$important,all 72 | ||imagevault.cloud^$important,all 73 | ||sugma.mom^$important,all 74 | ||yum.mom^$important,all 75 | ||plz.life^$important,all 76 | ||massive.mom^$important,all 77 | ||massive.boats^$important,all 78 | ||mymassive.store^$important,all 79 | ||mymassive.top^$important,all 80 | ||gamer.hair^$important,all 81 | ||photovault.pics^$important,all 82 | ||bathtub.pics^$important,all 83 | ||foot.wiki^$important,all 84 | ||thisdomainislong.lol^$important,all 85 | ||gamergirl.pro^$important,all 86 | ||picshost.pics^$important,all 87 | ||pichost.pics^$important,all 88 | ||imghost.pics^$important,all 89 | ||imagehost.pics^$important,all 90 | ||toldyouso.lol^$important,all 91 | ||toldyouso.pics^$important,all 92 | ||screenshare.pics^$important,all 93 | ||myprivate.pics^$important,all 94 | ||noodshare.pics^$important,all 95 | ||cheapcinema.club^$important,all 96 | ||dateing.club^$important,all 97 | ||shrekis.life^$important,all 98 | ||headshot.monster^$important,all 99 | ||progaming.monster^$important,all 100 | ||yourmy.monster^$important,all 101 | ||screenshot.best^$important,all 102 | ||gamingfun.me^$important,all 103 | ||catsnthing.com^$important,all 104 | ||catsnthings.fun^$important,all 105 | ||joinmy.site^$important,all 106 | ||fortnitechat.site^$important,all 107 | ||fortnight.space^$important,all 108 | ||stopify.co^$important,all 109 | ||stock-images.0o.si^$important,all 110 | 111 | #grabify.link - not publicly visible 112 | ||rëddït.com^$important,all 113 | ||yoütu.be^$important,all 114 | ||xda-developers.us^$important,all 115 | ||särahah.eu^$important,all 116 | ||särahah.pl^$important,all 117 | ||xda-developers.io^$important,all 118 | ||watches-my.stream^$important,all 119 | ||alanlindsay.net^$important,all 120 | ||asianrbtrade.net^$important,all 121 | ||myprivate.pics^$important,all 122 | 123 | # Main: iplogger.org 124 | ||iplogger.org^$important,all 125 | ||iplogger.com^$important,all 126 | ||iplogger.ru^$important,all 127 | ||2no.co^$important,all 128 | ||yip.su^$important,all 129 | ||mapper.info^$important,all 130 | #iplogger.org - not publicly visible 131 | ||ezstat.ru^$important,all 132 | ||02ip.ru^$important,all 133 | ||iplo.ru^$important,all 134 | ||iplis.ru^$important,all 135 | ||iplogger.info^$important,all 136 | ||ipgrabber.ru^$important,all 137 | ||ipgraber.ru^$important,all 138 | 139 | # Main: cyber-hub.net 140 | # Currently disabled? as of 27/1/2020 141 | ||skypegrab.net^$important,all 142 | ||fortnite-stats.site^$important,all 143 | ||minecraft-skins.xyz^$important,all 144 | ||booter.icu^$important,all 145 | ||discordcrypt.xyz^$important,all 146 | 147 | # Main: webresolver.nl 148 | # - Their sites redirects to authentic sites to make themself seems legit 149 | # - Also known as: ctrlhub.co & iplogger.us 150 | ||gyazo.nl^$important,all 151 | ||yȯutube.com^$important,all 152 | 153 | # Main: adf.ly 154 | ||atharori.net^$important,all 155 | 156 | # Main: linkify.me 157 | ||linkify.me^$important,all 158 | ||bitly-bot.com^$important,all 159 | ||adfly-bot.online^$important,all 160 | 161 | #Main: grabify.icu 162 | ||grabify.icu^$important,all 163 | ||maifile.cn^$important,all 164 | 165 | #Main: myiptest.com 166 | ||myiptest.com^$important,all 167 | ||myiptest.com/img.php^$important,all 168 | 169 | #Main: ip-trap.com 170 | ||ip-trap.com^$important,all 171 | ||ythingy.com^$important,all 172 | 173 | ########################### 174 | # Unsorted # 175 | # Last Updated: - # 176 | ########################### 177 | 178 | # Standalones: 179 | ||blasze.tk^$important,all 180 | ||blasze.com^$important,all 181 | #ikwyd.com - See https://iknowwhatyoudownload.com, they automask links behind google shorterner, use redirect tracing 182 | ||ikwyd.com^$important,all 183 | #ps3cfw.com/cool.php?item=tracking id 184 | ||ps3cfw.com^$important,all 185 | #dead but parent alive 186 | ||paypal.sellbitcoins.com^$important,all 187 | #junk/random 188 | ||postimage.co^$important,all 189 | ||ip-tracker.org^$important,all #Dont know what is this website, seems like just a bunch of fake tools with an ip grabbing image 190 | ||ip-puller.com^$important,all #Looks to be fake tools with Lorem Ipsum placer text 191 | 192 | ########################### 193 | # Dead Loggers (?) # 194 | # Last Updated: - # 195 | ########################### 196 | ||imageshack.ml^$important,all 197 | ||hs.vc^$important,all 198 | ||webprofile.me^$important,all 199 | #.me?? m seems not to be a TLD 200 | ||publicwiki.m^$important,all 201 | ||publicwiki.me^$important,all 202 | 203 | ############ 204 | # Inactive # 205 | ############ 206 | 207 | ||spötify.com^$important,all 208 | ||quickmessage.io^$important,all 209 | ||yoütübe.co^$important,all 210 | ||yoütübe.com^$important,all 211 | ||cyberh1.xyz^$important,all 212 | ||iany.pl^$important,all 213 | ||my-alts.eu^$important,all 214 | ||l-imgur.pl^$important,all 215 | ||exec-true.eu^$important,all 216 | ||tigercore.eu^$important,all 217 | #ip.jlynx.net - jlynx.net is owned grabify.link, consider keeping as it can go online any time 218 | ||ip.jlynx.net^$important,all 219 | ||deviantartt.ml^$important,all 220 | ||dropboxx.lm^$important,all 221 | ||gyazoo.ga^$important,all 222 | ||printscr.ga^$important,all 223 | ||youutube.gq^$important,all 224 | ||strawpoll.ga^$important,all 225 | ||xxox.co.uk^$important,all 226 | ||leakforum.ga^$important,all 227 | ||prntsc.cf^$important,all 228 | ||deviantartt.ga^$important,all 229 | ||dropboxx.ga^$important,all 230 | ||dropboxx.cf^$important,all 231 | ||strawpolll.ga^$important,all 232 | ||twitte.ga^$important,all 233 | ||bvog.com^$important,all 234 | ||hondachat.com^$important,all 235 | ||youramonkey.com^$important,all 236 | ||ip-grabber.com^$important,all 237 | ||imgurl.us^$important,all 238 | ||sciencefuture.tk^$important,all 239 | ||stresser.science^$important,all 240 | ||viphackforums.xyz^$important,all 241 | ||gtadb.net^$important,all 242 | ||fotocerdas.com^$important,all 243 | ||parlament.usa.cc^$important,all 244 | ||community.hackersclub.net^$important,all 245 | ||login.anal-porn.info^$important,all 246 | ||panel.teamspeak.bz^$important,all 247 | ||files.uploads.ws^$important,all 248 | ||media.appspot.com^$important,all 249 | ||hackfȯrums.net^$important,all 250 | ||hackfȯrums.com^$important,all 251 | ||imgúr.com^$important,all 252 | ||battlė.net^$important,all 253 | ||dank.host^$important,all 254 | ||r1p.pw^$important,all 255 | ||anonymousforum.pw^$important,all 256 | ||ts3free.top^$important,all 257 | ||viphackforum.xyz^$important,all 258 | ||bbcnews.today^$important,all 259 | ||privatexmpp.me^$important,all 260 | ||topstreaming.us^$important,all 261 | ||topcdn.biz^$important,all 262 | ||hackernews.online^$important,all 263 | ||hdblog.tech^$important,all 264 | ||sexy18.webcam^$important,all 265 | ||dropbox.desi^$important,all 266 | ||hostingonline.desi^$important,all 267 | ||freeanonymous.host^$important,all 268 | ||ampnode.host^$important,all 269 | ||spoofing.host^$important,all 270 | ||cubeupload.xyz^$important,all 271 | ||exploit-db.xyz^$important,all 272 | ||disċordapp.com^$important,all 273 | ||bucks.as^$important,all 274 | ||twiţter.com^$important,all 275 | ||sĸype.com^$important,all 276 | ||transferfiles.cloud^$important,all 277 | ||tvshare.co^$important,all 278 | ||twitch-stats.stream^$important,all 279 | ||videoblog.tech^$important,all 280 | ||yoütübe.co^$important,all 281 | ||yoütübe.com^$important,all 282 | ||yòutube.com^$important,all 283 | ||ìṃgur.com^$important,all 284 | ||ġooģle.com^$important,all 285 | ||rikiki.net^$important,all 286 | ||gyazoo.xyz^$important,all 287 | ||ipddoser.xyz^$important,all 288 | ||skypecracker.xyz^$important,all 289 | ||ipsnatcher.com^$important,all 290 | ||skidpaste.org^$important,all 291 | ||cloudfsx.com^$important,all 292 | ||anonfiles.download^$important,all 293 | ||bbcbloggers.co.uk^$important,all 294 | ||csgopot.zone^$important,all 295 | ||downthe.design^$important,all 296 | ||gameskeys.shop^$important,all 297 | ||hbotv.co^$important,all 298 | ||i.imger.me^$important,all 299 | ||imger.me^$important,all 300 | ||mailble.com^$important,all 301 | ||proxyfill.co^$important,all 302 | ||shört.co^$important,all 303 | ||spötify.com^$important,all 304 | ||starbucks.bio^$important,all 305 | ||steamtools.co^$important,all 306 | ||linkit.cf^$important,all 307 | 308 | ########################### 309 | # Misc Loggers # 310 | # Last Updated: - # 311 | ########################### 312 | ||fuglekos.com^$important,all 313 | 314 | ########################### 315 | # Booter Loggers # 316 | # Last Updated: - # 317 | ########################### 318 | ||orcahub.com^$important,all 319 | ||vbooter.org^$important,all 320 | ||orboot.pw^$important,all 321 | #synstress.net 322 | ||ddos.city^$important,all 323 | ||restresser.com^$important,all 324 | ||networkstresser.com^$important,all 325 | ||vdos-s.com^$important,all 326 | ||oxystress.eu^$important,all 327 | ||freebooter.pro^$important,all 328 | ||bootyou.net^$important,all 329 | ||critical-boot.com^$important,all 330 | ||boot4free.com^$important,all 331 | #||ipstresser.com^$important,all 332 | 333 | ########################### 334 | # Third-Party Loggers # 335 | # Last Updated: - # 336 | ########################### 337 | 338 | ||aruljohn.com/widget/zip/* 339 | ||aruljohn.com/widget/ip/* 340 | 341 | #aruljohn.com * block 342 | 343 | ########################### 344 | # Misc Loggers # 345 | # Last Updated: - # 346 | ########################### 347 | 348 | ||fuglekos.com^$important,all 349 | 350 | ########################### 351 | # URL-Shorteners # 352 | # Last Updated: 23.9.2020 # 353 | ########################### 354 | 355 | ||go.budurl.co^$important,all 356 | ||dr.tl/*^$important,all 357 | ||bit.do/*^$important,all 358 | ||taveo.net/*^$important,all 359 | ||cur.lv^$important,all 360 | ||slsh.us^$important,all 361 | ||adf.ly^$important,all 362 | ||cutt.ly^$important,all 363 | ||shorte.st^$important,all 364 | ||biturl.io^$important,all 365 | ||hackforu.ms^$important,all 366 | ||tldr.ly^$important,all 367 | ||wzurl.me^$important,all 368 | ||ahref.tech^$important,all 369 | ||bc.vc^$important,all 370 | ||soo.gd^$important,all 371 | ||7.ly^$important,all 372 | ||5.gp^$important,all 373 | ||tiny.cc^$important,all 374 | ||ouo.io^$important,all 375 | ||zzb.bz^$important,all 376 | ||adfoc.us^$important,all 377 | ||my.su^$important,all 378 | 379 | ############## 380 | # Temporarly # 381 | ############## 382 | 383 | # Image hosting # 384 | #||fuglekos.com/profile/* 385 | ||snipe.blue^$important,all 386 | 387 | # IP Loggers - part 2 388 | # Those are done in bulk and checked 389 | 390 | ########################### 391 | # Blazse Loggers # 392 | # Last Updated: 27.1.2020 # 393 | ########################### 394 | 395 | ||0519.org^$important,all 396 | ||1111oe.com^$important,all 397 | ||3a71q7jt.com^$important,all 398 | ||3newsletter.com^$important,all 399 | ||4bikebg.com^$important,all 400 | ||65nq.com^$important,all 401 | ||6umux.top^$important,all 402 | ||7gzn.com^$important,all 403 | ||8-crm.com^$important,all 404 | ||8955567.top^$important,all 405 | ||8forum-bahis.com^$important,all 406 | ||991z7fol.com^$important,all 407 | ||99skk.com^$important,all 408 | ||9gzo.com^$important,all 409 | ||aadaysh.top^$important,all 410 | ||absvau.top^$important,all 411 | ||accguitar.com^$important,all 412 | ||actionexcellents.top^$important,all 413 | ||adairhomesyakima.com^$important,all 414 | ||adhd-solutions-now.live^$important,all 415 | ||adkinnovations.com^$important,all 416 | ||adwokatlodz.club^$important,all 417 | ||ak-777.com^$important,all 418 | ||alibos.ru^$important,all 419 | ||allinclusivevacationsfan.com^$important,all 420 | ||alpenolazia.com^$important,all 421 | ||ambernightdvd.com^$important,all 422 | ||amplifiernetworks.com^$important,all 423 | ||antiquesilversouvenirspoons.com^$important,all 424 | ||apartmentsbaska.com^$important,all 425 | ||apolloniadentalllc.com^$important,all 426 | ||applicationshopnetgroup.site^$important,all 427 | ||apstaing.com^$important,all 428 | ||arraypot.xyz^$important,all 429 | ||arthistoryunstuffed.com^$important,all 430 | ||artoninvoicing.com^$important,all 431 | ||autobars.co.uk^$important,all 432 | ||azbelgium.com^$important,all 433 | ||azuviraza.com^$important,all 434 | ||bandr.com.ua^$important,all 435 | ||bauldenotas.com^$important,all 436 | ||bbphotography.com^$important,all 437 | ||bcuchargers.com^$important,all 438 | ||beckercad.com^$important,all 439 | ||beginsh.us^$important,all 440 | ||benzostreatmentfast.online^$important,all 441 | ||besmontnet.press^$important,all 442 | ||bestdatingonline.date^$important,all 443 | ||bf-games.net^$important,all 444 | ||billigamkvaskarea.se^$important,all 445 | ||bisabet.co^$important,all 446 | ||blasze.com^$important,all 447 | ||blyjh.com^$important,all 448 | ||bodybuilding.co.uk^$important,all 449 | ||boutikcondosvip.ca^$important,all 450 | ||budgetapotheek.eu^$important,all 451 | ||caapaweb.xyz^$important,all 452 | ||calmsc.com.au^$important,all 453 | ||campbellcontracting.nz^$important,all 454 | ||carolrutgersrealestate.com^$important,all 455 | ||carpowersteeringpumps.site^$important,all 456 | ||cartionel.club^$important,all 457 | ||cartouchespourfondationdesbrules.be^$important,all 458 | ||casumocasino.no^$important,all 459 | ||catercart.co.nz^$important,all 460 | ||cemalsenay.com^$important,all 461 | ||cervusequipment.ca^$important,all 462 | ||cgart.ir^$important,all 463 | ||cheapdomains.science^$important,all 464 | ||chiangmaihotels.co^$important,all 465 | ||chinamajestic.com.au^$important,all 466 | ||christinecodyat0b8.tk^$important,all 467 | ||cloudspit.com^$important,all 468 | ||cnliuan.com^$important,all 469 | ||cnn-news-us.science^$important,all 470 | ||codigoamigo.com.br^$important,all 471 | ||coffee-samples-deal.live^$important,all 472 | ||consult4jobs.com^$important,all 473 | ||contemporaryfineart.com^$important,all 474 | ||coremproperties.com^$important,all 475 | ||corona2.eu^$important,all 476 | ||corporategroup.co.uk^$important,all 477 | ||covenantfinancial.org^$important,all 478 | ||coverwhelm.tk^$important,all 479 | ||creamdrskincare.com^$important,all 480 | ||crms.org.sg^$important,all 481 | ||cursopdg.online^$important,all 482 | ||cursosneuromarketing.com^$important,all 483 | ||dailynewsreview.info^$important,all 484 | ||dangerfieldconsulting.com^$important,all 485 | ||dc1199.com^$important,all 486 | ||deinjagdvideo.at^$important,all 487 | ||delijn-aanpassingen.be^$important,all 488 | ||detektivconan-tube.com^$important,all 489 | ||dhansz.xyz^$important,all 490 | ||dieta-para-una-semana.top^$important,all 491 | ||digitalchallenger.com^$important,all 492 | ||dlzqjsza.vip^$important,all 493 | ||doma-uborka.ru^$important,all 494 | ||domitri148.ovh^$important,all 495 | ||donebuilders.com^$important,all 496 | ||dp-811.com^$important,all 497 | ||dtalk.top^$important,all 498 | ||duoyelou.com^$important,all 499 | ||dwmballet.com^$important,all 500 | ||dynamicvin.com^$important,all 501 | ||ebsqu.site^$important,all 502 | ||eceqxmmh.xyz^$important,all 503 | ||ecgfj.live^$important,all 504 | ||edusecuritywatch.com^$important,all 505 | ||edwinwin.xyz^$important,all 506 | ||ejartistic.com^$important,all 507 | ||elitepracticetraining.com^$important,all 508 | ||epay.ir^$important,all 509 | ||erapidassure.com^$important,all 510 | ||estesparkwiki.org^$important,all 511 | ||eventsinkansai.com^$important,all 512 | ||evofitnessequipment.com^$important,all 513 | ||eyupcelik.com.tr^$important,all 514 | ||facebookfansandlikes.com^$important,all 515 | ||fatehmechanicalworks.com.au^$important,all 516 | ||fdufault.com^$important,all 517 | ||femmesmures.date^$important,all 518 | ||filippomascoli.it^$important,all 519 | ||finestherbalist.com^$important,all 520 | ||flash-fm.tk^$important,all 521 | ||formanth.win^$important,all 522 | ||forum-interactive.com^$important,all 523 | ||forvetbet65.com^$important,all 524 | ||fosass.net^$important,all 525 | ||foundationk.com^$important,all 526 | ||foxy-bingo-promotion.co.uk^$important,all 527 | ||frame.hosting^$important,all 528 | ||freepdfbookdownload.tk^$important,all 529 | ||freepornphotos.club^$important,all 530 | ||fusionadvisors.in^$important,all 531 | ||fxinvestigate.com^$important,all 532 | ||gain-a-dentalimplantssite.fyi^$important,all 533 | ||galaxystars.pro^$important,all 534 | ||gameofstones.com^$important,all 535 | ||garcinia-six.com^$important,all 536 | ||geobug.net^$important,all 537 | ||germanyenergy.online^$important,all 538 | ||getforhealth.store^$important,all 539 | ||gettruck-autonow.market^$important,all 540 | ||gfnewsfr.pro^$important,all 541 | ||gift-claim.bid^$important,all 542 | ||glhconsulting.hu^$important,all 543 | ||gnoubalarab.com^$important,all 544 | ||gohindidatingindiafed.live^$important,all 545 | ||gopureorganicfood.ca^$important,all 546 | ||goulpreview.xyz^$important,all 547 | ||gouttierewood.webcam^$important,all 548 | ||grandsnombres.com^$important,all 549 | ||greatdebtconsolidationpro.com^$important,all 550 | ||greatnewplaces.com^$important,all 551 | ||griptruckshouston.com^$important,all 552 | ||hackmylife.de^$important,all 553 | ||hamarisafalta.com^$important,all 554 | ||hdringtones.com^$important,all 555 | ||het-wittehuis.nl^$important,all 556 | ||heymistr.com^$important,all 557 | ||hitechnationalfloodrelief.com^$important,all 558 | ||hittastilen.se^$important,all 559 | ||hollylsmith.com^$important,all 560 | ||hondapons.com^$important,all 561 | ||hotsgolfexport.loan^$important,all 562 | ||hpsff.live^$important,all 563 | ||hsh-dayz.com^$important,all 564 | ||ht1.in^$important,all 565 | ||httbuy.com^$important,all 566 | ||impactlc.net^$important,all 567 | ||indonesia-holiday.com^$important,all 568 | ||islaminfo.fr^$important,all 569 | ||jackmedway.co.uk^$important,all 570 | ||jameskellywnid.net^$important,all 571 | ||jcintersonic.com^$important,all 572 | ||jeppes.info^$important,all 573 | ||johncharcol.com^$important,all 574 | ||jpzzsmshop.com^$important,all 575 | ||julianas-travelgram.com^$important,all 576 | ||jump4lovescam.com^$important,all 577 | ||junghwa.co^$important,all 578 | ||justtroll.it^$important,all 579 | ||kaizennj.com^$important,all 580 | ||kanfff.com^$important,all 581 | ||kazino-vulkan-play.com^$important,all 582 | ||keris4d.com^$important,all 583 | ||kerseyvalleyaxethrowing.com^$important,all 584 | ||keystreetsellfast.com^$important,all 585 | ||knife-born.com^$important,all 586 | ||knullmessengerkvinnor.xyz^$important,all 587 | ||kreatemore.com^$important,all 588 | ||laenergiadeltrigo.com^$important,all 589 | ||landes-terroir.com^$important,all 590 | ||lappas.com.gr^$important,all 591 | ||largemd5art.net^$important,all 592 | ||latinolove.com^$important,all 593 | ||lavonnadanielson.xyz^$important,all 594 | ||lemaitre-france.fr^$important,all 595 | ||lidian.info^$important,all 596 | ||livenewsbeta.com^$important,all 597 | ||loopimagination.com^$important,all 598 | ||lynngarytherapy.com^$important,all 599 | ||maahouse.com^$important,all 600 | ||magneticva.com^$important,all 601 | ||maikglockner.tk^$important,all 602 | ||mailsquadron.net^$important,all 603 | ||makerlab.ca^$important,all 604 | ||maksa988.tech^$important,all 605 | ||mamamiapizzeriaoffresno.com^$important,all 606 | ||markleppke.com^$important,all 607 | ||markratfelderscoachingandconsulting.com^$important,all 608 | ||masqu3rade.com^$important,all 609 | ||mattconheady.com^$important,all 610 | ||matteodallombra.net^$important,all 611 | ||mbcv.co.il^$important,all 612 | ||medworldis.com^$important,all 613 | ||megahack.biz^$important,all 614 | ||megamagazine.site^$important,all 615 | ||melaridoweb.eu^$important,all 616 | ||menteinovadora.com.br^$important,all 617 | ||mgfetes.fr^$important,all 618 | ||microramcomputers.com^$important,all 619 | ||midagihead.eu^$important,all 620 | ||mlbmusiccity.com^$important,all 621 | ||mmogah.games^$important,all 622 | ||mmsoa.com^$important,all 623 | ||modbati.site^$important,all 624 | ||monsoniq.us^$important,all 625 | ||mr6plw.loan^$important,all 626 | ||multitelusa.net^$important,all 627 | ||museumsinamerica.com^$important,all 628 | ||my-ap-p-applicatio-and-gratis.info^$important,all 629 | ||mynews-line.com^$important,all 630 | ||mytubefire.com^$important,all 631 | ||mzwhx.com^$important,all 632 | ||nairn101.me^$important,all 633 | ||naturallyearthfriendly.com^$important,all 634 | ||neasyset.icu^$important,all 635 | ||nectra-skincare.com^$important,all 636 | ||nextierapparel.com^$important,all 637 | ||nicolascalmels.com^$important,all 638 | ||niculae.net^$important,all 639 | ||nilay.com.br^$important,all 640 | ||norwide.top^$important,all 641 | ||nownails.online^$important,all 642 | ||nsgwbfwsmall.xyz^$important,all 643 | ||nutscdn.com^$important,all 644 | ||oiawh.top^$important,all 645 | ||olaris.com.au^$important,all 646 | ||oppressivedesign.com^$important,all 647 | ||opticaforteza.com^$important,all 648 | ||orangebooks.tk^$important,all 649 | ||otuin.com^$important,all 650 | ||ozonestimulation.com^$important,all 651 | ||pabandom.xyz^$important,all 652 | ||packet-radio.net^$important,all 653 | ||papahughes.com.au^$important,all 654 | ||parafiaswtrojcy.pl^$important,all 655 | ||parcoursmed.com^$important,all 656 | ||patrickmurphy.me^$important,all 657 | ||paylessuniformsrgv.com^$important,all 658 | ||pbj-gallery.com^$important,all 659 | ||pdfook.com^$important,all 660 | ||piyambakan.com^$important,all 661 | ||pizzalie.be^$important,all 662 | ||pokerqq99.net^$important,all 663 | ||pombest.com^$important,all 664 | ||pornoxvideo.co^$important,all 665 | ||potsarmoires.top^$important,all 666 | ||povernor.info^$important,all 667 | ||ppen-timo.de^$important,all 668 | ||ppm999.com^$important,all 669 | ||prawnik-katowice.pl^$important,all 670 | ||princessofsachempond.com^$important,all 671 | ||private-alert.com^$important,all 672 | ||prizenotice28.us^$important,all 673 | ||proficiently-soft.club^$important,all 674 | ||profootballacademy.eu^$important,all 675 | ||progexer.tk^$important,all 676 | ||progresskarate.com^$important,all 677 | ||publishxpress.com^$important,all 678 | ||puertoricanwomen.info^$important,all 679 | ||purchasingauctions.co.uk^$important,all 680 | ||qaziler.az^$important,all 681 | ||radiosinus.se^$important,all 682 | ||rajskajahorina.com^$important,all 683 | ||rawactf.xyz^$important,all 684 | ||rb-rrr.com^$important,all 685 | ||redbirdagents.com^$important,all 686 | ||redjezelf.net^$important,all 687 | ||replicasderelogiosaa.com.br^$important,all 688 | ||rgyhk2yt.club^$important,all 689 | ||riboli.it^$important,all 690 | ||rodeonlinesurveys.co.za^$important,all 691 | ||rogermccay.org^$important,all 692 | ||rolypolypuppies.com^$important,all 693 | ||rosetraining.edu.au^$important,all 694 | ||rosylia.net^$important,all 695 | ||royalspin.co.uk^$important,all 696 | ||rqxsjg.xyz^$important,all 697 | ||rtyoue.info^$important,all 698 | ||runikeipajpsales.party^$important,all 699 | ||saadilent.ir^$important,all 700 | ||salixnebac.club^$important,all 701 | ||sanctumware.net^$important,all 702 | ||sarabuysochouses.com^$important,all 703 | ||sarahlovenpresets.com^$important,all 704 | ||sbopoker.me^$important,all 705 | ||sehabinden.com^$important,all 706 | ||seiinmovimento.it^$important,all 707 | ||sharewrong.online^$important,all 708 | ||sharingdisini.com^$important,all 709 | ||shauncvar.com^$important,all 710 | ||sherrypetersphoto.com^$important,all 711 | ||shopable.press^$important,all 712 | ||shopbravesedge.com^$important,all 713 | ||shopempire.su^$important,all 714 | ||signsandwondersonline.com^$important,all 715 | ||simonbutcherphotography.com^$important,all 716 | ||sisterscountrystore.com^$important,all 717 | ||slvrlake-denim.com^$important,all 718 | ||smokehouseeats.com^$important,all 719 | ||softperts.com^$important,all 720 | ||sonodrugs.eu^$important,all 721 | ||spdollar.com^$important,all 722 | ||spiralsense.jp^$important,all 723 | ||ssc8n2.icu^$important,all 724 | ||ssqld5widz.xyz^$important,all 725 | ||startupsuriname.com^$important,all 726 | ||stopin.pl^$important,all 727 | ||store-real-mall.info^$important,all 728 | ||studiolegalecipriano.com^$important,all 729 | ||studiolegalelarosabambaci.it^$important,all 730 | ||sueholland.org^$important,all 731 | ||super-web-homes.tech^$important,all 732 | ||t-safe.nl^$important,all 733 | ||tawmetalworking.xyz^$important,all 734 | ||taxkerala.co.in^$important,all 735 | ||techbar.me^$important,all 736 | ||techcityconnect.ltd^$important,all 737 | ||technologypickup.us^$important,all 738 | ||thadinnoo.co^$important,all 739 | ||theguitareffects.com^$important,all 740 | ||thekingofheroes.com^$important,all 741 | ||thisisjess.co.uk^$important,all 742 | ||tien-menuisier.fr^$important,all 743 | ||tiffanycollins.club^$important,all 744 | ||timgorichanaz.com^$important,all 745 | ||tipobet00938.com^$important,all 746 | ||tizkarvpn76.biz^$important,all 747 | ||tokdigitalexpress.com^$important,all 748 | ||tompriki.gr^$important,all 749 | ||tomtaylorinsurance.com^$important,all 750 | ||trailemploy.com^$important,all 751 | ||tran-engineering.ch^$important,all 752 | ||traxster.net^$important,all 753 | ||truckracing.com.au^$important,all 754 | ||tsurugashima-golf.com^$important,all 755 | ||turizdoma.ru^$important,all 756 | ||turkospicos.online^$important,all 757 | ||ub456.com^$important,all 758 | ||unigraphix.co^$important,all 759 | ||unintentionallyintent.com^$important,all 760 | ||upwchinese.com^$important,all 761 | ||uu8002.club^$important,all 762 | ||varellamotos.com.br^$important,all 763 | ||venturellas.com^$important,all 764 | ||venuschicago.com^$important,all 765 | ||venuspo.icu^$important,all 766 | ||videonablyudenie-krasnoyarsk.ru^$important,all 767 | ||vladimirlapshin.com^$important,all 768 | ||voronezh-pet.ru^$important,all 769 | ||wangzizhe.com.cn^$important,all 770 | ||wappingwasteremoval.co.uk^$important,all 771 | ||war1418.com^$important,all 772 | ||watchgallery.pro^$important,all 773 | ||weightedcu.be^$important,all 774 | ||wetouth.bid^$important,all 775 | ||wfear.com^$important,all 776 | ||williepickensjazz.com^$important,all 777 | ||wm-reviews.ca^$important,all 778 | ||wszgsshyjh.com^$important,all 779 | ||wtgqhq.icu^$important,all 780 | ||wxjdr.com^$important,all 781 | ||wyantswalk.net^$important,all 782 | ||wyvernware.com^$important,all 783 | ||xgfgt.cn^$important,all 784 | ||xnxx4porn.com^$important,all 785 | ||xupjsw.icu^$important,all 786 | ||xyllon.com^$important,all 787 | ||ybody.site^$important,all 788 | ||yinhe555.net^$important,all 789 | ||yolayneefu.top^$important,all 790 | ||yourskipper.co.uk^$important,all 791 | ||ytwrf4a.win^$important,all 792 | ||yw-cd.com^$important,all 793 | ||zonahd.org^$important,all 794 | ||zoneoccupee.com^$important,all 795 | 796 | ########################### 797 | # PS3CFW Loggers # 798 | # Last Updated: 27.1.2020 # 799 | ########################### 800 | 801 | ||00689.net^$important,all 802 | ||20gbfree.club^$important,all 803 | ||2222yo.com^$important,all 804 | ||760tv.com^$important,all 805 | ||95277h.com^$important,all 806 | ||adultsex.world^$important,all 807 | ||adventuresofcitizenx.com^$important,all 808 | ||agenonlinesbo.com^$important,all 809 | ||alarmanlage-hannover.de^$important,all 810 | ||alburyaccounting.com.au^$important,all 811 | ||alittleofwhatyoufancy.info^$important,all 812 | ||alizararteer.pro^$important,all 813 | ||ankety-shalav.xyz^$important,all 814 | ||antennalaminates.com^$important,all 815 | ||applebeesrs.com.br^$important,all 816 | ||aquidownloads.net^$important,all 817 | ||arakelyan.email^$important,all 818 | ||arnaell.com^$important,all 819 | ||artdebt.top^$important,all 820 | ||artificialgrasslive.online^$important,all 821 | ||askdarcel.org^$important,all 822 | ||asoxiate.com^$important,all 823 | ||associazionenoborders.org^$important,all 824 | ||atlanticcustombrokers.com^$important,all 825 | ||augloan.loan^$important,all 826 | ||averageanteater.info^$important,all 827 | ||azyda.ru^$important,all 828 | ||b-coresalon.com^$important,all 829 | ||backcountrywater.info^$important,all 830 | ||be-a-seniorcomputerskillsok.live^$important,all 831 | ||be-in-goas-ok.live^$important,all 832 | ||bedandbarn.com^$important,all 833 | ||behaku.faith^$important,all 834 | ||beijingguidebook.com^$important,all 835 | ||bensalem215locksmith.com^$important,all 836 | ||bestaquariumpicks.com^$important,all 837 | ||bestcardshuffler.icu^$important,all 838 | ||bestrewardcardforrestaurantsin.icu^$important,all 839 | ||bestwebsitesfast.com^$important,all 840 | ||bimagric.com^$important,all 841 | ||bio-rocket-blast-sale.men^$important,all 842 | ||birsighof.ch^$important,all 843 | ||biuro-adwokackie.pl^$important,all 844 | ||blaquewatchepk.com^$important,all 845 | ||brpro.online^$important,all 846 | ||bunnygo.net^$important,all 847 | ||buymusclemorexl.com^$important,all 848 | ||by8luz.top^$important,all 849 | ||cadentalimplantspage.com^$important,all 850 | ||call-the-plumber.men^$important,all 851 | ||cardvalet.top^$important,all 852 | ||carlocksmithservice.bid^$important,all 853 | ||carolinadriftingsams.com^$important,all 854 | ||carsonstreeservices.com^$important,all 855 | ||centenarulromaniei.ro^$important,all 856 | ||certificadobr.info^$important,all 857 | ||chainbit.club^$important,all 858 | ||chicagocutsteakhouse.com^$important,all 859 | ||chochokiw205-015jw.trade^$important,all 860 | ||cineconchile.com^$important,all 861 | ||com-77news-sdcno300.icu^$important,all 862 | ||communitypulse.io^$important,all 863 | ||cordoba.website^$important,all 864 | ||courtneygreenrealtor.com^$important,all 865 | ||cpybdylh.icu^$important,all 866 | ||creation-times.com^$important,all 867 | ||creid.eu^$important,all 868 | ||crowningmomentsdoula.com^$important,all 869 | ||csclientes.com.mx^$important,all 870 | ||cyclingshorts.uk.com^$important,all 871 | ||dambut.biz^$important,all 872 | ||datingzap.tk^$important,all 873 | ||delhibellyindian.com.au^$important,all 874 | ||dietlens.com^$important,all 875 | ||diginetz.de^$important,all 876 | ||digitallbs.com^$important,all 877 | ||diligenceinternational.com^$important,all 878 | ||divorcesols.co.uk^$important,all 879 | ||djturntableparts.site^$important,all 880 | ||donardglencamogie.com^$important,all 881 | ||dondemequedo.com^$important,all 882 | ||dots-across.top^$important,all 883 | ||dr-nils-kaiser.com^$important,all 884 | ||drivoferreira.com^$important,all 885 | ||drizey.live^$important,all 886 | ||duacerayo.com^$important,all 887 | ||dumitri587.ovh^$important,all 888 | ||electroweb.be^$important,all 889 | ||elincha.com^$important,all 890 | ||enzopetrachi.it^$important,all 891 | ||esnetmx.com^$important,all 892 | ||esupportbest005.info^$important,all 893 | ||expread.io^$important,all 894 | ||extenze-review.ca^$important,all 895 | ||eyebager.site^$important,all 896 | ||eyesopensocialmediasafety.com.au^$important,all 897 | ||f95qpuvjo.com^$important,all 898 | ||fetchageneraleducation.com^$important,all 899 | ||fiona-s.net^$important,all 900 | ||fitnessandhealthtactics.com^$important,all 901 | ||fitnessnutritionals.com^$important,all 902 | ||flybynet.com.ar^$important,all 903 | ||fortmyers-mortgage.com^$important,all 904 | ||galloinstitute.net^$important,all 905 | ||gamehammer.info^$important,all 906 | ||gedichten-voor-iedereen.com^$important,all 907 | ||gestreifthelle.site^$important,all 908 | ||ggclk.com^$important,all 909 | ||gjilani-smartcity.com^$important,all 910 | ||glenelgorthopaedics.com.au^$important,all 911 | ||globalmxcup.icu^$important,all 912 | ||grand-eight.club^$important,all 913 | ||grandhuntings.com^$important,all 914 | ||gray-vomkleinenhirten.de^$important,all 915 | ||groukmout.live^$important,all 916 | ||gwbdt.com^$important,all 917 | ||haveadentalimplantsshop.com^$important,all 918 | ||heartbeatsconsulting.com^$important,all 919 | ||heathlylifestyleguide.com^$important,all 920 | ||hongkongtower-kanglong.com^$important,all 921 | ||i56ad.site^$important,all 922 | ||impactprintingdenver.com^$important,all 923 | ||importadosoriginaisfx.tk^$important,all 924 | ||infopi.co^$important,all 925 | ||inspiratorfreak.com^$important,all 926 | ||inspiring-sustainability.com^$important,all 927 | ||interventionspecialists.com^$important,all 928 | ||investorinthefamilyservices.com^$important,all 929 | ||ipc360.org^$important,all 930 | ||isitforreal.club^$important,all 931 | ||jambocom.xyz^$important,all 932 | ||jamoontree.net^$important,all 933 | ||jasonmartin.xyz^$important,all 934 | ||jbehrmusic.com^$important,all 935 | ||jfpronline.info^$important,all 936 | ||juancarloscubeiro.com^$important,all 937 | ||kangyulai.com^$important,all 938 | ||kankandm.com^$important,all 939 | ||kdramalink.com^$important,all 940 | ||kepmarathon.com^$important,all 941 | ||kho088.com^$important,all 942 | ||kiwisconnect.org.nz^$important,all 943 | ||klinikangka.org^$important,all 944 | ||leaveoperaing.world^$important,all 945 | ||legalbarcode.com^$important,all 946 | ||legendturk.shop^$important,all 947 | ||leiarimet.com^$important,all 948 | ||lifergames.website^$important,all 949 | ||lithoessa.gr^$important,all 950 | ||loehzeq.bid^$important,all 951 | ||longerdependent.com^$important,all 952 | ||lumomongoose.com^$important,all 953 | ||lvvi.icu^$important,all 954 | ||magicminutes.co.uk^$important,all 955 | ||mappufusion.site^$important,all 956 | ||marie-robin.fr^$important,all 957 | ||mc183.com^$important,all 958 | ||mcameraonline.club^$important,all 959 | ||mervetos.com^$important,all 960 | ||mid-coast-tire.com^$important,all 961 | ||minhmui.com^$important,all 962 | ||miskant.co^$important,all 963 | ||mok55.com^$important,all 964 | ||motoronter.com^$important,all 965 | ||mototech.co.il^$important,all 966 | ||mulletsighting.com^$important,all 967 | ||myorange.co^$important,all 968 | ||myown42.com^$important,all 969 | ||nailkitofficial.com^$important,all 970 | ||nairobiysten.xyz^$important,all 971 | ||nakedglamsexpertise.com^$important,all 972 | ||nationwidepeople.com^$important,all 973 | ||nethrie.com^$important,all 974 | ||ninjax.io^$important,all 975 | ||ntube.party^$important,all 976 | ||nubilespics.com^$important,all 977 | ||omentribok.pro^$important,all 978 | ||onis-prom.ru^$important,all 979 | ||opexchange.com^$important,all 980 | ||outandappear.win^$important,all 981 | ||ovrmxaqfashion.xyz^$important,all 982 | ||oxyo2.com^$important,all 983 | ||packedbridge.bid^$important,all 984 | ||pandorabracelets.win^$important,all 985 | ||parfems.sk^$important,all 986 | ||patita.tk^$important,all 987 | ||pausebas.xyz^$important,all 988 | ||pkkm5.com^$important,all 989 | ||plantationwomansclubgfwc.com^$important,all 990 | ||plumcafebistro.com^$important,all 991 | ||preferredonlineloansnophonecalls.xyz^$important,all 992 | ||princessoflemnos.gr^$important,all 993 | ||profilebakanlar.com^$important,all 994 | ||ps3cfw.com^$important,all 995 | ||puertoricotours.us^$important,all 996 | ||qrg1c.us^$important,all 997 | ||quit-smoking-today.info^$important,all 998 | ||realbridge.xyz^$important,all 999 | ||realestatecallsagency.com^$important,all 1000 | ||reamproperty.com^$important,all 1001 | ||rees-magazin.de^$important,all 1002 | ||rehab-centers-alcohol-addiction.com^$important,all 1003 | ||rencontreangers.tk^$important,all 1004 | ||restauracenanove.cz^$important,all 1005 | ||revokedmob.com^$important,all 1006 | ||rezh-gid.ru^$important,all 1007 | ||ritymusccs.com^$important,all 1008 | ||ro-casinogames.com^$important,all 1009 | ||robberscull.com^$important,all 1010 | ||rodeostampedehack.pro^$important,all 1011 | ||russianporn.tv^$important,all 1012 | ||safeemergency.com^$important,all 1013 | ||san-fernando.es^$important,all 1014 | ||saskya.com.br^$important,all 1015 | ||scan-5398.win^$important,all 1016 | ||schaudt.eu^$important,all 1017 | ||searchproducts2017.review^$important,all 1018 | ||selectivparfumes.ru^$important,all 1019 | ||sellarafaeli.com^$important,all 1020 | ||sentwrote.live^$important,all 1021 | ||servicelaptop.eu^$important,all 1022 | ||sevilladentalcare.com^$important,all 1023 | ||sexconjugale.racing^$important,all 1024 | ||shvana.com^$important,all 1025 | ||skarabeos-shop.de^$important,all 1026 | ||skinhelpsky.pro^$important,all 1027 | ||skmssc.icu^$important,all 1028 | ||sma-norge.no^$important,all 1029 | ||smsolutions.co.in^$important,all 1030 | ||snapchatscorehack.site^$important,all 1031 | ||sortrashion.com^$important,all 1032 | ||srt.icu^$important,all 1033 | ||ssrpaner.xyz^$important,all 1034 | ||statblog.ru^$important,all 1035 | ||stephenfarrell.io^$important,all 1036 | ||stisla.com^$important,all 1037 | ||sudburyautoglass.ca^$important,all 1038 | ||sunbeach.fr^$important,all 1039 | ||superior-net.tech^$important,all 1040 | ||supnim.com^$important,all 1041 | ||sweethomeclean.online^$important,all 1042 | ||tcam.club^$important,all 1043 | ||techniche.org.in^$important,all 1044 | ||teknist.xyz^$important,all 1045 | ||tentcity4.info^$important,all 1046 | ||thebubbleprocess.com^$important,all 1047 | ||thegenerouschef.com^$important,all 1048 | ||theunderheard.com^$important,all 1049 | ||timberyart.gr^$important,all 1050 | ||tranquilodobem.site^$important,all 1051 | ||tvaktuality.cz^$important,all 1052 | ||tvmacs.com^$important,all 1053 | ||txhomeinsurance.com^$important,all 1054 | ||uprav559.ru^$important,all 1055 | ||uscfootball.us^$important,all 1056 | ||vanillaicebook.com^$important,all 1057 | ||vbivaia.site^$important,all 1058 | ||velis.fr^$important,all 1059 | ||veltrodevelopment.com^$important,all 1060 | ||vendoradvocatemelb.com.au^$important,all 1061 | ||vietnamquehuong.com^$important,all 1062 | ||vivamariapizza.com^$important,all 1063 | ||vnb77.com^$important,all 1064 | ||voyageskinhealth.com^$important,all 1065 | ||vuthanhluan.com^$important,all 1066 | ||webtube.land^$important,all 1067 | ||winjudi77.biz^$important,all 1068 | ||wodemind.net^$important,all 1069 | ||xanahouse1.com^$important,all 1070 | ||xc7s.icu^$important,all 1071 | ||xmzbsjgv.icu^$important,all 1072 | ||xn--zqsu8k5y0b.com^$important,all 1073 | ||xtydt.icu^$important,all 1074 | ||xxoo6.com^$important,all 1075 | ||xyyiyuan.cn^$important,all 1076 | ||yesfifa.com^$important,all 1077 | ||ymo.co.za^$important,all 1078 | ||yo6.co^$important,all 1079 | ||yoshikanegroup.com^$important,all 1080 | ||youlikehookups.com^$important,all 1081 | ||yukongoldextremeapp.com^$important,all 1082 | ||yymoli.net^$important,all 1083 | ||z3uu.com^$important,all 1084 | ||zzssfc.tk^$important,all 1085 | --------------------------------------------------------------------------------