Initial Commit
This commit is contained in:
commit
bb6f1c42d6
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
**/__pycache__/
|
||||||
|
**/.coverage
|
||||||
|
**/torinator.sqlite
|
||||||
|
src/torinator.egg-info/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
notes/
|
||||||
|
torinator_venv/
|
14
.pre-commit-config.yaml
Normal file
14
.pre-commit-config.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
repos:
|
||||||
|
- repo: https://github.com/psf/black
|
||||||
|
rev: 20.8b1
|
||||||
|
hooks:
|
||||||
|
- id: black
|
||||||
|
name: torinator-server-black
|
||||||
|
language_version: python3.9
|
||||||
|
files: '^src/torinator/|^setup.py|^tests/torinator/'
|
||||||
|
- repo: https://gitlab.com/pycqa/flake8
|
||||||
|
rev: 3.9.0
|
||||||
|
hooks:
|
||||||
|
- id: flake8
|
||||||
|
name: torinator-server-flake8
|
||||||
|
files: '^src/torinator/|^setup.py|^tests/torinator/'
|
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
FROM python:3.9.2-slim as build
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
RUN python setup.py clean --all install
|
||||||
|
|
||||||
|
FROM python:3.9.2-alpine3.13
|
||||||
|
COPY --from=build /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
|
||||||
|
|
||||||
|
RUN pip3 install gunicorn
|
||||||
|
|
||||||
|
ENTRYPOINT ["gunicorn"]
|
||||||
|
CMD ["torinator:create_app()", "--bind", "0.0.0.0:5000", "--threads=4"]
|
339
LICENSE
Normal file
339
LICENSE
Normal file
@ -0,0 +1,339 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Lesser General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
{{description}}
|
||||||
|
Copyright (C) {{year}} {{fullname}}
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) year name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
{signature of Ty Coon}, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License.
|
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
recursive-include src/torinator/api *.py
|
||||||
|
recursive-include src/torinator/resources *
|
83
README.md
Normal file
83
README.md
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
# TORinator
|
||||||
|
A Tor IP address indexer. A local database is maintained and regularly updated
|
||||||
|
from multiple sources. By default, the sources are scraped every 45 minutes in
|
||||||
|
order to prevent rate limiting / blocking. You can override this using an
|
||||||
|
enviornment variable - details below.
|
||||||
|
|
||||||
|
|
||||||
|
## API Docs
|
||||||
|
|
||||||
|
# Get All IPs
|
||||||
|
curl -s http://127.0.0.1:5000/api/v1/ips | jq '.'
|
||||||
|
|
||||||
|
# Get All Exclusions
|
||||||
|
curl -s http://127.0.0.1:5000/api/v1/exclusions | jq '.'
|
||||||
|
|
||||||
|
# Add Exclusion IP
|
||||||
|
curl -X POST http://127.0.0.1:5000/api/v1/exclusions \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d '{ "ip": "202.59.9.238" }' | jq '.'
|
||||||
|
|
||||||
|
# Remove Exclusion IP
|
||||||
|
curl -X DELETE http://127.0.0.1:5000/api/v1/exclusions/202.59.9.238
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
The application can be configured using environment variables. The following
|
||||||
|
vars are available:
|
||||||
|
|
||||||
|
| Environment Variable | Description | Default |
|
||||||
|
|--------------------------|---------------------------------|---------|
|
||||||
|
| TORINATOR_DB_TYPE | Database type (memory / sqlite) | sqlite |
|
||||||
|
| TORINATOR_DATA_PATH | Path to store the database | ./ |
|
||||||
|
| TORINATOR_UPDATE_SOURCE | Update source (web / file ) | web |
|
||||||
|
| TORINATOR_UPDATE_CADENCE | Update cadence in seconds | 2700 |
|
||||||
|
|
||||||
|
You can find examples in the `docker-compose.yml` file.
|
||||||
|
|
||||||
|
|
||||||
|
## Running (Production)
|
||||||
|
```
|
||||||
|
# Be sure image is built
|
||||||
|
docker-compose build
|
||||||
|
|
||||||
|
# Run compose in background. Service accessible via localhost:5000
|
||||||
|
docker-compose up -d
|
||||||
|
|
||||||
|
# Alternatively, in virtualenv
|
||||||
|
torinator run
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running (Development)
|
||||||
|
Once you have installed the setup.py and torinator[dev] dependencies, you can
|
||||||
|
run `pre-commit` to lint all server files:
|
||||||
|
|
||||||
|
```
|
||||||
|
pre-commit run --all-files
|
||||||
|
```
|
||||||
|
|
||||||
|
To run:
|
||||||
|
```
|
||||||
|
# Setup virtual env
|
||||||
|
python3 -m venv torinator_venv
|
||||||
|
. torinator_venv/bin/activate
|
||||||
|
|
||||||
|
# Link torinator to working directory & install dev dependencies
|
||||||
|
python setup.py develop easy_install torinator[dev]
|
||||||
|
|
||||||
|
# Can use to run the server
|
||||||
|
torinator run
|
||||||
|
|
||||||
|
# Or with env vars
|
||||||
|
TORINATOR_UPDATE_SOURCE=file torinator run
|
||||||
|
```
|
||||||
|
|
||||||
|
### Adding Sources
|
||||||
|
While a little cumbersome, you can add additional sources in the
|
||||||
|
`./src/torinator/list_updater.py` file. In the `__init__`, add additional
|
||||||
|
sources with their URL's, parsing function, and filepath (if desired). Using
|
||||||
|
a filepath allows you to reference a local file for parsing instead of hitting
|
||||||
|
the web everytime. This is useful during development to prevent rate limiting.
|
||||||
|
|
||||||
|
Local files should be stored in `./src/torinator/resources/*` and are copied by
|
||||||
|
the `MANIFEST.in` during build.
|
12
docker-compose.yml
Normal file
12
docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
torinator:
|
||||||
|
ports:
|
||||||
|
- '5000:5000'
|
||||||
|
environment:
|
||||||
|
- PYTHONUNBUFFERED=TRUE
|
||||||
|
# - TORINATOR_UPDATE_SOURCE=file
|
||||||
|
# - TORINATOR_UPDATE_CADENCE=10
|
||||||
|
build: .
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
21
setup.py
Normal file
21
setup.py
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="torinator",
|
||||||
|
description="TOR Endpoing Indexer",
|
||||||
|
author="Evan Reichard",
|
||||||
|
version="0.0.1",
|
||||||
|
packages=find_packages("src"),
|
||||||
|
package_dir={"": "src"},
|
||||||
|
zip_safe=False,
|
||||||
|
include_package_data=True,
|
||||||
|
entry_points={"console_scripts": ["torinator = torinator:cli"]},
|
||||||
|
install_requires=[
|
||||||
|
"sqlalchemy",
|
||||||
|
"requests",
|
||||||
|
"Flask",
|
||||||
|
"bs4",
|
||||||
|
],
|
||||||
|
tests_require=["pytest"],
|
||||||
|
extras_require={"dev": ["pre-commit", "black", "flake8", "pytest"]},
|
||||||
|
)
|
38
src/torinator/__init__.py
Normal file
38
src/torinator/__init__.py
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import click
|
||||||
|
import signal
|
||||||
|
import sys
|
||||||
|
from importlib.metadata import version
|
||||||
|
from torinator.config import Config
|
||||||
|
from torinator.list_updater import TORListManager
|
||||||
|
from torinator.database import DatabaseConnector
|
||||||
|
from flask import Flask
|
||||||
|
from flask.cli import FlaskGroup
|
||||||
|
|
||||||
|
__version__ = version("torinator")
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
database = DatabaseConnector(Config.DB_TYPE, Config.DATA_PATH)
|
||||||
|
list_manager = TORListManager(Config.UPDATE_SOURCE, Config.UPDATE_CADENCE)
|
||||||
|
|
||||||
|
|
||||||
|
def signal_handler(sig, frame):
|
||||||
|
list_manager.stop()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
|
def create_app():
|
||||||
|
import torinator.api.v1 as api_v1
|
||||||
|
|
||||||
|
app.register_blueprint(api_v1.bp)
|
||||||
|
|
||||||
|
list_manager.start()
|
||||||
|
return app
|
||||||
|
|
||||||
|
|
||||||
|
@click.group(cls=FlaskGroup, create_app=create_app)
|
||||||
|
def cli():
|
||||||
|
"""Management script for the application."""
|
||||||
|
|
||||||
|
|
||||||
|
# Handle SIGINT
|
||||||
|
signal.signal(signal.SIGINT, signal_handler)
|
0
src/torinator/api/__init__.py
Normal file
0
src/torinator/api/__init__.py
Normal file
43
src/torinator/api/v1.py
Normal file
43
src/torinator/api/v1.py
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import torinator
|
||||||
|
from flask import Blueprint, request
|
||||||
|
|
||||||
|
# Setup blueprint & websocket
|
||||||
|
bp = Blueprint("v1", __name__, url_prefix="/api/v1")
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/status", methods=["GET"])
|
||||||
|
def get_status():
|
||||||
|
"""Get server version."""
|
||||||
|
return {
|
||||||
|
"version": torinator.__version__
|
||||||
|
# TODO: All IPs Loaded?
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/ips", methods=["GET"])
|
||||||
|
def get_ips():
|
||||||
|
"""Get tor ips."""
|
||||||
|
|
||||||
|
all_ips = torinator.database.get_ips()
|
||||||
|
return {"data": all_ips, "size": len(all_ips)}
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/exclusions", methods=["POST", "GET"])
|
||||||
|
def exclusions():
|
||||||
|
|
||||||
|
if request.method == "GET":
|
||||||
|
all_exclusions = torinator.database.get_exclusions()
|
||||||
|
return {"data": all_exclusions, "size": len(all_exclusions)}
|
||||||
|
elif request.method == "POST":
|
||||||
|
data = request.get_json()
|
||||||
|
torinator.database.add_exclusion(data["ip"])
|
||||||
|
return {"message": "SUCCESS"}
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route("/exclusions/<string:ip_str>", methods=["DELETE"])
|
||||||
|
def exclusions_id(ip_str):
|
||||||
|
|
||||||
|
if request.method == "DELETE":
|
||||||
|
torinator.database.delete_exclusion(ip_str)
|
||||||
|
|
||||||
|
return {"message": "SUCCESS"}
|
29
src/torinator/config.py
Normal file
29
src/torinator/config.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
|
def get_env(key, default=None, required=False):
|
||||||
|
"""Wrapper for gathering env vars."""
|
||||||
|
if required:
|
||||||
|
assert key in os.environ, "Missing Environment Variable: %s" % key
|
||||||
|
return os.environ.get(key, default)
|
||||||
|
|
||||||
|
|
||||||
|
class Config:
|
||||||
|
"""Wrap application configurations
|
||||||
|
|
||||||
|
Attributes
|
||||||
|
----------
|
||||||
|
DB_TYPE : str
|
||||||
|
The specied desired database (default: sqlite)
|
||||||
|
DATA_PATH : str
|
||||||
|
The path where to store any resources (default: ./)
|
||||||
|
UPDATE_SOURCE : str
|
||||||
|
Whether to use the 'file' or 'web' tor source (default: web)
|
||||||
|
UPDATE_CADENCE : int
|
||||||
|
Update cadence in seconds (default: 2700)
|
||||||
|
"""
|
||||||
|
|
||||||
|
DB_TYPE = get_env("TORINATOR_DB_TYPE", default="sqlite")
|
||||||
|
DATA_PATH = get_env("TORINATOR_DATA_PATH", default="./")
|
||||||
|
UPDATE_SOURCE = get_env("TORINATOR_UPDATE_SOURCE", default="web")
|
||||||
|
UPDATE_CADENCE = int(get_env("TORINATOR_UPDATE_CADENCE", default=2700))
|
149
src/torinator/database.py
Normal file
149
src/torinator/database.py
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
from torinator.models import Base, IPAddress, ExclusionIPAddress, TorIPAddress
|
||||||
|
import threading
|
||||||
|
from os import path
|
||||||
|
from sqlalchemy import create_engine
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
|
||||||
|
|
||||||
|
class DatabaseConnector:
|
||||||
|
def __init__(self, db_type, data_path=None):
|
||||||
|
"""
|
||||||
|
Parameters
|
||||||
|
----------
|
||||||
|
db_type : str
|
||||||
|
Database tyle (e.g. sqlite, memory)
|
||||||
|
data_path : str
|
||||||
|
Directory to store the sqlite file
|
||||||
|
"""
|
||||||
|
if db_type.lower() == "memory":
|
||||||
|
self.__engine = create_engine(
|
||||||
|
"sqlite+pysqlite:///:memory:", echo=False, future=True
|
||||||
|
)
|
||||||
|
elif db_type.lower() == "sqlite":
|
||||||
|
db_path = path.join(data_path, "torinator.sqlite")
|
||||||
|
self.__engine = create_engine(
|
||||||
|
"sqlite+pysqlite:///%s" % db_path,
|
||||||
|
echo=False,
|
||||||
|
future=True,
|
||||||
|
)
|
||||||
|
Base.metadata.create_all(self.__engine)
|
||||||
|
self.__lock = threading.Lock()
|
||||||
|
|
||||||
|
def update_tor_ips(self, ip_strs, list_name):
|
||||||
|
self.__lock.acquire()
|
||||||
|
session = Session(bind=self.__engine)
|
||||||
|
|
||||||
|
# Add Any New IPs
|
||||||
|
ip_addrs = []
|
||||||
|
for ip_str in ip_strs:
|
||||||
|
ip_addr = (
|
||||||
|
session.query(IPAddress).filter(IPAddress.ip == ip_str).first()
|
||||||
|
) # noqa: E501
|
||||||
|
if not ip_addr:
|
||||||
|
ip_addrs.append(IPAddress(ip=ip_str))
|
||||||
|
|
||||||
|
session.bulk_save_objects(ip_addrs)
|
||||||
|
|
||||||
|
# Remove Old Tor Relationships
|
||||||
|
session.query(TorIPAddress).filter(
|
||||||
|
TorIPAddress.list_name == list_name
|
||||||
|
).delete() # noqa: E501
|
||||||
|
# session.commit()
|
||||||
|
|
||||||
|
# Add New Tor Relationships
|
||||||
|
tor_ips = []
|
||||||
|
for ip_str in ip_strs:
|
||||||
|
ip_addr = (
|
||||||
|
session.query(IPAddress).filter(IPAddress.ip == ip_str).first()
|
||||||
|
) # noqa: E501
|
||||||
|
tor_ip = TorIPAddress(ip_id=ip_addr.id, list_name=list_name)
|
||||||
|
tor_ips.append(tor_ip)
|
||||||
|
|
||||||
|
session.bulk_save_objects(tor_ips)
|
||||||
|
session.commit()
|
||||||
|
|
||||||
|
session.close()
|
||||||
|
self.__lock.release()
|
||||||
|
|
||||||
|
def get_ips(self, include_exclusions=False):
|
||||||
|
self.__lock.acquire()
|
||||||
|
session = Session(bind=self.__engine)
|
||||||
|
|
||||||
|
# Return All or Tor?
|
||||||
|
query = session.query(IPAddress)
|
||||||
|
if not include_exclusions:
|
||||||
|
query = (
|
||||||
|
query.join(TorIPAddress)
|
||||||
|
.outerjoin(ExclusionIPAddress)
|
||||||
|
.filter(ExclusionIPAddress.id == None) # noqa: E711
|
||||||
|
)
|
||||||
|
all_ips = query.all()
|
||||||
|
|
||||||
|
session.close()
|
||||||
|
self.__lock.release()
|
||||||
|
|
||||||
|
return list(map(lambda x: x.ip, all_ips))
|
||||||
|
|
||||||
|
def get_exclusions(self):
|
||||||
|
self.__lock.acquire()
|
||||||
|
session = Session(bind=self.__engine)
|
||||||
|
|
||||||
|
# Return All Exclusions
|
||||||
|
all_ips = (
|
||||||
|
session.query(IPAddress)
|
||||||
|
.join(ExclusionIPAddress, IPAddress.id == ExclusionIPAddress.ip_id)
|
||||||
|
.all()
|
||||||
|
)
|
||||||
|
|
||||||
|
session.close()
|
||||||
|
self.__lock.release()
|
||||||
|
|
||||||
|
return list(map(lambda x: x.ip, all_ips))
|
||||||
|
|
||||||
|
def add_exclusion(self, ip_str):
|
||||||
|
self.__lock.acquire()
|
||||||
|
session = Session(bind=self.__engine)
|
||||||
|
|
||||||
|
# Add New IP
|
||||||
|
ip_row = (
|
||||||
|
session.query(IPAddress).filter(IPAddress.ip == ip_str).first()
|
||||||
|
) # noqa: E501
|
||||||
|
if not ip_row:
|
||||||
|
session.add(IPAddress(ip=ip_str))
|
||||||
|
session.commit()
|
||||||
|
ip_row = (
|
||||||
|
session.query(IPAddress).filter(IPAddress.ip == ip_str).first()
|
||||||
|
) # noqa: E501
|
||||||
|
|
||||||
|
# Add New Exclusion
|
||||||
|
ip_exclusion = (
|
||||||
|
session.query(ExclusionIPAddress)
|
||||||
|
.filter(ExclusionIPAddress.ip_id == ip_row.id)
|
||||||
|
.first()
|
||||||
|
)
|
||||||
|
if not ip_exclusion:
|
||||||
|
ip_exclusion = ExclusionIPAddress(ip_id=ip_row.id)
|
||||||
|
session.add(ip_exclusion)
|
||||||
|
|
||||||
|
session.commit()
|
||||||
|
session.close()
|
||||||
|
self.__lock.release()
|
||||||
|
|
||||||
|
def delete_exclusion(self, ip_str):
|
||||||
|
self.__lock.acquire()
|
||||||
|
session = Session(bind=self.__engine)
|
||||||
|
|
||||||
|
# Get IP Address
|
||||||
|
ip_row = (
|
||||||
|
session.query(IPAddress).filter(IPAddress.ip == ip_str).first()
|
||||||
|
) # noqa: E501
|
||||||
|
|
||||||
|
# Delete List Items
|
||||||
|
if ip_row:
|
||||||
|
session.query(ExclusionIPAddress).filter(
|
||||||
|
ExclusionIPAddress.ip_id == ip_row.id
|
||||||
|
).delete()
|
||||||
|
session.commit()
|
||||||
|
|
||||||
|
session.close()
|
||||||
|
self.__lock.release()
|
117
src/torinator/list_updater.py
Normal file
117
src/torinator/list_updater.py
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
import torinator
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
from threading import Thread
|
||||||
|
from io import open
|
||||||
|
import os
|
||||||
|
import requests
|
||||||
|
import re
|
||||||
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
class TORListManager:
|
||||||
|
def __init__(self, source, cadence):
|
||||||
|
self.__pending_shutdown = False
|
||||||
|
self.__source = source
|
||||||
|
self.__cadence = cadence
|
||||||
|
print(source)
|
||||||
|
print(cadence)
|
||||||
|
self.__sources = [
|
||||||
|
{
|
||||||
|
"url": "https://www.dan.me.uk/tornodes",
|
||||||
|
"filename": "danme_html",
|
||||||
|
"name": "DanMe",
|
||||||
|
"function": self.normalizeDanMe,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://udger.com/resources/ip-list/tor_exit_node",
|
||||||
|
"filename": "udger_html",
|
||||||
|
"name": "Udger",
|
||||||
|
"function": self.normalizeUdger,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
def normalizeUdger(self, raw_html):
|
||||||
|
soup = BeautifulSoup(raw_html, "html.parser")
|
||||||
|
all_results = soup.select('table#iptab tr a[href*="ip="]')
|
||||||
|
|
||||||
|
normalized_results = []
|
||||||
|
for item in all_results:
|
||||||
|
normalized_results.append(item.text)
|
||||||
|
|
||||||
|
return list(set(normalized_results))
|
||||||
|
|
||||||
|
def normalizeDanMe(self, raw_html):
|
||||||
|
matched_re = re.search(
|
||||||
|
r"<!-- __BEGIN_TOR_NODE_LIST__ \/\/-->\n((?:.*\n)*)<!-- __END_TOR_NODE_LIST__ \/\/-->", # noqa: E501
|
||||||
|
raw_html,
|
||||||
|
re.MULTILINE,
|
||||||
|
)
|
||||||
|
if matched_re is None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
all_lines = matched_re[1].split("\n")
|
||||||
|
stripped_lines = list(
|
||||||
|
map(
|
||||||
|
lambda x: re.sub(r"<br>$", "", x),
|
||||||
|
filter(lambda x: x.strip() != "", all_lines),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
normalized_results = []
|
||||||
|
for item in stripped_lines:
|
||||||
|
row_cells = item.split("|")
|
||||||
|
normalized_results.append(row_cells[0])
|
||||||
|
|
||||||
|
return list(set(normalized_results))
|
||||||
|
|
||||||
|
def read_file(self, filename):
|
||||||
|
filepath = os.path.join(
|
||||||
|
os.path.dirname(__file__), "./resources/" + filename
|
||||||
|
) # noqa: E501
|
||||||
|
|
||||||
|
f = open(filepath, "r")
|
||||||
|
return f.read()
|
||||||
|
|
||||||
|
def read_page(self, url):
|
||||||
|
page = requests.get(url)
|
||||||
|
return page.text
|
||||||
|
|
||||||
|
def __run_sources(self):
|
||||||
|
curr_time = self.__cadence
|
||||||
|
|
||||||
|
while not self.__pending_shutdown:
|
||||||
|
time.sleep(1)
|
||||||
|
curr_time += 1
|
||||||
|
|
||||||
|
if curr_time < self.__cadence:
|
||||||
|
continue
|
||||||
|
|
||||||
|
curr_time = 0
|
||||||
|
|
||||||
|
for s in self.__sources:
|
||||||
|
# You can swap the bottom two lines for testing so you dont
|
||||||
|
# get rate limited
|
||||||
|
|
||||||
|
if self.__source == "web":
|
||||||
|
raw_html = self.read_page(s["url"])
|
||||||
|
elif self.__source == "file":
|
||||||
|
raw_html = self.read_file(s["filename"])
|
||||||
|
|
||||||
|
parsed_ips = s["function"](raw_html)
|
||||||
|
if parsed_ips is None:
|
||||||
|
print(
|
||||||
|
"[SOURCE ERROR] You may be rate limited: %s"
|
||||||
|
% (s["name"]) # noqa: E501
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
|
||||||
|
torinator.database.update_tor_ips(parsed_ips, s["name"])
|
||||||
|
print("[SOURCE UPDATE] Updated Database: %s" % (s["name"]))
|
||||||
|
|
||||||
|
def start(self):
|
||||||
|
self.__source_thread = Thread(target=self.__run_sources)
|
||||||
|
self.__source_thread.start()
|
||||||
|
|
||||||
|
def stop(self):
|
||||||
|
self.__pending_shutdown = True
|
||||||
|
self.__source_thread.join()
|
39
src/torinator/models.py
Normal file
39
src/torinator/models.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
from sqlalchemy import Column, Integer, String, ForeignKey
|
||||||
|
from sqlalchemy.orm import declarative_base, relationship
|
||||||
|
|
||||||
|
Base = declarative_base()
|
||||||
|
|
||||||
|
|
||||||
|
class ExclusionIPAddress(Base):
|
||||||
|
__tablename__ = "exclusion_ip_addrs"
|
||||||
|
|
||||||
|
# ID
|
||||||
|
id = Column(Integer, primary_key=True, unique=True)
|
||||||
|
|
||||||
|
# IP Addr
|
||||||
|
ip_id = Column(Integer, ForeignKey("ip_addrs.id"))
|
||||||
|
ip_addr = relationship("IPAddress", foreign_keys=[ip_id])
|
||||||
|
|
||||||
|
|
||||||
|
class TorIPAddress(Base):
|
||||||
|
__tablename__ = "tor_ip_addrs"
|
||||||
|
|
||||||
|
# ID
|
||||||
|
id = Column(Integer, primary_key=True, unique=True)
|
||||||
|
|
||||||
|
# List Name
|
||||||
|
list_name = Column(String)
|
||||||
|
|
||||||
|
# IP Addr
|
||||||
|
ip_id = Column(Integer, ForeignKey("ip_addrs.id"))
|
||||||
|
ip_addr = relationship("IPAddress", foreign_keys=[ip_id])
|
||||||
|
|
||||||
|
|
||||||
|
class IPAddress(Base):
|
||||||
|
__tablename__ = "ip_addrs"
|
||||||
|
|
||||||
|
# ID
|
||||||
|
id = Column(Integer, primary_key=True, unique=True)
|
||||||
|
|
||||||
|
# String representation of an IP Address
|
||||||
|
ip = Column(String, unique=True)
|
9692
src/torinator/resources/danme_html
Normal file
9692
src/torinator/resources/danme_html
Normal file
File diff suppressed because it is too large
Load Diff
253
src/torinator/resources/udger_html
Normal file
253
src/torinator/resources/udger_html
Normal file
@ -0,0 +1,253 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
||||||
|
<!--
|
||||||
|
| | | | _ \ __ \| ___| ___ \
|
||||||
|
| | | | | | | | \/| |__ | |_/ /
|
||||||
|
| | | | | | | | __ | __|| /
|
||||||
|
| |_| | |/ /| |_\ \| |___| |\ \ ... leader in the detection of browsers, mobiles, tablets, Smart TV
|
||||||
|
\___/|___/ \____/\____/\_| \_| and Detection of IP addresses by public proxies, VPN services, fake crawlers ...
|
||||||
|
-->
|
||||||
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1" />
|
||||||
|
<meta http-equiv="Accept-CH" content="Width, Viewport-Width, Downlink, Sec-CH-UA, Sec-CH-UA-Mobile, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Platform">
|
||||||
|
<meta name="description" content="Detection of IP addresses by public proxies, VPN services, fake crawlers and more" />
|
||||||
|
<meta name="keywords" content="tor exit nodes, categorized IP addresses" />
|
||||||
|
<meta property="og:site_name" content="udger.com" />
|
||||||
|
<meta property="og:description" content="Detection of IP addresses by public proxies, VPN services, fake crawlers and more" />
|
||||||
|
<meta property="og:title" content="List of tor exit nodes IP address :: udger.com" />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://udger.com/resources/ip-list/tor_exit_node" />
|
||||||
|
<meta property="og:image" content="https://udger.com/pub/img/logo.png" />
|
||||||
|
<meta property="fb:app_id" content="796196487100000" />
|
||||||
|
|
||||||
|
<meta name="twitter:image" content='https://udger.com/pub/img/logo.png' />
|
||||||
|
<meta name="twitter:card" content='summary_large_image' />
|
||||||
|
<meta name="twitter:site" content='@Udgercom' />
|
||||||
|
<meta name="twitter:title" content='List of tor exit nodes IP address :: udger.com' />
|
||||||
|
<meta name="twitter:description" content='Detection of IP addresses by public proxies, VPN services, fake crawlers and more' />
|
||||||
|
<meta name="google-site-verification" content="t46iLr85PepuRX-liH_7a6QP6ttcWj_S7VxjIycxn4U" />
|
||||||
|
|
||||||
|
<title>List of tor exit nodes IP address :: udger.com</title>
|
||||||
|
<link rel="alternate" type="application/rss+xml" title=">udger.com: Recently Added UserAgent to DB" href="/rss.xml"/>
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico">
|
||||||
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
||||||
|
<link rel="stylesheet" href="/pub/css/style.css" type="text/css" media="screen">
|
||||||
|
<link rel="stylesheet" href="/pub/css/animate.css" type="text/css" media="screen">
|
||||||
|
<link rel="stylesheet" href="/pub/css/lightbox.css" type="text/css" media="screen" />
|
||||||
|
<link rel="stylesheet" href="/pub/css/css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/pub/css/mediaqueries.css" type="text/css" media="screen">
|
||||||
|
<link rel="stylesheet" href="/pub/css/widget.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/css/homeslider.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/css/styles.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/css/social_widget.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/css/wptf.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/css/pagenavi-css.css" type="text/css" media="all">
|
||||||
|
<link rel="stylesheet" href="/pub/js/fancytree/skin/ui.fancytree.min.css" type="text/css">
|
||||||
|
<link rel="stylesheet" href="/pub/css//selection-sharer.css" />
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="/pub/js/jquery-1.3.2.min.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/jquery.cycle2.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/jquery-migrate.min.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/jquery.history.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/fn.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/lightbox.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="/pub/css/jquery-ui.css">
|
||||||
|
<script src="/pub/js/jquery-1.10.2.js"></script>
|
||||||
|
<script src="/pub/js/jquery-ui.js"></script>
|
||||||
|
<script src="/pub/js/fancytree/jquery.fancytree-all.min.js" type="text/javascript"></script>
|
||||||
|
<script src="/pub/js/chart/Chart.min.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shCore.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushPhp.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushXml.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushPerl.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushCSharp.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushJava.js"></script>
|
||||||
|
<script type="text/javascript" src="/pub/js/sh/shBrushPython.js"></script>
|
||||||
|
<link type="text/css" rel="stylesheet" href="/pub/css/sh/shCoreDefault.css"/>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<div id="overlay" style="display: none;">
|
||||||
|
<div id="loginbox" >
|
||||||
|
<a class="login_close"><img src="/pub/img/close-icon.png" class="login_btn_close" width="26" height="26" title="Close Window" alt="Close" /></a>
|
||||||
|
|
||||||
|
<div id="tabs">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#tabs-1">Local account</a></li>
|
||||||
|
<li><a href="#tabs-2">Social account</a></li>
|
||||||
|
</ul>
|
||||||
|
<div id="tabs-1">
|
||||||
|
<h3>User Login</h3>
|
||||||
|
<div class="err" id="add_err"></div>
|
||||||
|
<fieldset>
|
||||||
|
<form action="./" method="post">
|
||||||
|
<input type="hidden" name="next_url" id="next_url" value="https://udger.com/resources/ip-list/tor_exit_node" />
|
||||||
|
<label for="login_user">Username </label> <input type="text" size="30" name="login_user" id="login_user" placeholder="Username" />
|
||||||
|
<label for="login_pass">Password</label><input type="password" size="30" name="login_pass" id="login_pass" placeholder="password" />
|
||||||
|
<label for="login_rememberme">Remember Me</label><input name="login_rememberme" type="checkbox" id="login_rememberme" value="1" />
|
||||||
|
<label></label><input type="submit" id="login" name="login" value="Login" class="loginbutton" >
|
||||||
|
<a href="/account/forgotPassword" class="forgot_pwd">Forgotten password</a> | <a href="/account/register">Register</a>
|
||||||
|
</form>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<div id="tabs-2">
|
||||||
|
<h3>Google/Facebook login</h3>
|
||||||
|
<!--<a href="/rpc/login/login.php?provider=Google&next_url=https://udger.com/resources/ip-list/tor_exit_node"><img src='/pub/img/login_google.png'></img></a>--><br><br>
|
||||||
|
<!--<a href="/rpc/login/login.php?provider=Facebook&next_url=https://udger.com/resources/ip-list/tor_exit_node"><img src='/pub/img/login_facebook.png'></img></a>--> <br><br>
|
||||||
|
<!--<p>Only for existing customers who use this sign-in. New accounts can not be created in this way.</p>-->
|
||||||
|
<p>This login method has been cancelled. Please contact us in case of problems.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<ul id="usernav">
|
||||||
|
<li><a class="login_link">Log In</a></li> || <li><a href="/account/register">Register</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
<header>
|
||||||
|
|
||||||
|
<div class="logo"><a href="/" title="UAS"><img src="/pub/img/logo.png" alt="UAS"></a></div>
|
||||||
|
<nav>
|
||||||
|
<div class="menu-main-navigation-container">
|
||||||
|
<ul id="menu-main-navigation" class="menu"><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/products">Products</a><ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/products/local_parser">Local parser</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/products/cloud_parser">Cloud parser</a></li></ul></li><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/prices">Prices</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/download">Download</a><ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/download/client">Clients</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/download/data">Data</a></li></ul></li><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/resources">Resources</a><ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/ua-list">UA list</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/ip-list">IP address list</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/datacenter-list">Datacenters list</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/mac-address-vendor">MAC address vendors</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/http-request-headers">HTTP request headers</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/udger-use">udger.com use</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/uas-news">UAS news in DB</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/resources/online-parser">Online parser</a></li></ul></li><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/support">Support</a><ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/support/documentation/">Documentation</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/support/what_is_my_ip_address">What is my IP</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/support/faq">FAQ</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="/support/delist-ip">Delist IP address</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://status.udger.com/">Services status <img src="/pub/img/external.png" width="11" height="9" alt="External link"></a></li></ul></li><li class="menu-item menu-item-type-custom menu-item-object-custom "><a href="/contact">Contact</a></li></ul> </div>
|
||||||
|
<select>
|
||||||
|
<option value="/products">Products</option><option value="/products/local_parser">Local parser</option><option value="/products/cloud_parser">Cloud parser</option><option value="/prices">Prices</option><option value="/download">Download</option><option value="/download/client">Clients</option><option value="/download/data">Data</option><option value="/resources">Resources</option><option value="/resources/ua-list">UA list</option><option value="/resources/ip-list">IP address list</option><option value="/resources/datacenter-list">Datacenters list</option><option value="/resources/mac-address-vendor">MAC address vendors</option><option value="/resources/http-request-headers">HTTP request headers</option><option value="/resources/udger-use">udger.com use</option><option value="/resources/uas-news">UAS news in DB</option><option value="/resources/online-parser">Online parser</option><option value="/support">Support</option><option value="/support/documentation/">Documentation</option><option value="/support/what_is_my_ip_address">What is my IP</option><option value="/support/faq">FAQ</option><option value="/support/delist-ip">Delist IP address</option><option value="https://status.udger.com/">Services status <img src="/pub/img/external.png" width="11" height="9" alt="External link"></option><option value="/contact">Contact</option> </select>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</header>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="bar"><div class="barinner"><h1><a href="/resources">Resources</a> > IP list: tor exit nodes</h1></div></div>
|
||||||
|
<div id="container">
|
||||||
|
<h2>Udger database includes categorized (udger detected/tested) IP addresses</h2>
|
||||||
|
<p>More than <b>734,000</b> of categorized IP addresses</p><p align="center"><b>List type: <a href="/resources/ip-list">Crawlers</a> | <a href="/resources/ip-list/web_proxy">Public proxies</a> | <a href="/resources/ip-list/cgi_proxy">Public cgi proxies</a> | <a href="/resources/ip-list/anonymizing_vpn_service">VPN services</a> | Tor exit nodes | <a href="/resources/ip-list/fake_crawler">Fake crawlers</a> | <a href="/resources/ip-list/web_scraper">Web scrapers</a> | <a href="/resources/ip-list/known_attack_source">Known attack source</a><br /> <br /></b></p><p align="center"><b>This list contains IPs of the last 3 months.</b></p><p align="center"><i>"Tor is a free software for enabling anonymous communication. Users are hidden under the exit nodes the Tor network."</i></p><span style="float: right;">showing first 30 records of <b>3,846 total</b></span><table id="iptab" width="100%" border="0">
|
||||||
|
<tr><th>Last seen</th><th>IP address</th><th>IP name</th><th>DC </th><th colspan="2">Country</th></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=46.167.244.113&action=analyze">46.167.244.113</a></td><td>113.244.167.46.finalhosting.cz</td><td><a href="/resources/datacenter-list/datacenter-detail?name=finaltek-com"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="FinalTek.com"></a></td><td>CZ</td><td><img src="/pub/img/flags/cz.png" width="16" height="11" title="CZ"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=46.226.104.191&action=analyze">46.226.104.191</a></td><td>xvm-104-191.dc0.ghst.net</td><td><a href="/resources/datacenter-list/datacenter-detail?name=gandi-net"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="Gandi SAS"></a></td><td>FR</td><td><img src="/pub/img/flags/fr.png" width="16" height="11" title="FR"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=88.208.215.64&action=analyze">88.208.215.64</a></td><td>uk5tor.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=fasthosts_internet_ltd"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="Fasthosts Internet Ltd"></a></td><td>GB</td><td><img src="/pub/img/flags/gb.png" width="16" height="11" title="GB"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=46.38.236.202&action=analyze">46.38.236.202</a></td><td>NurembergTor61.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.196.95.34&action=analyze">5.196.95.34</a></td><td>ns376762.ip-5-196-95.eu</td><td><a href="/resources/datacenter-list/datacenter-detail?name=ovh"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="OVH"></a></td><td>FR</td><td><img src="/pub/img/flags/fr.png" width="16" height="11" title="FR"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.98.153&action=analyze">5.45.98.153</a></td><td>NurembergTor60.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.104.141&action=analyze">5.45.104.141</a></td><td>NurembergTor34.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=80.82.78.8&action=analyze">80.82.78.8</a></td><td>torbaconexit1.rathhansen.com</td><td> </td><td>NL</td><td><img src="/pub/img/flags/nl.png" width="16" height="11" title="NL"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=45.61.188.200&action=analyze">45.61.188.200</a></td><td>torproject.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=buyvm-net"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="BuyVM (frantech)"></a></td><td>US</td><td><img src="/pub/img/flags/us.png" width="16" height="11" title="US"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.102.68&action=analyze">5.45.102.68</a></td><td>NurembergTor30.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=94.75.225.70&action=analyze">94.75.225.70</a></td><td>?</td><td><a href="/resources/datacenter-list/datacenter-detail?name=leaseweb"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="LeaseWeb"></a></td><td>NL</td><td><img src="/pub/img/flags/nl.png" width="16" height="11" title="NL"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=87.177.69.136&action=analyze">87.177.69.136</a></td><td>p57b14588.dip0.t-ipconnect.de</td><td> </td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.181.80.184&action=analyze">5.181.80.184</a></td><td>mail-jikpatch.pragmakey.com</td><td> </td><td>BG</td><td><img src="/pub/img/flags/bg.png" width="16" height="11" title="BG"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.104.176&action=analyze">5.45.104.176</a></td><td>NurembergTor54.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.99.26&action=analyze">5.45.99.26</a></td><td>NurembergTor26.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=88.208.240.188&action=analyze">88.208.240.188</a></td><td>uk3tor.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=fasthosts_internet_ltd"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="Fasthosts Internet Ltd"></a></td><td>GB</td><td><img src="/pub/img/flags/gb.png" width="16" height="11" title="GB"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=45.95.169.255&action=analyze">45.95.169.255</a></td><td>tor.maxko-hosting.com</td><td><a href="/resources/datacenter-list/datacenter-detail?name=maxko_hosting"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="MAXKO LLC."></a></td><td>HR</td><td><img src="/pub/img/flags/hr.png" width="16" height="11" title="HR"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=77.220.198.179&action=analyze">77.220.198.179</a></td><td>?</td><td> </td><td>BG</td><td><img src="/pub/img/flags/bg.png" width="16" height="11" title="BG"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=45.154.98.225&action=analyze">45.154.98.225</a></td><td>powered.by.rdp.sh</td><td> </td><td>HK</td><td><img src="/pub/img/flags/hk.png" width="16" height="11" title="HK"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=87.120.8.68&action=analyze">87.120.8.68</a></td><td>?</td><td><a href="/resources/datacenter-list/datacenter-detail?name=ssdcloud-bg"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="SSDCloud.BG"></a></td><td>BG</td><td><img src="/pub/img/flags/bg.png" width="16" height="11" title="BG"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=46.195.207.102&action=analyze">46.195.207.102</a></td><td>c-2ec3cf66-74736162.cust.telenor.se</td><td> </td><td>SE</td><td><img src="/pub/img/flags/se.png" width="16" height="11" title="SE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=88.208.225.209&action=analyze">88.208.225.209</a></td><td>?</td><td><a href="/resources/datacenter-list/datacenter-detail?name=fasthosts_internet_ltd"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="Fasthosts Internet Ltd"></a></td><td>GB</td><td><img src="/pub/img/flags/gb.png" width="16" height="11" title="GB"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=45.141.215.92&action=analyze">45.141.215.92</a></td><td>?</td><td> </td><td>NL</td><td><img src="/pub/img/flags/nl.png" width="16" height="11" title="NL"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=37.120.185.151&action=analyze">37.120.185.151</a></td><td>NurembergTor19.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.107.107&action=analyze">5.45.107.107</a></td><td>NurembergTor40.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=5.45.98.12&action=analyze">5.45.98.12</a></td><td>NurembergTor18.quetzalcoatl-relays.org</td><td><a href="/resources/datacenter-list/datacenter-detail?name=netcup_de"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="netcup GmbH"></a></td><td>DE</td><td><img src="/pub/img/flags/de.png" width="16" height="11" title="DE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=82.221.131.71&action=analyze">82.221.131.71</a></td><td>?</td><td><a href="/resources/datacenter-list/datacenter-detail?name=orangewebsite"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="OrangeWebsite (IceNetworks Ltd.)"></a></td><td>IS</td><td><img src="/pub/img/flags/is.png" width="16" height="11" title="IS"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=62.102.148.67&action=analyze">62.102.148.67</a></td><td>?</td><td><a href="/resources/datacenter-list/datacenter-detail?name=zwiebelfreunde"><img src="/pub/img/datacenter/datacenter.png" width="16" height="16" title="Zwiebelfreunde e.V."></a></td><td>SE</td><td><img src="/pub/img/flags/se.png" width="16" height="11" title="SE"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=84.234.96.133&action=analyze">84.234.96.133</a></td><td>?</td><td> </td><td>RO</td><td><img src="/pub/img/flags/ro.png" width="16" height="11" title="RO"></td></tr>
|
||||||
|
<tr><td>2022-09-27 19:41:04</td><td><a href="/resources/online-parser?Fip=79.110.62.244&action=analyze">79.110.62.244</a></td><td>?</td><td> </td><td>US</td><td><img src="/pub/img/flags/us.png" width="16" height="11" title="US"></td></tr>
|
||||||
|
<tr><td colspan="5"><br /> <br /> .. and more .. (All IP Addresses available to users with subscription. ... <a href="/prices">Learn More</a>)</td></tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
<div class="brands">
|
||||||
|
<div class="brandsinner">
|
||||||
|
<div class="brandintro">
|
||||||
|
<h5>Among our clients</h5>
|
||||||
|
<a href="/resources/udger-use">View more...</a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id93"><img src="/pub/img/cust/salesforce.png" alt="salesforce.com, inc." title="salesforce.com, inc." /></a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id2"><img src="/pub/img/cust/mailchimp.png" alt="MailChimp" title="MailChimp" /></a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id57"><img src="/pub/img/cust/dailymotion.png" alt="Dailymotion SA" title="Dailymotion SA" /></a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id75"><img src="/pub/img/cust/Akamai_Technologies.png" alt="Akamai Technologies, Inc." title="Akamai Technologies, Inc." /></a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id90"><img src="/pub/img/cust/oracle-logo.png" alt="Oracle" title="Oracle" /></a>
|
||||||
|
</div>
|
||||||
|
<div class="brand"> <a href="/resources/udger-use#id87"><img src="/pub/img/cust/paypal.png" alt="PayPal Holdings, Inc." title="PayPal Holdings, Inc." /></a>
|
||||||
|
</div>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="bottom">
|
||||||
|
<div class="bottominner">
|
||||||
|
<div class="col1">
|
||||||
|
<h3>Recently Added</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/resources/ua-list/bot-detail?bot=Paessler+bot#id144184">Robot: PaesslerCloudBot/1.0</a><li><a href="/resources/ua-list/bot-detail?bot=Paessler+bot#id144183">Robot: PRTG Network Monitor</a><li><a href="/resources/ua-list/bot-detail?bot=BuiltWith+crawler#id144128">Robot: BW/1.1</a><li><a href="/resources/ua-list/bot-detail?bot=BuiltWith+crawler#id144104">Robot: BW/1.1</a><li><a href="/resources/ua-list/bot-detail?bot=Headless+Chrome#id144114">Robot: Headless Chrome</a><li><a href="/resources/ua-list/browser-detail?browser=Biscuit">Browser: Biscuit</a></li> </ul>
|
||||||
|
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col2">
|
||||||
|
<h3>Products</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/products/local_parser">Local parser</a></li>
|
||||||
|
<li><a href="/products/cloud_parser">Cloud parser</a></li>
|
||||||
|
</ul>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col3">
|
||||||
|
<h3>Resources</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/resources/ua-list">UA list</a></li>
|
||||||
|
<li><a href="/resources/ip-list">IP list</a></li>
|
||||||
|
<li><a href="/resources/ua-list/devices-brand">Devices brand</a></li>
|
||||||
|
<li><a href="/resources/http-request-headers">HTTP request headers</a></li>
|
||||||
|
<li><a href="/resources/online-parser">Online parser</a></li>
|
||||||
|
</ul>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col4">
|
||||||
|
<h3>About Us</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/contact">Contact</a></li>
|
||||||
|
<li><a href="/about-us">About Us</a></li>
|
||||||
|
<li><a href="/about-us/executive-team">Executive Team</a></li>
|
||||||
|
<li><a href="/legal">Legal</a></li>
|
||||||
|
</ul>
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clearfix"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="modalWin"></div>
|
||||||
|
<footer><p>© 2009-2022 Udger s.r.o. | <a href="/legal/privacy">Privacy Policy</a> | <a href="/rss.xml">RSS</a> | <a href="https://hreb3d.com/">hreb3d.com</a> | <a href="/bottrap">Bot Trap</a> | <a href="/contact">Contact</a></p></footer>
|
||||||
|
|
||||||
|
<script src="/pub/js/selection-sharer.js"></script>
|
||||||
|
<script>
|
||||||
|
$('p').selectionSharer();
|
||||||
|
</script>
|
||||||
|
<script src="/pub/js/ch.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user