Full Code of vil/H4X-Tools for AI

master 47775368910e cached
35 files
409.8 KB
116.8k tokens
111 symbols
1 requests
Download .txt
Showing preview only (426K chars total). Download the full file or copy to clipboard to get everything.
Repository: vil/H4X-Tools
Branch: master
Commit: 47775368910e
Files: 35
Total size: 409.8 KB

Directory structure:
gitextract_rbfr722i/

├── .github/
│   ├── FUNDING.yml
│   └── workflows/
│       └── main.yml
├── .gitignore
├── LICENSE
├── README.md
├── h4xtools.py
├── helper/
│   ├── handles.py
│   ├── printer.py
│   ├── randomuser.py
│   ├── timer.py
│   └── url_helper.py
├── requirements.txt
├── resources/
│   ├── data.json
│   └── wordlist.txt
├── setup.bat
├── setup.sh
├── update.bat
├── update.sh
└── utils/
    ├── __init__.py
    ├── bluetooth_scanner.py
    ├── dirbuster.py
    ├── email_search.py
    ├── fake_info_generator.py
    ├── ig_scrape.py
    ├── ip_lookup.py
    ├── leak_search.py
    ├── local_users.py
    ├── phonenumber_lookup.py
    ├── port_scanner.py
    ├── search_username.py
    ├── web_reconnaissance.py
    ├── web_scrape.py
    ├── whois_lookup.py
    ├── wifi_finder.py
    └── wifi_vault.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/FUNDING.yml
================================================
github: vil


================================================
FILE: .github/workflows/main.yml
================================================
name: Build executables

on:
  workflow_dispatch: # Manually triggered event
  pull_request: # Trigger the workflow on push or pull request,

jobs:
  build_windows:
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@v4
      - name: Set up Python 3.12
        uses: actions/setup-python@v5
        with:
          python-version: 3.12
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install -r requirements.txt
      - name: Build Windows executable with pyinstaller
        run: |
          pyinstaller h4xtools.py --add-data "resources/*;resources" --onefile -F --clean
      - name: Calculate SHA256 hash
        run: |
          sha256sum dist/h4xtools.exe > dist/h4xtools.exe.hash
      - name: Upload Windows artifact
        uses: actions/upload-artifact@v4
        with:
          name: Windows Executable
          path: dist/

  build_linux:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Set up Python 3.12
        uses: actions/setup-python@v5
        with:
          python-version: 3.12
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install -r requirements.txt
      - name: Build Linux executable with pyinstaller
        run: |
          pyinstaller h4xtools.py --add-data "resources/*:resources" --onefile -F --clean
      - name: Calculate SHA256 hash
        run: |
          sha256sum dist/h4xtools > dist/h4xtools.hash
      - name: Upload Linux artifact
        uses: actions/upload-artifact@v4
        with:
          name: Linux Executable
          path: dist/


================================================
FILE: .gitignore
================================================
__pycache__
build
dist
scraped_data
venv
.venv
.env
.VC.opendb
.vc

================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  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
them 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 prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  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.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey 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;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If 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 convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU 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 that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  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.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
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.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     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
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    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 3 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, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program 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, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU 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.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
# H4X-Tools

[![GitHub latest commit](https://badgen.net/github/last-commit/vil/H4X-Tools)](https://GitHub.com/vil/H4X-Tools/commit/)
[![GitHub commits](https://badgen.net/github/commits/vil/H4X-Tools)](https://GitHub.com/vil/H4X-Tools/commit/)
[![GitHub stars](https://badgen.net/github/stars/vil/H4X-Tools)](https://GitHub.com/vil/H4X-Tools/stargazers/)
[![GitHub forks](https://badgen.net/github/forks/vil/H4X-Tools)](https://GitHub.com/vil/H4X-Tools/network/)

A modular, terminal-based toolkit for OSINT, reconnaissance, and scraping - built in Python, runs on Linux and Windows.

Submit feature requests and bug reports in the [issues](https://github.com/vil/H4X-Tools/issues) tab.

![](https://github.com/vil/H4X-Tools/blob/master/img/gui-v0.3.5.png)

---

## Tools

| # | Tool | Description |
|---|------|-------------|
| 01 | **Ig Scrape** | Two-track Instagram OSINT scraper. **Guest mode** (no login) uses the `ensta` Guest API for public profile data and recent posts. **Authenticated mode** (Instagram `sessionid` cookie) uses [`toutatis`](https://github.com/megadose/toutatis) via Instagram's private mobile API for richer data - business flags, IGTV count, WhatsApp link status, and publicly listed contact details. Both tracks run Toutatis `advanced_lookup` to surface obfuscated email and phone from Instagram's account-recovery flow. Results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**. |
| 02 | **Web Reconnaissance** | Multi-mode OSINT search powered by the `ddgs` library. Choose from 7 modes: **General** (free-form), **Person** (12 dorks), **Email** (8 dorks), **Domain** (12 recon dorks), **Username** (12 platform dorks), **Phone Number** (8 dorks), or **Custom Dork** (write your own template). Configurable result count, retry/back-off on rate limits. Results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**. |
| 03 | **Phone Lookup** | Validates and analyses a phone number via the `phonenumbers` library (E.164/national/international formats, country, region, carrier, line type, time zones), then runs [`ignorant`](https://github.com/megadose/ignorant) to check social-media platform registrations. |
| 04 | **IP Lookup** | Resolves a hostname or IP address and queries [ipinfo.io](https://ipinfo.io) for geolocation data - city, region, country, coordinates, ISP/organization, postal code, and timezone - with a direct OpenStreetMap link. |
| 05 | **Username Search** | Asynchronously checks a username across hundreds of websites using a bundled site database. All matches (with direct profile URLs) are printed in real time. |
| 06 | **Email Search** | Checks an email address against 100+ websites and services using [`holehe`](https://github.com/megadose/holehe) to identify where the address is registered. |
| 07 | **Leak Search** | Multi-source breach and credential intelligence for an **email address**, **domain**, or **username**. Queries [Hudson Rock Cavalier](https://cavalier.hudsonrock.com) for stealer-log records (date of compromise, stealer family, infected machine details, masked credential samples, corporate/user service counts) and, for email targets, cross-references the [ProxyNova COMB](https://api.proxynova.com/comb) dataset (3.2B+ leaked credential lines) for a total hit count. Configurable inline entry limit; results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**. |
| 08 | **Port Scanner** | Concurrently scans a user-defined TCP port range (1–N) on any IP or hostname using a 50-thread pool. Open ports are reported in real time. |
| 09 | **WhoIs Lookup** | Performs a WHOIS query on a domain using the `whoisdomain` library and displays registrar, registration/expiry dates, name servers, status, and registrant details. |
| 10 | **Fake Info Generator** | Generates a complete fake identity using [`Faker`](https://pypi.org/project/Faker/) - name, job, company, email, phone, address, credit card, IBAN, and location. |
| 11 | **Web Scrape** | Asynchronously harvests all hyperlinks from a target URL. Optionally crawls every discovered page recursively. Results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**. |
| 12 | **Wi-Fi Finder** | Scans for nearby Wi-Fi networks. Uses `netsh` on Windows and `nmcli` on Linux, reporting SSID, signal strength, and security type. The currently connected network is highlighted. |
| 13 | **Wi-Fi Vault** | Dumps saved Wi-Fi passwords stored on the local machine - `netsh` on Windows, `nmcli` on Linux. |
| 14 | **Dir Buster** | Asynchronously bruteforces directory and file paths on a target website using a built-in wordlist, printing every URL that returns HTTP 200. |
| 15 | **Bluetooth Scanner** | Scans for nearby Bluetooth devices via `bluetoothctl` (Linux) and reports device names and MAC addresses. *(Windows support coming soon.)* |
| 16 | **Local Users** | Enumerates all local user accounts on the system. On Linux: username, UID, GID, full name, home directory, shell, and group. On Windows: username, terminal, host, session start time, PID, SID, and domain. |

---

## Setup

> [!IMPORTANT]
> Requires [Python 3.10+](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads).
> See the [wiki](https://github.com/vil/H4X-Tools/wiki) for a step-by-step guide.

### Linux

```sh
git clone https://github.com/vil/h4x-tools.git
cd h4x-tools
sh setup.sh
```

### Windows

```bat
git clone https://github.com/vil/h4x-tools.git
cd h4x-tools
setup.bat
```

The setup scripts install all dependencies and optionally build a standalone executable via PyInstaller. You can also run the toolkit directly with:

```sh
python h4xtools.py
```

Dependencies can be installed manually with:

```sh
pip install -r requirements.txt
```

### Debug mode

Launch with the `--debug` flag to enable verbose output:

```sh
python h4xtools.py --debug
```

---

## Contributing

Contributions are welcome! If you have Python knowledge and want to add a tool or improve an existing one:

1. Fork the repository.
2. Create a branch: `git checkout -b feature/my-tool`
3. Write your code and tests.
4. Open a pull request describing what you added or changed.

Please keep the style consistent with the existing utilities (use `helper/printer.py` for output, `@timer.timer` for the entry point, etc.).

---

## Security notice

Pre-compiled binaries are **not** provided. Downloading pre-built executables from untrusted sources is unsafe - always build from source yourself.

---

## License

> This source code is licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.txt).

**This toolkit is intended for educational and authorised security research purposes only. Do not use it against systems or accounts you do not own or have explicit permission to test.**


================================================
FILE: h4xtools.py
================================================
#!/usr/bin/env python3

"""
Copyright (c) 2023-2026. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

import socket
import time

from colorama import Fore, Style

from helper import handles, printer

VERSION = "0.3.5"


def _internet_check() -> None:
    """
    Check if the user is connected to the internet by
    creating a socket connection to a known host and port.
    """
    try:
        socket.setdefaulttimeout(3)
        socket.create_connection(("gnu.org", 80))
        printer.success("Internet Connection is Available..!")
    except socket.error as sock_error:
        printer.warning(
            "Internet Connection is Unavailable or some other problem occurred..!\n{}".format(
                sock_error
            )
        )


def _print_banner() -> None:
    print(
        Fore.LIGHTBLACK_EX
        + f"""
 ▄ .▄▐▄• ▄ ▄▄▄▄▄            ▄▄▌  .▄▄ ·
██▪▐█ █▌█▌▪•██  ▪     ▪     ██•  ▐█ ▀.
██▀▐█ ·██·  ▐█.▪ ▄█▀▄  ▄█▀▄ ██▪  ▄▀▀▀█▄
██▌▐▀▪▐█·█▌ ▐█▌·▐█▌.▐▌▐█▌.▐▌▐█▌▐▌▐█▄▪▐█
▀▀▀ ·•▀▀ ▀▀ ▀▀▀  ▀█▄▀▪ ▀█▄▀▪.▀▀▀  ▀▀▀▀
{Style.RESET_ALL}v{VERSION} / Vili (@vil)
    """
    )


def _display_help() -> None:
    print(Fore.LIGHTCYAN_EX)
    print(
        "H4X-Tools v{} - A modular, terminal-based toolkit for OSINT, reconnaissance, and scraping - built in Python, runs on Linux and Windows.".format(
            VERSION
        )
    )
    print("Repository link: https://github.com/vil/h4x-tools")
    print("\nMade in Finland, with love.\n")

    print("Available Tools:")
    print("------------------")

    # Use a loop to print the tools in a nice format
    tools = {
        "Ig Scrape": (
            "Two-track Instagram OSINT scraper. **Guest mode** (no login) uses the `ensta` Guest API for public profile data and recent posts. "
            "**Authenticated mode** (Instagram `sessionid` cookie) uses [`toutatis`](https://github.com/megadose/toutatis) "
            "via Instagram's private mobile API for richer data — business flags, IGTV count, WhatsApp link status, and publicly listed contact details. "
            "Both tracks run Toutatis `advanced_lookup` to surface obfuscated email and phone from Instagram's account-recovery flow. "
            "Results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**."
        ),
        "Deep Web Search": (
            "Multi-mode OSINT search powered by the ddgs library. Modes: General (free-form), "
            "Person (12 dorks), Email (8 dorks), Domain (12 recon dorks), Username (12 platform "
            "dorks), Phone Number (8 dorks), or Custom Dork (write your own template). "
            "Results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**."
        ),
        "Phone Lookup": (
            "Validates and analyses a phone number — E.164/national/international formats, country, "
            "region, carrier, line type, and time zones via the phonenumbers library. Then runs "
            "ignorant to check social-media platform registrations."
        ),
        "IP Lookup": (
            "Resolves a hostname or IP and queries ipinfo.io for geolocation data — city, region, "
            "country, coordinates, ISP/organization, postal code, and timezone — with a direct "
            "OpenStreetMap link."
        ),
        "Username Search": (
            "Asynchronously checks a username across hundreds of websites using a bundled site "
            "database. All matches with direct profile URLs are printed in real time."
        ),
        "Email Search": (
            "Checks an email address against 100+ websites and services using holehe to identify "
            "where the address is registered. Credits: megadose/holehe."
        ),
        "Leak Search": (
            "Multi-source breach and credential intelligence for an **email address**, **domain**, or **username**. "
            "Queries [Hudson Rock Cavalier](https://cavalier.hudsonrock.com) for stealer-log records "
            "(date of compromise, stealer family, infected machine details, masked credential samples, corporate/user service counts) and, for email targets, "
            "cross-references the [ProxyNova COMB](https://api.proxynova.com/comb) dataset (3.2B+ leaked credential lines) for a total hit count. "
            "Configurable inline entry limit; results can be exported to `scraped_data/` as **TXT**, **CSV**, or **JSON**."
        ),
        "Port Scanner": (
            "Concurrently scans a user-defined TCP port range (1–N) on any IP or hostname using a "
            "50-thread pool. Open ports are reported in real time."
        ),
        "WhoIs Lookup": (
            "Performs a WHOIS query on a domain and displays registrar, registration/expiry dates, "
            "name servers, status flags, and registrant details."
        ),
        "Fake Info Generator": (
            "Generates a complete fake identity using Faker — name, job, company, email, phone, "
            "address, credit card details (number, type, expiry, CVV), IBAN, and location."
        ),
        "Web Scrape": (
            "Asynchronously harvests all hyperlinks from a target URL. Optionally crawls every "
            "discovered page recursively. Results can be exported to scraped_data/ as TXT, CSV, or JSON."
        ),
        "Wi-Fi Finder": (
            "Scans for nearby Wi-Fi networks using netsh (Windows) or nmcli (Linux). Reports SSID, "
            "signal strength, and security type. The currently connected network is highlighted."
        ),
        "Wi-Fi Vault": (
            "Dumps saved Wi-Fi passwords stored on the local machine using netsh (Windows) or "
            "nmcli (Linux)."
        ),
        "Dir Buster": (
            "Asynchronously bruteforces directory and file paths on a target website using a "
            "built-in wordlist, printing every URL that returns HTTP 200."
        ),
        "Bluetooth Scanner": (
            "Scans for nearby Bluetooth devices via bluetoothctl (Linux) and reports device names "
            "and MAC addresses. Windows support is coming soon."
        ),
        "Local Users": (
            "Enumerates all local user accounts on the system. Linux: username, UID, GID, full "
            "name, home directory, shell, and group. Windows: username, terminal, host, session "
            "start time, PID, SID, and domain."
        ),
        "Help": "Shows this help menu.",
    }

    for tool, description in tools.items():
        print("* {} - {}".format(tool, description))

    print("\nClosing the Toolkit:")
    print("----------------------")
    print("You can close the toolkit using the following commands:")
    print("* quit")
    print("* q")
    print("* kill")
    print("* exit")

    print("\nLicense and Credits:")
    print("---------------------")
    print(
        "H4X-Tools is under the GNU General Public License v3, made by Vili (@vil).\n"
        "This toolkit is for educational and authorised security research purposes only."
    )


def _print_menu() -> None:
    max_option_length = max(
        len(value.__name__.replace("handle_", "").replace("_", " ").title())
        for value in MENU_OPTIONS.values()
    )

    for i, (key, value) in enumerate(MENU_OPTIONS.items(), start=1):
        option_name = value.__name__.replace("handle_", "").replace("_", " ").title()
        print(
            f"{Fore.LIGHTGREEN_EX}[{key.zfill(2)}]{Style.RESET_ALL} {option_name.ljust(max_option_length)}",
            end="",
        )

        if i % 2 == 0:
            print()
        else:
            print(" " * 4, end="")

    print("\n")
    print(f"Type {Style.BRIGHT}?{Style.RESET_ALL} for help.")
    print(f"Type {Style.BRIGHT}exit{Style.RESET_ALL} to close the toolkit...")


MENU_OPTIONS = {
    "1": handles.handle_ig_scrape,
    "2": handles.handle_web_reconnaissance,
    "3": handles.handle_phone_lookup,
    "4": handles.handle_ip_lookup,
    "5": handles.handle_username_search,
    "6": handles.handle_email_search,
    "7": handles.handle_leak_search,
    "8": handles.handle_port_scanner,
    "9": handles.handle_whois_lookup,
    "10": handles.handle_fake_info_generator,
    "11": handles.handle_web_scrape,
    "12": handles.handle_wifi_finder,
    "13": handles.handle_wifi_vault,
    "14": handles.handle_dir_buster,
    "15": handles.handle_bluetooth_scanner,
    "16": handles.handle_local_users,
}


def main() -> None:
    _internet_check()
    time.sleep(0.5)

    printer.debug("DEBUG IS ON.")

    while True:
        _print_banner()
        _print_menu()
        user_input = printer.user_input("Tool to execute : \t")

        if user_input.lower() in {"quit", "exit", "q", "kill"}:
            # Kill the program.
            printer.warning("Quitting... Goodbye!")
            print(Style.RESET_ALL)
            time.sleep(0.5)
            break

        if user_input in MENU_OPTIONS:
            try:
                MENU_OPTIONS[
                    user_input
                ]()  # Call the corresponding function based on the selected option
            except KeyboardInterrupt:
                printer.warning("Cancelled..!")
        elif user_input.lower() == "?":
            _display_help()
            printer.user_input("Done reading? Press the Enter key.")
        else:
            printer.error("Invalid option!")
            time.sleep(0.5)


if __name__ == "__main__":
    while True:
        try:
            main()
            break
        except ValueError:
            printer.error("Invalid value inputted..!")
        except KeyboardInterrupt:
            print("\n")
            printer.warning("Quitting... Goodbye!")
            print(Style.RESET_ALL)
            exit(0)


================================================
FILE: helper/handles.py
================================================
"""
Copyright (c) 2023-2025. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

from helper import printer
from utils import (
    bluetooth_scanner,
    dirbuster,
    email_search,
    fake_info_generator,
    ig_scrape,
    ip_lookup,
    leak_search,
    local_users,
    phonenumber_lookup,
    port_scanner,
    search_username,
    web_reconnaissance,
    web_scrape,
    whois_lookup,
    wifi_finder,
    wifi_vault,
)


def handle_bluetooth_scanner() -> None:
    """Handles the Bluetooth Scanner util."""
    scan_duration = int(printer.user_input("Enter a scan duration (seconds) : \t"))
    bluetooth_scanner.scan_nearby_bluetooth(duration=scan_duration)


def handle_ig_scrape() -> None:
    """Handles the IG Scrape util."""
    target = str(printer.user_input("Enter a target username : \t")).replace(" ", "_")
    ig_scrape.scrape(target=target)


def handle_web_reconnaissance() -> None:
    """Handles the Deep Web Search util."""
    web_reconnaissance.websearch()


def handle_phone_lookup() -> None:
    """Handles the Phone number Lookup util."""
    printer.info("Include the country code, e.g. +358501234567 or +12025550123")
    no = str(printer.user_input("Enter a phone-number with country code : \t"))
    phonenumber_lookup.lookup(phone_number=no)


def handle_ip_lookup() -> None:
    """Handles the IP/Domain Lookup util."""
    ip = str(printer.user_input("Enter a IP address OR domain : \t"))
    ip_lookup.lookup(ip_address=ip)


def handle_username_search() -> None:
    """Handles the Username Search util."""
    username = str(printer.user_input("Enter a target username : \t")).replace(" ", "_")
    search_username.search(username=username)


def handle_email_search() -> None:
    """Handles the Email Search util."""
    printer.info(
        "holehe will check the address against 100+ websites and show where it is registered."
    )
    email = str(printer.user_input("Enter an email address : \t"))
    email_search.search(email=email)


def handle_port_scanner() -> None:
    """Handles the Port Scanner util."""
    ip = str(printer.user_input("Enter a IP address OR domain : \t"))
    port_range = int(printer.user_input("Enter number of ports to scan : \t"))
    port_scanner.scan(ip=ip, port_range=port_range)


def handle_whois_lookup() -> None:
    """Handles the WhoIs Lookup util."""
    domain = str(printer.user_input("Enter a domain : \t"))
    whois_lookup.check_whois(domain=domain)


def handle_fake_info_generator() -> None:
    """Handles the Fake Info Generator util."""
    fake_info_generator.generate()


def handle_web_scrape() -> None:
    """Handles the Web Scrape util."""
    url = str(printer.user_input("Enter a URL : \t"))
    web_scrape.scrape(url=url)


def handle_wifi_finder() -> None:
    """Handles the Wi-Fi Finder util."""
    printer.info("Scanning for nearby Wi-Fi networks...")
    wifi_finder.scan_nearby_wifi()


def handle_wifi_vault() -> None:
    """Handles the Wi-Fi Password Getter util."""
    printer.info("Scanning for locally saved Wi-Fi passwords...")
    wifi_vault.get_local_passwords()


def handle_dir_buster() -> None:
    """Handles the Dir Buster util."""
    domain = printer.user_input("Enter a domain : \t")
    dirbuster.bust(domain=domain)


def handle_local_users() -> None:
    """Handles the Local User Enum."""
    printer.info("Scanning for local accounts...")
    local_users.scan_for_local_users()


def handle_leak_search() -> None:
    """Handles the Cybercrime Intelligence util."""
    target = printer.user_input("Enter a target (email/domain) : \t")
    leak_search.lookup(target=target)


================================================
FILE: helper/printer.py
================================================
"""
Copyright (c) 2023-2026. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

import re
import sys

from colorama import Fore, Style

ANSI_ESCAPE = re.compile(r"\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])")


def _print_colored(message: str, color: str, prefix: str, *args, **kwargs) -> None:
    """
    Print colored message with specified color and prefix.

    :param message: message to print
    :param color: color code from colorama.Fore
    :param prefix: prefix for the message
    :param args: arguments if any
    :param kwargs: keyword arguments if any
    """
    print(f"{color}{prefix}{Style.RESET_ALL} {message}", *args, **kwargs)


def info(message, *args, **kwargs) -> None:
    _print_colored(message, Fore.LIGHTBLUE_EX, "[*]", *args, **kwargs)


def success(message, *args, **kwargs) -> None:
    _print_colored(message, Fore.LIGHTGREEN_EX, "[+]", *args, **kwargs)


def error(message, *args, **kwargs) -> None:
    _print_colored(message, Fore.LIGHTRED_EX, "[!]", *args, **kwargs)


def warning(message, *args, **kwargs) -> None:
    _print_colored(message, Fore.LIGHTYELLOW_EX, "[-]", *args, **kwargs)


def debug(message, *args, **kwargs) -> None:
    if "--debug" in sys.argv:
        _print_colored(message, Fore.LIGHTMAGENTA_EX, "[>]", *args, **kwargs)


def section(title: str) -> None:
    """
    Print a consistently formatted section header.

    Output looks like:
        [*] ─── Title ──────────────────────────────────────

    The total content width (after the ``[*] `` prefix) is always 50 characters,
    regardless of the title length.

    :param title: The section title to display.
    """
    _TOTAL = 50
    left = "─── "
    fill = _TOTAL - len(left) - len(title) - 1
    right = " " + "─" * max(fill, 3)
    _print_colored(left + title + right, Fore.LIGHTBLUE_EX, "[*]")


def noprefix(message, *args, **kwargs) -> None:
    print(message, *args, **kwargs)


def user_input(prompt, *args, **kwargs) -> str:
    _print_colored(prompt, Fore.LIGHTBLUE_EX, "[?]", end="", *args, **kwargs)
    return input()


def ansi_escape(output: str) -> str:
    """
    Strips ANSI escapes from output.

    :retrun clean_output: ANSI escape stripped output.
    """
    clean_output = ANSI_ESCAPE.sub("", output)

    return clean_output


================================================
FILE: helper/randomuser.py
================================================
"""
Copyright (c) 2023-2026. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

import random

_USER_AGENTS = [
    "Mozilla/5.0 (Windows NT 6.1; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/93.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko/20100101 Firefox/88.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0",
    "Mozilla/5.0 (Windows NT 6.1; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.3; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 10.0; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.54 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36 OPR/81.0.4196.54",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.37",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 OPR/81.0.4196.31",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.72",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36 OPR/80.0.4170.63",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36 OPR/80.0.4170.40",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 OPR/80.0.4170.16",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.72",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.66",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.56",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36 OPR/79.0.4143.50",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36 OPR/79.0.4143.22",
    "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
    "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.43 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36 OPR/77.0.4054.90",
]


class GetUser:
    """
    Return a random user agent from the list.
    """

    def __init__(self) -> None:
        self.user_agent = random.choice(_USER_AGENTS)

    def __str__(self) -> str:
        return self.user_agent


================================================
FILE: helper/timer.py
================================================
"""
Copyright (c) 2023-2026. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

import functools
import time
from types import FunctionType

from helper import printer


def timer(require_input: bool) -> FunctionType:
    """
    A timer decorator to measure the execution time of a function and optionally
    require user input after execution.

    :param require_input: Boolean flag to determine if input is required after execution
    """

    def decorator(func):
        @functools.wraps(func)
        def wrapper(*args, **kwargs) -> str:
            start_time = time.time()  # Start timing
            result = func(*args, **kwargs)  # Execute the wrapped function
            end_time = time.time()  # End timing

            elapsed_time = end_time - start_time  # Calculate elapsed time
            printer.info(
                f"Completed in {elapsed_time:.4f} seconds."
            )  # Print the elapsed time

            # Prompt the user for input after execution
            if require_input:
                printer.user_input("Press Enter key to continue...")  # Prompt for input

            return result  # Return the result of the wrapped function

        return wrapper

    return decorator


================================================
FILE: helper/url_helper.py
================================================
"""
Copyright (c) 2023-2026. Vili and contributors.

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 3 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, see <https://www.gnu.org/licenses/>.
"""

import json
import os
import sys

from helper import printer


def read_local_content(path) -> str | dict | None:
    """
    Reads file content from a local file.

    :param path: path to the file
    :return: Parsed dict for JSON files, raw string for text files,
             or None if an error occurs.
    """
    try:
        with open(_resource_path(path), "r") as file:
            if path.endswith(".json"):
                content = json.load(file)
            else:
                content = file.read()
        return content
    except Exception as e:
        printer.error(f"An error occurred: {str(e)}")
        return None


# I hate pyinstaller.
def _resource_path(relative_path) -> str:
    if hasattr(sys, "_MEIPASS"):
        return os.path.join(sys._MEIPASS, relative_path)
    return os.path.join(os.path.abspath("."), relative_path)


================================================
FILE: requirements.txt
================================================
colorama
ddgs
phonenumbers
requests
beautifulsoup4
urllib3
pyinstaller
whoisdomain
git+https://github.com/diezo/Ensta.git
snscrape
faker
holehe
ignorant
toutatis
httpx
aiohttp
psutil


================================================
FILE: resources/data.json
================================================
{
  "sites": [
    {
      "app": "Facebook",
      "id": 1,
      "method": "GET",
      "url": "https://www.facebook.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "YouTube",
      "id": 2,
      "method": "GET",
      "url": "https://www.youtube.com/user/{username}",
      "valid": "response.status == 200 and 'name\" content=' in responseContent"
    },
    {
      "app": "Twitter",
      "id": 3,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('a', class_='profile-card-fullname')['title']"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('div',class_='profile-bio').string"
        },
        {
          "key": "Site",
          "type": "generic-data",
          "value": "soup.find('div',class_='profile-website').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('div',class_='profile-joindate').find('span')['title']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://nitter.net'+soup.find('a', class_='profile-card-avatar')['href']"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.select_one('.profile-location:nth-of-type(2)').text.strip('\\t\\r\\n')"
        }
      ],
      "method": "GET",
      "url": "https://nitter.net/{username}",
      "valid": "response.status == 200 and ') | nitter</title>' in responseContent"
    },
    {
      "app": "Telegram",
      "id": 4,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('span', dir='auto').string"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img', class_='tgme_page_photo_image')['src']"
        }
      ],
      "method": "GET",
      "url": "https://t.me/{username}",
      "valid": "'You can contact' in soup.find('meta', property='og:description')['content'] and 'tgme_page_title' in responseContent"
    },
    {
      "app": "TikTok",
      "id": 5,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('h2', attrs={'data-e2e':'user-bio'}).text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.tiktok.com/@{username}",
      "valid": "response.status == 200 and 'title=\"Following\"' in responseContent"
    },
    {
      "app": "Tinder",
      "id": 6,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('meta', property='profile:first_name')['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta', property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://tinder.com/@{username}",
      "valid": "'@' in soup.find('meta', property='og:title')['content'] and ') | Tinder</title><meta' in responseContent"
    },
    {
      "app": "Instagram",
      "id": 7,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h2', class_='profile-name-bottom').string"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('div', class_='profile-description').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Followers",
          "type": "generic-data",
          "value": "soup.find('span', class_='followed_by').string"
        },
        {
          "key": "Following",
          "type": "generic-data",
          "value": "soup.find('span', class_='follows').string"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div', class_='profile-avatar').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.picuki.com/profile/{username}",
      "valid": "response.status == 200 and 'Instagram profile with posts and stories' in responseContent"
    },
    {
      "app": "Pinterest",
      "id": 8,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').string "
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('meta', property='og:description')['content']"
        },
        {
          "key": "Followers",
          "type": "generic-data",
          "value": "soup.find('meta', property='pinterestapp:followers')['content']"
        },
        {
          "key": "Following",
          "type": "generic-data",
          "value": "soup.find('meta', property='pinterestapp:following')['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://pinterest.com/{username}/",
      "valid": "response.status == 200 and ' - Profile | Pinterest' in responseContent"
    },
    {
      "app": "Snapchat",
      "id": 9,
      "metadata": [
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('image')['xlink:href']"
        }
      ],
      "method": "GET",
      "url": "https://feelinsonice.appspot.com/web/deeplink/snapcode?username={username}&size=400&type=SVG",
      "valid": "soup.find('defs') != None and '</clipPath>' in responseContent"
    },
    {
      "app": "Reddit",
      "id": 10,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "jsonData['data']['subreddit']['title']"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "jsonData['data']['subreddit']['public_description']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "jsonData['data']['snoovatar_img']"
        }
      ],
      "method": "GET",
      "url": "https://www.reddit.com/user/{username}/about.json",
      "valid": "response.status == 200 and 'total_karma' in responseContent"
    },
    {
      "app": "Soundcloud",
      "id": 11,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('header').find('p').string"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('meta',property='og:locality')['content']+', '+soup.find('meta',property='og:country-name')['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='twitter:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://soundcloud.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Github",
      "id": 12,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('span',class_='p-name').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Nickname",
          "type": "generic-data",
          "value": "soup.find('span',class_='p-nickname').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Site",
          "type": "generic-data",
          "value": "soup.find('a',rel='nofollow me').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('span',class_='p-label').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://github.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Steam",
      "id": 13,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='header_real_name').find('bdi').text"
        },
        {
          "key": "Nickname",
          "type": "generic-data",
          "value": "soup.find('span',class_='actual_persona_name').string"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('meta',property='og:description')['content']"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('img',class_='profile_flag').next_sibling.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('link',rel='image_src')['href']"
        }
      ],
      "method": "GET",
      "url": "https://steamcommunity.com/id/{username}/",
      "valid": "'Error' not in soup.find('title').string and 'g_rgProfileData =' in responseContent"
    },
    {
      "app": "Linktree",
      "id": 14,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').string"
        },
        {
          "key": "Description",
          "type": "generic-data",
          "value": "soup.find('meta',attrs={'name':'description'})['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://linktr.ee/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Xbox Gamertag",
      "id": 15,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').string"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https:' + soup.find('img',class_='rounded img-thumbnail')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.xboxgamertag.com/search/{username}",
      "valid": "response.status == 200 and 'Games Played' in responseContent"
    },
    {
      "app": "Twitter Archived",
      "id": 16,
      "method": "GET",
      "url": "http://archive.org/wayback/available?url=https://twitter.com/{username}",
      "valid": "'available' in responseContent"
    },
    {
      "app": "Xvideos",
      "id": 17,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',id='profile-title').find('strong').text"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('p',id='pinfo-sex').find('span').text"
        },
        {
          "key": "Age",
          "type": "generic-data",
          "value": "soup.find('p',id='pinfo-age').find('span').text"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('p',id='pinfo-signedup').find('span').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('p',id='pinfo-city').find('span').text+', '+soup.find('p',id='pinfo-country').find('span').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.xvideos.com/profiles/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "PornHub",
      "id": 18,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='profileUserName').find('a').string"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(1)').string"
        },
        {
          "key": "Last login",
          "type": "generic-data",
          "value": "soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(2)').string"
        },
        {
          "key": "Relationship Status",
          "type": "generic-data",
          "value": "soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(3)').string"
        },
        {
          "key": "Interested In",
          "type": "generic-data",
          "value": "soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(4)').string"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(5)').string+', '+soup.find('dl',class_='moreInformation').select_one('dd:nth-of-type(6)').string"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',id='getAvatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.pornhub.com/users/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Xhamster",
      "id": 19,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='user-name').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('div',class_='i-am').find(class_='value').text"
        },
        {
          "key": "Last login",
          "type": "generic-data",
          "value": "soup.find('div',class_='offline').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='from').find(class_='value').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='xh-avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://xhamster.com/users/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Periscope",
      "id": 20,
      "method": "GET",
      "url": "https://www.periscope.tv/{username}",
      "valid": "response.status == 200 and '<label>Followers' in responseContent"
    },
    {
      "app": "AskFM",
      "id": 21,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('div',class_='icon-bio').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='icon-location').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='userAvatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://ask.fm/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Vimeo",
      "id": 22,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('meta', property='og:title')['content']"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('meta', property='og:description')['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta', property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://vimeo.com/{username}",
      "valid": "response.status == 200 and soup.find('title').text != 'VimeOhOh' and 'is a member of Vimeo, the' in responseContent"
    },
    {
      "app": "Pastebin",
      "id": 23,
      "metadata": [
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('span',class_='date-text')['title']"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('span',class_='location').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://pastebin.com'+soup.find('div',class_='user-icon').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://pastebin.com/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "WordPress Profile",
      "id": 24,
      "method": "GET",
      "url": "https://profiles.wordpress.org/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "WordPress Site",
      "id": 25,
      "method": "GET",
      "url": "https://{username}.wordpress.com/",
      "valid": "'Do you want to register' not in responseContent and 'cannot be registered' not in responseContent"
    },
    {
      "app": "AllMyLinks",
      "id": 26,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('span',class_='profile-username').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('p',class_='profile-bio').text.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://allmylinks.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Buzzfeed",
      "id": 27,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('meta', attrs={'name':'og:title'})['content']"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('dd').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://img.buzzfeed.com/buzzfeed-static'+soup.find('meta',attrs={'name':'og:image'})['content']"
        }
      ],
      "method": "GET",
      "url": "https://www.buzzfeed.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "JsFiddle",
      "id": 28,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='profileDetails').find('a').text.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div',class_='avatar').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://jsfiddle.net/user/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Sourceforge",
      "id": 29,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('dl',class_='personal-data').select_one('dd:nth-of-type(2)').string.strip('\\t\\r\\n')"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('dl',class_='personal-data').select_one('dd:nth-of-type(4)').string.strip('\\t\\r\\n')"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('dl',class_='personal-data').select_one('dd:nth-of-type(3)').string.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='project_icon')['src']"
        }
      ],
      "method": "GET",
      "url": "https://sourceforge.net/u/{username}/profile",
      "valid": "response.status == 200"
    },
    {
      "app": "Kickstarter",
      "id": 30,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h2').text.strip('\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "html.unescape(soup.find('div',id='profile_avatar').find('img')['src'])"
        }
      ],
      "method": "GET",
      "url": "https://www.kickstarter.com/profile/{username}",
      "valid": "response.status == 200 and 'projects' in responseContent"
    },
    {
      "app": "Smule",
      "id": 31,
      "method": "GET",
      "url": "https://www.smule.com/{username}",
      "valid": "'404' not in soup.find('title').string"
    },
    {
      "app": "Blogspot",
      "id": 32,
      "method": "GET",
      "url": "https://{username}.blogspot.com/",
      "valid": "response.status == 200 and 'Blogger Template Style' in responseContent"
    },
    {
      "app": "Tradingview",
      "id": 33,
      "method": "GET",
      "url": "https://www.tradingview.com/u/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Internet Archive",
      "id": 34,
      "method": "GET",
      "url": "https://archive.org/details/@{username}",
      "valid": "'cannot find account' not in soup.find('title').string"
    },
    {
      "app": "Alura",
      "id": 35,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h2').string"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('p',class_='profile-header-bio').string.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='profile-header-avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://cursos.alura.com.br/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Behance",
      "id": 36,
      "method": "GET",
      "url": "https://www.behance.net/{username}/",
      "valid": "response.status == 200 and '<title>Behance</title>' in responseContent"
    },
    {
      "app": "MySpace",
      "id": 37,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('div',id='aboutMe').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Site",
          "type": "generic-data",
          "value": "soup.find('div',class_='website').string.strip('\\t\\r\\n')"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='location').string.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('a',id='profileImage').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://myspace.com/{username}",
      "valid": "response.status == 200 and '<!-- Profile -->' in responseContent"
    },
    {
      "app": "Disqus",
      "id": 38,
      "method": "GET",
      "url": "https://disqus.com/by/{username}/",
      "valid": "response.status == 200 and '<title>Disqus Profile' in responseContent"
    },
    {
      "app": "Slideshare",
      "id": 39,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('span',class_='description').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('span',class_='city').text+', '+soup.find('span',class_='country-name').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='user-photo')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.slideshare.net/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Rumble",
      "id": 40,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://rumble.com/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Ebay",
      "id": 41,
      "method": "GET",
      "url": "https://www.ebay.com/usr/{username}",
      "valid": "'error' not in soup.find('title').string and response.status == 200"
    },
    {
      "app": "RedBubble",
      "id": 42,
      "method": "GET",
      "url": "https://www.redbubble.com/people/{username}/shop?asc=u",
      "valid": "response.status == 200"
    },
    {
      "app": "Kik",
      "id": 43,
      "method": "GET",
      "url": "https://ws2.kik.com/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Roblox",
      "id": 44,
      "method": "GET",
      "url": "https://auth.roblox.com/v1/usernames/validate?username={username}&birthday=2019-12-31T23:00:00.000Z",
      "valid": "'Username is already in use' in jsonData['message']"
    },
    {
      "app": "Armor Games",
      "id": 45,
      "method": "GET",
      "url": "https://armorgames.com/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Fortnite Tracker",
      "id": 46,
      "method": "GET",
      "url": "https://fortnitetracker.com/profile/all/{username}",
      "valid": "response.status == 200 and 's Fortnite Stats - Fortnite Tracker' in responseContent"
    },
    {
      "app": "Duolingo",
      "id": 47,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "json['users'][0]['name']"
        }
      ],
      "method": "GET",
      "url": "https://www.duolingo.com/2017-06-30/users?username={username}&_=1628308619574",
      "valid": "len(jsonData['users']) > 0"
    },
    {
      "app": "Chess",
      "id": 48,
      "method": "GET",
      "url": "https://www.chess.com/member/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Shopify",
      "id": 49,
      "method": "GET",
      "url": "https://{username}.myshopify.com/",
      "valid": "response.status == 200"
    },
    {
      "app": "Untappd",
      "id": 50,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('p',class_='location').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div',class='avatar-holder').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://untappd.com/user/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Last FM",
      "id": 51,
      "method": "GET",
      "url": "https://www.last.fm/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Cash APP",
      "id": 52,
      "method": "GET",
      "url": "https://cash.app/${username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Imgur",
      "id": 53,
      "method": "GET",
      "url": "https://api.imgur.com/account/v1/accounts/{username}?client_id=546c25a59c58ad7&include=trophies%2Cmedallions",
      "valid": "response.status == 200"
    },
    {
      "app": "Trello",
      "id": 54,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "jsonData['fullName']"
        }
      ],
      "method": "GET",
      "url": "https://trello.com/1/Members/{username}?fields=activityBlocked%2CavatarUrl%2Cbio%2CbioData%2Cconfirmed%2CfullName%2CidEnterprise%2CidMemberReferrer%2Cinitials%2CmemberType%2CnonPublic%2Cproducts%2Curl%2Cusername",
      "valid": "response.status == 200 and 'avatarUrl' in responseContent"
    },
    {
      "app": "Minecraft",
      "id": 55,
      "metadata": [
        {
          "key": "picture",
          "type": "image",
          "value": "jsonData['data']['player']['avatar']"
        }
      ],
      "method": "GET",
      "url": "https://playerdb.co/api/player/minecraft/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Patreon",
      "id": 56,
      "method": "GET",
      "url": "https://www.patreon.com/{username}",
      "valid": "response.status == 200 and 'Become a patron of' in responseContent"
    },
    {
      "app": "DockerHub",
      "id": 57,
      "method": "GET",
      "url": "https://hub.docker.com/v2/users/{username}/",
      "valid": "response.status == 200 and 'username' in responseContent"
    },
    {
      "app": "Kongregate",
      "id": 58,
      "method": "GET",
      "url": "https://www.kongregate.com/accounts/{username}",
      "valid": "response.status == 200 and 'Member Since' in responseContent"
    },
    {
      "app": "Vine",
      "id": 59,
      "method": "GET",
      "url": "https://vine.co/api/users/profiles/vanity/{username}",
      "valid": "response.status == 200 and 'userId' in responseContent"
    },
    {
      "app": "Gamespot",
      "id": 60,
      "method": "GET",
      "url": "https://www.gamespot.com/profile/{username}/",
      "valid": "response.status == 200 and 's Profile - GameSpot</title>' in responseContent"
    },
    {
      "app": "Shutterstock",
      "id": 61,
      "method": "GET",
      "url": "https://www.shutterstock.com/pt/g/{username}/about",
      "valid": "response.status == 200"
    },
    {
      "app": "Chaturbate",
      "id": 62,
      "method": "GET",
      "url": "https://chaturbate.com/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "ProtonMail",
      "headers": "{'X-Pm-Appversion': 'web-account@4.28.2','X-Pm-Appversion': 'web-account@4.28.2'}",
      "id": 63,
      "method": "GET",
      "url": "https://account.protonmail.com/api/users/available?Name={username}",
      "valid": "response.status == 409"
    },
    {
      "app": "TripAdvisor",
      "id": 64,
      "method": "GET",
      "url": "https://www.tripadvisor.com/Profile/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "RapidAPI",
      "id": 65,
      "method": "GET",
      "url": "https://rapidapi.com/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "HackTheBox",
      "id": 66,
      "json": "{{\"type\": \"username\",\"input\": \"{username}\"}}",
      "method": "POST",
      "url": "https://www.hackthebox.com/api/v4/register/check",
      "valid": "jsonData['message']['found'] == True"
    },
    {
      "app": "Wikipedia",
      "id": 67,
      "method": "GET",
      "url": "https://en.wikipedia.org/w/api.php?action=query&format=json&list=users&ususers={username}&usprop=cancreate&formatversion=2&errorformat=html&errorsuselocal=true&uselang=en",
      "valid": "response.status == 200 and 'userid' in responseContent"
    },
    {
      "app": "Buymeacoffe",
      "id": 68,
      "method": "GET",
      "url": "https://www.buymeacoffee.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Arduino",
      "id": 69,
      "method": "GET",
      "url": "https://create.arduino.cc/projecthub/{username}",
      "valid": "response.status == 200 and '- Arduino Project Hub' in responseContent"
    },
    {
      "app": "League of Legends Tracker",
      "id": 70,
      "method": "GET",
      "url": "https://tracker.gg/lol/profile/riot/NA/{username}/overview",
      "valid": "response.status == 200"
    },
    {
      "app": "Lego Ideas",
      "id": 71,
      "method": "GET",
      "url": "https://ideas.lego.com/profile/{username}/entries?query=&sort=top",
      "valid": "response.status == 200"
    },
    {
      "app": "Fiverr",
      "id": 72,
      "method": "GET",
      "url": "https://www.fiverr.com/{username}",
      "valid": "response.status == 200 and 'member-since' in responseContent"
    },
    {
      "app": "Redtube",
      "id": 73,
      "method": "GET",
      "url": "https://www.redtube.com.br/users/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Dribble",
      "id": 74,
      "method": "GET",
      "url": "https://dribbble.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Packet Storm Security",
      "id": 75,
      "method": "GET",
      "url": "https://packetstormsecurity.com/users/{username}",
      "valid": "response.status == 200 and 'User Profile for' in responseContent"
    },
    {
      "app": "Ello",
      "id": 76,
      "method": "GET",
      "url": "https://ello.co/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Medium",
      "id": 77,
      "method": "GET",
      "url": "https://{username}.medium.com/about",
      "valid": "response.status == 200 and 'Medium member since' in responseContent"
    },
    {
      "app": "Hackaday",
      "id": 78,
      "method": "GET",
      "url": "https://hackaday.io/{username}",
      "valid": "response.status == 200 and 's Profile | Hackaday.io' in responseContent"
    },
    {
      "app": "Keybase",
      "id": 79,
      "method": "GET",
      "url": "https://keybase.io/{username}",
      "valid": "response.status == 200 and 'username' in responseContent"
    },
    {
      "app": "HackerOne",
      "id": 80,
      "method": "GET",
      "url": "https://hackerone.com/{username}?type=user",
      "valid": "response.status == 200 and 'profile that highlights' in responseContent"
    },
    {
      "app": "BugCrowd",
      "id": 81,
      "method": "GET",
      "url": "https://bugcrowd.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "OneCompiler",
      "id": 82,
      "method": "GET",
      "url": "https://onecompiler.com/api/users/{username}",
      "valid": "response.status == 200 and 'name' in responseContent"
    },
    {
      "app": "TryHackMe",
      "id": 83,
      "method": "GET",
      "url": "https://tryhackme.com/p/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Lyrics Training",
      "id": 84,
      "method": "GET",
      "url": "https://lyricstraining.com/search?user={username}",
      "valid": "response.status == 200 and 'Sorry, there are no results for your search.' not in responseContent"
    },
    {
      "app": "Expo",
      "id": 85,
      "method": "GET",
      "url": "https://forums.expo.dev/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "RAWG",
      "id": 86,
      "method": "GET",
      "url": "https://rawg.io/@{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Coroflot",
      "id": 87,
      "method": "GET",
      "url": "https://www.coroflot.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Cloudflare",
      "id": 88,
      "method": "GET",
      "url": "https://community.cloudflare.com/u/{username}",
      "valid": "response.status == 200 and '- Cloudflare Community' in responseContent"
    },
    {
      "app": "Wattpad",
      "id": 89,
      "method": "GET",
      "url": "https://www.wattpad.com/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Mixlr",
      "id": 90,
      "method": "GET",
      "url": "http://api.mixlr.com/users/{username}",
      "valid": "response.status == 200 and 'username' in responseContent"
    },
    {
      "app": "ImageShack",
      "id": 91,
      "method": "GET",
      "url": "https://imageshack.com/user/{username}",
      "valid": "response.status == 200 and 's Images</title>' in responseContent"
    },
    {
      "app": "Freelancer",
      "id": 92,
      "method": "GET",
      "url": "https://www.freelancer.com/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Dev To",
      "id": 93,
      "method": "GET",
      "url": "https://dev.to/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "BitBucket",
      "id": 94,
      "method": "GET",
      "url": "https://bitbucket.org/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Ko Fi",
      "id": 95,
      "method": "GET",
      "url": "https://ko-fi.com/{username}",
      "valid": "response.status == 200 and 'Become a supporter of' in responseContent"
    },
    {
      "app": "Flickr",
      "id": 96,
      "method": "GET",
      "url": "https://www.flickr.com/photos/{username}/",
      "valid": "response.status == 200 and '| Flickr' in responseContent"
    },
    {
      "app": "HackerEarth",
      "id": 97,
      "method": "GET",
      "url": "https://www.hackerearth.com/@{username}",
      "valid": "response.status == 200 and '404 | HackerEarth' not in responseContent"
    },
    {
      "app": "Spotify",
      "id": 98,
      "method": "GET",
      "url": "https://open.spotify.com/user/{username}",
      "valid": "response.status == 200 and 'on Spotify</title>' in responseContent"
    },
    {
      "app": "Snapchat Stories",
      "id": 99,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h4').string"
        }
      ],
      "method": "GET",
      "url": "https://story.snapchat.com/s/{username}",
      "valid": "response.status == 200 and 'is on Snapchat!' in responseContent"
    },
    {
      "app": "Audio Jungle",
      "id": 100,
      "method": "GET",
      "url": "https://audiojungle.net/user/{username}",
      "valid": "response.status == 200 and 's profile on AudioJungle' in responseContent"
    },
    {
      "app": "Avid Community",
      "id": 101,
      "method": "GET",
      "url": "https://community.avid.com/members/{username}/default.aspx",
      "valid": "response.status == 200 and 'My Activity' in responseContent"
    },
    {
      "app": "Bandlab",
      "id": 102,
      "method": "GET",
      "url": "https://www.bandlab.com/api/v1.3/users/{username}",
      "valid": "response.status == 200 and 'about' in responseContent"
    },
    {
      "app": "Carrd",
      "id": 103,
      "method": "GET",
      "url": "https://{username}.carrd.co/",
      "valid": "response.status == 200"
    },
    {
      "app": "CastingCallClub",
      "id": 104,
      "method": "GET",
      "url": "https://www.castingcall.club/{username}",
      "valid": "response.status == 200 and '| Casting Call Club' in responseContent"
    },
    {
      "app": "Coderwall",
      "id": 105,
      "method": "GET",
      "url": "https://coderwall.com/{username}/",
      "valid": "response.status == 200 and 's profile |' in responseContent"
    },
    {
      "app": "Codewars",
      "id": 106,
      "method": "GET",
      "url": "https://www.codewars.com/users/{username}",
      "valid": "response.status == 200 and '| Codewars' in responseContent"
    },
    {
      "app": "F3",
      "id": 107,
      "method": "GET",
      "url": "https://f3.cool/{username}",
      "valid": "response.status == 200 and '<title>@' in responseContent"
    },
    {
      "app": "Gab",
      "id": 108,
      "method": "GET",
      "url": "https://gab.com/api/v1/account_by_username/{username}",
      "valid": "response.status == 200 and 'followers_count' in responseContent"
    },
    {
      "app": "Issuu",
      "id": 109,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('h2').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https:'+soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://issuu.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Steemit",
      "id": 110,
      "method": "GET",
      "url": "https://steemit.com/@{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Venmo",
      "id": 111,
      "method": "GET",
      "url": "https://account.venmo.com/u/{username}",
      "valid": "response.status == 200 and '\"profileInfo_username__' in responseContent"
    },
    {
      "app": "MODDB",
      "id": 112,
      "method": "GET",
      "url": "https://www.moddb.com/members/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "COLOURlovers",
      "id": 113,
      "method": "GET",
      "url": "https://www.colourlovers.com/lover/{username}",
      "valid": "response.status == 200 and 'since' in responseContent"
    },
    {
      "app": "Scheme Color",
      "id": 114,
      "method": "GET",
      "url": "https://www.schemecolor.com/author/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Roblox Trade",
      "id": 115,
      "method": "GET",
      "url": "https://rblx.trade/p/{username}",
      "valid": "response.status == 200 and 'Currently Wearing' in responseContent"
    },
    {
      "app": "Aetherhub",
      "id": 116,
      "metadata": [
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img', class_='ae-profile-image-card')['src']"
        }
      ],
      "method": "GET",
      "url": "https://aetherhub.com/User/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "BugBounty",
      "id": 117,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img', class_='avatar user-319-avatar avatar-450 photo')['src']"
        }
      ],
      "method": "GET",
      "url": "https://bugbounty.gg/members/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Huntr",
      "id": 118,
      "method": "GET",
      "url": "https://huntr.dev/users/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Universocraft",
      "id": 119,
      "method": "GET",
      "url": "https://stats.universocraft.com/stats.php?player={username}",
      "valid": "response.status == 200 and 'No se ha encontrad' not in responseContent"
    },
    {
      "app": "Wireclub",
      "id": 120,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('meta', property='og:title')['content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta', property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://www.wireclub.com/users/{username}",
      "valid": "response.status == 200 and 'Chat With' in responseContent"
    },
    {
      "app": "AminoApps",
      "id": 121,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('span', class_='NvNickname').text"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('div', class_='bio').string.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https:' + soup.find('img', alt='Avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://aminoapps.com/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Trakt",
      "id": 122,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').find('a').text"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('h4').text"
        },
        {
          "key": "Age",
          "type": "generic-data",
          "value": "soup.find('span',title='Age').text"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('h3',class_='emojis-supported').contents[2]['title']"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('h3',class_='emojis-supported').contents[1]"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img', class_='avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://trakt.tv/users/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Giphy",
      "id": 123,
      "method": "GET",
      "url": "https://giphy.com/channel/{username}",
      "valid": "response.status == 200 and 'Share on GIPHY</title>' in responseContent"
    },
    {
      "app": "Minecraft List",
      "id": 124,
      "metadata": [
        {
          "key": "Servers",
          "type": "generic-data",
          "value": "soup.find('div',class_='flex items-center bg-white p-2 mb-3').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://minecraftlist.com' + soup.find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://minecraftlist.com/players/{username}",
      "valid": "response.status == 200 and '-->was seen on<!--' in responseContent"
    },
    {
      "app": "SEOClerks",
      "id": 125,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='profile-link').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('div',class_='user-data').find('span').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='flag-pill')['data-content']"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div',class_='user-avatar').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.seoclerks.com/user/{username}",
      "valid": "response.status == 200 and '<div class=\"user-info container\">' in responseContent"
    },
    {
      "app": "Mix",
      "id": 126,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='IntoUserProfileLayout__name').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://mix.com/{username}/",
      "valid": "response.status == 200 and '<title>@' in responseContent"
    },
    {
      "app": "Codecademy",
      "id": 127,
      "method": "GET",
      "url": "https://discuss.codecademy.com/u/{username}/summary",
      "valid": "response.status == 200 and '<title>  Profile - ' in responseContent"
    },
    {
      "app": "Bandcamp",
      "id": 128,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find(class_='blurb-text').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Site",
          "type": "generic-data",
          "value": "soup.find(class_='website').text.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('meta',property='og:image')['content']"
        }
      ],
      "method": "GET",
      "url": "https://bandcamp.com/{username}",
      "valid": "response.status == 200 and ' collection | Bandcamp</title>' in responseContent"
    },
    {
      "app": "Poshmark",
      "id": 129,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='d--fl ai--c').find('span').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div',class_='closet__header__info').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://poshmark.com/closet/{username}",
      "valid": "response.status == 200 and ' is using Poshmark to sell items from their closet.' in responseContent"
    },
    {
      "app": "hackster",
      "id": 130,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find_all('img')[2]['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.hackster.io/{username}",
      "valid": "response.status == 200 and '- Hackster.io' in responseContent"
    },
    {
      "app": "BodyBuilding",
      "id": 131,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('div',class_='infoSummary').find('ul').find_all('li')[0].text.replace('REAL NAME', '')"
        },
        {
          "key": "Age",
          "type": "generic-data",
          "value": "soup.find('div',class_='infoSummary').find('ul').find_all('li')[1].text.replace('AGE', '')"
        },
        {
          "key": "Gender",
          "type": "generic-data",
          "value": "soup.find('div',class_='infoSummary').find('ul').find_all('li')[2].text.replace('GENDER', '') "
        },
        {
          "key": "location",
          "type": "location",
          "value": "soup.find('div',class_='infoSummary').find('ul').find_all('li')[3].text.replace('LOCATION', '')"
        },
        {
          "key": "Member since",
          "type": "generic-data",
          "value": "soup.find('div',class_='infoSummary').find('ul').find_all('li')[4].text.replace('member since', '')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https:' + soup.find_all('img',class_='BodyBanner-profile-pic__img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://bodyspace.bodybuilding.com/{username}/",
      "valid": "response.status == 200 and 'infoSummary' in responseContent"
    },
    {
      "app": "Mastodon",
      "id": 132,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('strong',class_='display-name__html').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',id='profile_page_avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://mastodon.social/@{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "IFTTT",
      "id": 133,
      "method": "GET",
      "url": "https://ifttt.com/p/{username}",
      "valid": "response.status == 200 and 'Joined' in responseContent"
    },
    {
      "app": "Anime Planet",
      "id": 134,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('section',class_='profBio userContent').find('p').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://www.anime-planet.com' + soup.find('img',id='user-avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.anime-planet.com/users/{username}",
      "valid": "'Profile' in soup.find('title').text and response.status == 200"
    },
    {
      "app": "Destructoid",
      "id": 135,
      "metadata": [
        {
          "key": "picture",
          "type": "image",
          "value": "'https://www.destructoid.com/'+soup.find('div',id='userinfo_photo').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.destructoid.com/?name={username}",
      "valid": "response.status == 200 and 'Follow' in responseContent"
    },
    {
      "app": "Gitee",
      "id": 136,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h2').text.strip('\\t\\r\\n')"
        },
        {
          "key": "Bio",
          "type": "generic-data",
          "value": "soup.find('p',class_='bio').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='ui image avatar')['src']"
        }
      ],
      "method": "GET",
      "url": "https://gitee.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Teknik",
      "id": 137,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text.strip('\\t\\r\\n')"
        }
      ],
      "method": "GET",
      "url": "https://user.teknik.io/{username}",
      "valid": "response.status == 200 and 'Public Key' in responseContent"
    },
    {
      "app": "BitChute",
      "id": 138,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('p',class_='name').text.strip('\\t\\r\\n')"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('img',class_='image lazyloaded')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.bitchute.com/channel/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "The Tatto Forum",
      "id": 139,
      "method": "GET",
      "url": "https://www.thetattooforum.com/members/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "NPM",
      "id": 140,
      "method": "GET",
      "url": "https://www.npmjs.com/~{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "PyPI",
      "id": 141,
      "method": "GET",
      "url": "https://pypi.org/user/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "HackenProof",
      "id": 142,
      "method": "GET",
      "url": "https://hackenproof.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "VKontakte",
      "id": 143,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1',class_='page_name').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "'https://vk.com/' + soup.find('img',class_='page_avatar_img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://vk.com/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "About me",
      "id": 144,
      "method": "GET",
      "url": "https://about.me/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Dissenter",
      "id": 145,
      "method": "GET",
      "url": "https://dissenter.com/user/{username}",
      "valid": "response.status == 200 and 'Dissenter | The Comment Section of the Internet' in responseContent"
    },
    {
      "app": "Designspiration",
      "id": 146,
      "method": "GET",
      "url": "https://www.designspiration.com/{username}/",
      "valid": "response.status == 200"
    },
    {
      "app": "Fark",
      "id": 147,
      "method": "GET",
      "url": "https://www.fark.com/users/{username}",
      "valid": "response.status == 200 and 'bio' in responseContent"
    },
    {
      "app": "mmorpg",
      "id": 148,
      "method": "GET",
      "url": "https://forums.mmorpg.com/profile/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Pikabu",
      "id": 149,
      "method": "GET",
      "url": "https://pikabu.ru/@{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Playstation Network",
      "id": 150,
      "method": "GET",
      "url": "https://psnprofiles.com/xhr/search/users?q={username}",
      "valid": "response.status == 200 and '<div class=\"progress-bar small level\">' in responseContent"
    },
    {
      "app": "Warrior Forum",
      "id": 151,
      "method": "GET",
      "url": "https://www.warriorforum.com/members/{username}.html",
      "valid": "response.status == 200"
    },
    {
      "app": "Pxilart",
      "id": 152,
      "metadata": [
        {
          "key": "Name",
          "type": "generic-data",
          "value": "soup.find('h1').text"
        },
        {
          "key": "picture",
          "type": "image",
          "value": "soup.find('div', class_='user-profile-image mb-0 mb-md-0').find('a').find('img')['src']"
        }
      ],
      "method": "GET",
      "url": "https://www.pixilart.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "2Dimensions",
      "id": 153,
      "method": "GET",
      "url": "https://2Dimensions.com/a/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "3dnews",
      "id": 154,
      "method": "GET",
      "url": "http://forum.3dnews.ru/member.php?username={username}",
      "valid": "response.status == 200 and '\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d \u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.' not in responseContent"
    },
    {
      "app": "7Cups",
      "id": 155,
      "method": "GET",
      "url": "https://www.7cups.com/@{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "9GAG",
      "id": 156,
      "method": "GET",
      "url": "https://www.9gag.com/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Academia.edu",
      "id": 157,
      "method": "GET",
      "url": "https://independent.academia.edu/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Airbit",
      "id": 158,
      "method": "GET",
      "url": "https://airbit.com/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Airliners",
      "id": 159,
      "method": "GET",
      "url": "https://www.airliners.net/user/{username}/profile/photos",
      "valid": "response.status == 200"
    },
    {
      "app": "Alik.cz",
      "id": 160,
      "method": "GET",
      "url": "https://www.alik.cz/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Apple Developer",
      "id": 161,
      "method": "GET",
      "url": "https://developer.apple.com/forums/profile/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Apple Discussions",
      "id": 162,
      "method": "GET",
      "url": "https://discussions.apple.com/profile/{username}",
      "valid": "response.status == 200 and 'The page you tried was not found. You may have used an outdated link or may have typed the address (URL) incorrectly.' not in responseContent"
    },
    {
      "app": "Asciinema",
      "id": 163,
      "method": "GET",
      "url": "https://asciinema.org/~{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Ask Fedora",
      "id": 164,
      "method": "GET",
      "url": "https://ask.fedoraproject.org/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Audiojungle",
      "id": 165,
      "method": "GET",
      "url": "https://audiojungle.net/user/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Autofrage",
      "id": 166,
      "method": "GET",
      "url": "https://www.autofrage.net/nutzer/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "BLIP.fm",
      "id": 167,
      "method": "GET",
      "url": "https://blip.fm/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Bazar.cz",
      "id": 168,
      "method": "GET",
      "url": "https://www.bazar.cz/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Bezuzyteczna",
      "id": 169,
      "method": "GET",
      "url": "https://bezuzyteczna.pl/uzytkownicy/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Bikemap",
      "id": 170,
      "method": "GET",
      "url": "https://www.bikemap.net/en/u/{username}/routes/created/",
      "valid": "response.status == 200"
    },
    {
      "app": "BioHacking",
      "id": 171,
      "method": "GET",
      "url": "https://forum.dangerousthings.com/u/{username}",
      "valid": "response.status == 200"
    },
    {
      "app": "Bitwarden Forum",
      "id": 172,
      "method": "GET",
      "url": "https://community.bitwarden.com/u/{username}/summary",
      "valid": "response.status == 200"
    },
    {
      "app": "101010 pl",
      "id": 173,
      "method": "GET",
      "url": "https://101010.pl/@{username}",
      "valid": "response.status == 200 and '@101010.pl' in responseContent"
    },
    {
      "app": "3DNews",
      "id": 174,
      "method": "GET",
      "url": "http://forum.3dnews.ru/member.php?username={username}",
      "valid": "response.status == 200 and '<title>\u0424\u043e\u0440\u0443\u043c 3DNews - \u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u043f\u0440\u043e\u0444\u0438\u043b\u044f:' in responseContent"
    },
    {
      "app": "7cup",
      "id": 175,
      "method": "GET",
      "url": "https://www.7cups.com/@{username}",
      "valid": "response.status == 200 and 'Profile - 7 Cups' in responseContent"
    },
    {
      "app": "21buttons",
      "id": 176,
      "method": "GET",
      "url": "https://www.21buttons.com/buttoner/{username}",
      "valid": "response.status == 200 and 'profile_user_followers' in responseContent"
    },
    {
      "app": "about me",
      "id": 177,
      "method": "GET",
      "url": "https://about.me/{username}",
      "valid": "response.status == 200 and ' | about.me' in responseContent"
    },
    {
      "app": "Adult_Forum",
      "id": 178,
      "method": "GET",
      "url": "https://adultforum.gr/{username}-glamour-escorts/",
      "valid": "response.status == 200 and 'Glamour Escorts ' in responseContent"
    },
    {
      "app": "ADVFN",
      "id": 179,
      "method": "GET",
      "url": "https://uk.advfn.com/forum/profile/{username}",
      "valid": "response.status == 200 and 'Profile | ADVFN' in responseContent"
    },
    {
      "app": "aflam",
      "id": 180,
      "method": "GET",
      "url": "https://www.aflam4you.net/profile.html?u={username}",
      "valid": "response.status == 200 and ') on \u0628\u062b \u062d\u064a \u0648 \u0645\u0628\u0627\u0634\u0631' in responseContent"
    },
    {
      "app": "akniga",
      "id": 181,
      "method": "GET",
      "url": "https://akniga.org/profile/{username}",
      "valid": "response.status == 200 and ' - \u0410\u0443\u0434\u0438\u043e\u043a\u043d\u0438\u0433\u0438 \u041a\u043b\u0443\u0431</title' in responseContent"
    },
    {
      "app": "Albicla",
      "id": 182,
      "method": "GET",
      "url": "https://albicla.com/{username}/post/1",
      "valid": "response.status == 500 and '500 Post tymczasowo niedost\u0119pny' in responseContent"
    },
    {
      "app": "allesovercrypto",
      "id": 183,
      "method": "GET",
      "url": "https://allesovercrypto.nl/user/{username}",
      "valid": "response.status == 200 and 'Favoriete coins' in responseContent"
    },
    {
      "app": "allmylinks",
      "id": 184,
      "method": "GET",
      "url": "https://allmylinks.com/{username}",
      "valid": "response.status == 200 and 'message' in responseContent"
    },
    {
      "app": "Alloannonces",
      "id": 185,
      "method": "GET",
      "url": "https://www.alloannonces.ma/{username}/",
      "valid": "response.status == 200 and 'Vendeurs/Agents' in responseContent"
    },
    {
      "app": "AllTrails",
      "id": 186,
      "method": "GET",
      "url": "https://www.alltrails.com/members/{username}",
      "valid": "response.status == 200 and 's Profile | ' in responseContent"
    },
    {
      "app": "Ameblo",
      "id": 187,
      "method": "GET",
      "url": "https://ameblo.jp/{username}",
      "valid": "response.status == 200 and '\u753b\u50cf\u4e00\u89a7' in responseContent"
    },
    {
      "app": "AmericanThinker",
      "id": 188,
      "method": "GET",
      "url": "https://www.americanthinker.com/author/{username}/",
      "valid": "response.status == 200 and 'Articles &amp;' in responseContent"
    },
    {
      "app": "Aminoapps",
      "id": 189,
      "method": "GET",
      "url": "https://aminoapps.com/u/{username}",
      "valid": "response.status == 200 and 'Stories' in responseContent"
    },
    {
      "app": "AnimePlanet",
      "id": 190,
      "method": "GET",
      "url": "https://www.anime-planet.com/users/{username}",
      "valid": "response.status == 200 and 'Joined' in responseContent"
    },
    {
      "app": "aNobii",
      "id": 191,
      "method": "GET",
      "url": "https://api.anobii.com/users/eid/{username}",
      "valid": "response.status == 200 and 'Anobian since' in responseContent"
    },
    {
      "app": "anonup",
      "id": 192,
      "method": "GET",
      "url": "https://anonup.com/@{username}",
      "valid": "response.status == 200 and 'Following</span>' in responseContent"
    },
    {
      "app": "Apex Legends",
      "id": 193,
      "method": "GET",
      "url": "https://apex.tracker.gg/apex/profile/origin/{username}/overview",
      "valid": "response.status == 200 and 'Overview' in responseContent"
    },
    {
      "app": "Appian",
      "id": 194,
      "method": "GET",
      "url": "https://community.appian.com/members/{username}",
      "valid": "response.status == 200 and 'User Profile' in responseContent"
    },
    {
      "app": "Archive Of Our Own Account",
      "id": 195,
      "method": "GET",
      "url": "https://archiveofourown.org/users/{username}",
      "valid": "response.status == 200 and '>Profile<' in responseContent"
    },
    {
      "app": "ArmorGames",
      "id": 196,
      "method": "GET",
      "url": "https://armorgames.com/user/{username}",
      "valid": "response.status == 200 and 'about' in responseContent"
    },
    {
      "app": "ArtBreeder",
      "id": 197,
      "method": "GET",
      "url": "https://www.artbreeder.com/{username}",
      "valid": "response.status == 200 and '<title>' in responseContent"
    },
    {
      "app": "Artists & Clients",
      "id": 198,
      "method": "GET",
      "url": "https://artistsnclients.com/people/{username}",
      "valid": "response.status == 200 and 'Member Since' in responseContent"
    },
    {
      "app": "asciinema",
      "id": 199,
      "method": "GET",
      "url": "https://asciinema.org/~{username}",
      "valid": "response.status == 200 and 's profile - asciinema' in responseContent"
    },
    {
      "app": "ask fm",
      "id": 200,
      "method": "GET",
      "url": "https://ask.fm/{username}",
      "valid": "response.status == 200 and 'answers,' in responseContent"
    },
    {
      "app": "au ru",
      "id": 201,
      "method": "GET",
      "url": "https://au.ru/user/{username}/",
      "valid": "response.status == 200 and '\u041b\u043e\u0442\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f ' in responseContent"
    },
    {
      "app": "authorSTREAM",
      "id": 202,
      "method": "GET",
      "url": "http://www.authorstream.com/{username}/",
      "valid": "response.status == 200 and 'Presentations on authorSTREAM' in responseContent"
    },
    {
      "app": "Ayfal",
      "id": 203,
      "method": "GET",
      "url": "https://afyal.com/users/{username}",
      "valid": "response.status == 200 and '\u0633\u0648\u0642 \u0623\u0641\u064a\u0627\u0644 \u0642\u0637\u0639 \u063a\u064a\u0627\u0631 \u0627\u0644\u0633\u064a\u0627\u0631\u0627\u062a \u0648\u0645\u062a\u0639\u0644\u0642\u0627\u062a\u0647\u0627 -' in responseContent"
    },
    {
      "app": "bblog_ru",
      "id": 204,
      "method": "GET",
      "url": "https://www.babyblog.ru/user/{username}",
      "valid": "response.status == 200 and '@' in responseContent"
    },
    {
      "app": "BDSMLR",
      "id": 205,
      "method": "GET",
      "url": "https://{username}.bdsmlr.com",
      "valid": "response.status == 200 and 'login' in responseContent"
    },
    {
      "app": "bdsmsingles",
      "id": 206,
      "method": "GET",
      "url": "https://www.bdsmsingles.com/members/{username}/",
      "valid": "response.status == 200 and '<title>Profile' in responseContent"
    },
    {
      "app": "Bentbox",
      "id": 207,
      "method": "GET",
      "url": "https://bentbox.co/{username}",
      "valid": "response.status == 200 and 'BentBox photos and videos' in responseContent and 'This user is currently not available' not in responseContent"
    },
    {
      "app": "BiggerPockets",
      "id": 208,
      "method": "GET",
      "url": "https://www.biggerpockets.com/users/{username}",
      "valid": "response.status == 200 and '| BiggerPockets</title>' in responseContent"
    },
    {
      "app": "Bimpos",
      "id": 209,
      "method": "GET",
      "url": "https://ask.bimpos.com/user/{username}",
      "valid": "response.status == 200 and '<title>User' in responseContent"
    },
    {
      "app": "Bitbucket",
      "id": 210,
      "method": "GET",
      "url": "https://bitbucket.org/{username}/",
      "valid": "response.status == 200 and 'Repositories' in responseContent"
    },
    {
      "app": "Bitchute",
      "id": 211,
      "method": "GET",
      "url": "https://www.bitchute.com/channel/{username}/",
      "valid": "response.status == 200 and 'subscribers' in responseContent"
    },
    {
      "app": "bitcoin forum",
      "id": 212,
      "method": "GET",
      "url": "https://bitcoinforum.com/profile/{username}",
      "valid": "response.status == 200 and 'Profile of' in responseContent"
    },
    {
      "app": "BLIP fm",
      "id": 213,
      "method": "GET",
      "url": "https://blip.fm/{username}",
      "valid": "response.status == 200 and 'recommended' in responseContent"
    },
    {
      "app": "Blogger",
      "id": 214,
      "method": "GET",
      "url": "https://www.blogger.com/profile/{username}",
      "valid": "response.status == 200 and '>On Blogger since' in responseContent"
    },
    {
      "app": "blogi pl",
      "id": 215,
      "method": "GET",
      "url": "https://www.blogi.pl/osoba,{username}.html",
      "valid": "response.status == 200 and 'Informacje og\u00f3lne' in responseContent"
    },
    {
      "app": "Blogmarks",
      "id": 216,
      "method": "GET",
      "url": "http://blogmarks.net/user/{username}",
      "valid": "response.status == 200 and 'class=\"mark\"' in responseContent"
    },
    {
      "app": "BodyBuilding com",
      "id": 217,
      "method": "GET",
      "url": "http://api.bodybuilding.com/api-proxy/bbc/get?slug={username}",
      "valid": "response.status == 200 and 'username' in responseContent"
    },
    {
      "app": "Bookcrossing",
      "id": 218,
      "method": "GET",
      "url": "https://www.bookcrossing.com/mybookshelf/{username}",
      "valid": "response.status == 200 and 'Recent Book Activity' in responseContent"
    },
    {
      "app": "Booth",
      "id": 219,
      "method": "GET",
      "url": "https://{username}.booth.pm/",
      "valid": "response.status == 200 and '- BOOTH</title>' in responseContent"
    },
    {
      "app": "Brickset",
      "id": 220,
      "method": "GET",
      "url": "https://forum.brickset.com/profile/{username}",
      "valid": "response.status == 200 and 'Activity</h2>' in responseContent"
    },
    {
      "app": "Bugcrowd",
      "id": 221,
      "method": "GET",
      "url": "https://bugcrowd.com/{username}",
      "valid": "response.status == 200 and 's researcher profile on Bugcrowd' in responseContent"
    },
    {
      "app": "buymeacoffee",
      "id": 222,
      "method": "GET",
      "url": "https://www.buymeacoffee.com/{username}",
      "valid": "response.status == 200 and 'supporters' in responseContent"
    },
    {
      "app": "BuzzFeed",
      "id": 223,
      "method": "GET",
      "url": "https://www.buzzfeed.com/{username}",
      "valid": "response.status == 200 and 'memberSince' in responseContent"
    },
    {
      "app": "Buzznet",
      "id": 224,
      "method": "GET",
      "url": "https://www.buzznet.com/author/{username}/",
      "valid": "response.status == 200 and '<title>Author:' in responseContent"
    },
    {
      "app": "Carbonmade",
      "id": 225,
      "method": "GET",
      "url": "https://{username}.carbonmade.com/",
      "valid": "response.status == 200 and 's online portfolio' in responseContent"
    },
    {
      "app": "Career habr",
      "id": 226,
      "method": "GET",
      "url": "https://career.habr.com/{username}",
      "valid": "response.status == 200 and '\u2014 \u0425\u0430\u0431\u0440 \u041a\u0430\u0440\u044c\u0435\u0440\u0430</title>' in responseContent"
    },
    {
      "app": "CaringBridge",
      "id": 227,
      "method": "GET",
      "url": "https://www.caringbridge.org/visit/{username}",
      "valid": "response.status == 200 and '| CaringBridge' in responseContent"
    },
    {
      "app": "carrd co",
      "id": 228,
      "method": "GET",
      "url": "https://{username}.carrd.co",
      "valid": "response.status == 200 and '( Made with Carrd )' in responseContent"
    },
    {
      "app": "cash app",
      "id": 229,
      "method": "GET",
      "url": "https://cash.app/${username}",
      "valid": "response.status == 200 and ' on Cash App</title>' in responseContent"
    },
    {
      "app": "CD-Action",
      "id": 230,
      "method": "GET",
      "url": "https://cdaction.pl/uzytkownicy/{username}",
      "valid": "response.status == 200 and 'Lista gier:' in responseContent"
    },
    {
      "app": "cda pl",
      "id": 231,
      "method": "GET",
      "url": "https://www.cda.pl/{username}",
      "valid": "response.status == 200 and 'Foldery' in responseContent"
    },
    {
      "app": "championat",
      "id": 232,
      "method": "GET",
      "url": "https://www.championat.com/user/{username}/",
      "valid": "response.status == 200 and '\u041b\u0438\u0447\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b' in responseContent"
    },
    {
      "app": "Chaos social",
      "id": 233,
      "method": "GET",
      "url": "https://chaos.social/@{username}",
      "valid": "response.status == 200 and '- chaos.social' in responseContent"
    },
    {
      "app": "cHEEZburger",
      "id": 234,
      "method": "GET",
      "url": "https://profile.cheezburger.com/{username}",
      "valid": "response.status == 200 and 'profile-header' in responseContent"
    },
    {
      "app": "Chamsko",
      "id": 235,
      "method": "GET",
      "url": "https://www.chamsko.pl/profil/{username}",
      "valid": "response.status == 200 and 'W serwisie od' in responseContent"
    },
    {
      "app": "Chess com",
      "id": 236,
      "method": "GET",
      "url": "https://www.chess.com/member/{username}",
      "valid": "response.status == 200 and 'Last Online' in responseContent"
    },
    {
      "app": "Chomikuj pl",
      "id": 237,
      "method": "GET",
      "url": "https://chomikuj.pl/{username}/",
      "valid": "response.status == 200 and 'Foldery' in responseContent"
    },
    {
      "app": "Chyoa",
      "id": 238,
      "method": "GET",
      "url": "https://chyoa.com/user/{username}",
      "valid": "response.status == 200 and 'When I\\'m not reading erotica I like to read' in responseContent"
    },
    {
      "app": "clusterdafrica",
      "id": 239,
      "method": "GET",
      "url": "https://clusterdafrica.com/@{username}",
      "valid": "response.status == 200 and 'Membre depuis -' in responseContent"
    },
    {
      "app": "cnet",
      "id": 240,
      "method": "GET",
      "url": "https://www.cnet.com/profiles/{username}/",
      "valid": "response.status == 200 and 'Member Since:' in responseContent"
    },
    {
      "app": "codeforces",
      "id": 241,
      "method": "GET",
      "url": "https://codeforces.com/profile/{username}",
      "valid": "response.status == 200 and '- Codeforces' in soup.find('meta', property='og:title')['content']"
    },
    {
      "app": "codementor",
      "id": 242,
      "method": "GET",
      "url": "https://www.codementor.io/@{username}",
      "valid": "response.status == 200 and 'ABOUT ME' in responseContent"
    },
    {
      "app": "contactos sex",
      "id": 243,
      "method": "GET",
      "url": "https://www.contactossex.com/profile/{username}",
      "valid": "response.status == 200 and 'Informaci\u00f3n Personal' in responseContent"
    },
    {
      "app": "coroflot",
      "id": 244,
      "method": "GET",
      "url": "https://www.coroflot.com/{username}",
      "valid": "response.status == 200 and 'portfolio' in responseContent"
    },
    {
      "app": "cracked_io",
      "id": 245,
      "method": "GET",
      "url": "https://cracked.io/{username}",
      "valid": "response.status == 200 and 'Cracked.io - Profile of' in responseContent"
    },
    {
      "app": "Cracked",
      "id": 246,
      "method": "GET",
      "url": "https://www.cracked.com/members/{username}",
      "valid": "response.status == 200 and 'Member Since' in responseContent"
    },
    {
      "app": "crevado",
      "id": 247,
      "method": "GET",
      "url": "https://{username}.crevado.com/",
      "valid": "response.status == 200 and 'Portfolio' in responseContent"
    },
    {
      "app": "crowdin",
      "id": 248,
      "method": "GET",
      "url": "https://crowdin.com/profile/{username}",
      "valid": "response.status == 200 and ') \u2013 Crowdin' in responseContent"
    },
    {
      "app": "Cults3D",
      "id": 249,
      "method": "GET",
      "url": "https://cults3d.com/en/users/{username}/creations",
      "valid": "response.status == 200 and 'All the 3D models of' in responseContent"
    },
    {
      "app": "Cytoid",
      "id": 250,
      "method": "GET",
      "url": "https://cytoid.io/profile/{username}",
      "valid": "response.status == 200 and 'Joined' in responseContent"
    },
    {
      "app": "Dailymotion",
      "id": 251,
      "method": "GET",
      "url": "https://www.dailymotion.com/{username}",
      "valid": "response.status == 200 and 'og:url' in responseContent"
    },
    {
      "app": "darudar",
      "id": 252,
      "method": "GET",
      "url": "https://darudar.org/users/{username}/",
      "valid": "response.status == 200 and '. \u0414\u0430\u0440\u0443\u0434\u0430\u0440' in responseContent"
    },
    {
      "app": "dateinasia",
      "id": 253,
      "method": "GET",
      "url": "https://www.dateinasia.com/{username}",
      "valid": "response.status == 200 and 'About me' in responseContent"
    },
    {
      "app": "datezone",
      "id": 254,
      "method": "GET",
      "url": "https://www.datezone.com/users/{username}/",
      "valid": "response.status == 200 and ' - Users - Datezone' in responseContent"
    },
    {
      "app": "Dating ru",
      "id": 255,
      "method": "GET",
      "url": "https://dating.ru/{username}/",
      "valid": "response.status == 200 and '| dating.ru' in responseContent"
    },
    {
      "app": "Demotywatory",
      "id": 256,
      "method": "GET",
      "url": "https://demotywatory.pl/user/{username}",
      "valid": "response.status == 200 and 'Z nami od:' in responseContent"
    },
    {
      "app": "Designspriation",
      "id": 257,
      "method": "GET",
      "url": "https://www.designspiration.com/{username}/",
      "valid": "response.status == 200 and 'has discovered on Designspiration' in responseContent"
    },
    {
      "app": "DeviantArt",
      "id": 258,
      "method": "GET",
      "url": "https://www.deviantart.com/{username}",
      "valid": "response.status == 200 and ' | DeviantArt</title>' in responseContent"
    },
    {
      "app": "dfgames",
      "id": 259,
      "method": "GET",
      "url": "https://www.dfgames.com.br/user/{username}",
      "valid": "response.status == 200 and 'Reputa' in responseContent"
    },
    {
      "app": "dev to",
      "id": 260,
      "method": "GET",
      "url": "https://dev.to/{username}",
      "valid": "response.status == 200 and '- DEV' in responseContent"
    },
    {
      "app": "devRant",
      "id": 261,
      "method": "GET",
      "url": "https://devrant.com/users/{username}",
      "valid": "response.status == 200 and 'Joined devRant on' in responseContent"
    },
    {
      "app": "Diablo",
      "id": 262,
      "method": "GET",
      "url": "https://diablo2.io/member/{username}/",
      "valid": "response.status == 200 and 'Viewing profile - ' in responseContent"
    },
    {
      "app": "diigo",
      "id": 263,
      "method": "GET",
      "url": "https://www.diigo.com/interact_api/load_profile_info?name={username}",
      "valid": "response.status == 200 and 'regist_at' in responseContent"
    },
    {
      "app": "Digitalspy",
      "id": 264,
      "method": "GET",
      "url": "https://forums.digitalspy.com/profile/discussions/{username}",
      "valid": "response.status == 200 and 'About' in responseContent"
    },
    {
      "app": "Discogs",
      "id": 265,
      "method": "GET",
      "url": "https://www.discogs.com/user/{username}",
      "valid": "response.status == 200 and 'Joined on' in responseContent"
    },
    {
      "app": "Discourse",
      "id": 266,
      "method": "GET",
      "url": "https://meta.discourse.org/u/{username}/summary.json",
      "valid": "response.status == 200 and 'topics' in responseContent"
    },
    {
      "app": "discuss elastic co",
      "id": 267,
      "method": "GET",
      "url": "https://discuss.elastic.co/u/{username}",
      "valid": "response.status == 200 and '<title>  Profile' in responseContent"
    },
    {
      "app": "Dojoverse",
      "id": 268,
      "method": "GET",
      "url": "https://dojoverse.com/members/{username}/",
      "valid": "response.status == 200 and 'Joined' in responseContent"
    },
    {
      "app": "Dribbble",
      "id": 269,
      "method": "GET",
      "url": "https://dribbble.com/{username}",
      "valid": "response.status == 200 and ' | Dribbble' in responseContent"
    },
    {
      "app": "Droners",
      "id": 270,
      "method": "GET",
      "url": "https://droners.io/accounts/{username}/",
      "valid": "response.status == 200 and '- Professional Drone Pilot' in responseContent"
    },
    {
      "app": "easyen",
      "id": 271,
      "method": "GET",
      "url": "https://easyen.ru/index/8-0-{username}",
      "valid": "response.status == 200 and '\u0414\u0435\u043d\u044c \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f' in responseContent"
    },
    {
      "app": "eBay",
      "id": 272,
      "method": "GET",
      "url": "https://www.ebay.com/usr/{username}",
      "valid": "response.status == 200 and 'on eBay</title>' in responseContent"
    },
    {
      "app": "Elftown",
      "id": 273,
      "method": "GET",
      "url": "http://elftown.com/{username}",
      "valid": "response.status == 303"
    },
    {
      "app": "Ello co",
      "id": 274,
      "method": "GET",
      "url": "https://ello.co/{username}",
      "valid": "response.status == 200 and '| Ello' in responseContent"
    },
    {
      "app": "Engadget",
      "id": 275,
      "method": "GET",
      "url": "https://www.engadget.com/about/editors/{username}/",
      "valid": "response.status == 200 and '- Engadget</title>' in responseContent"
    },
    {
      "app": "EPORNER",
      "id": 276,
      "method": "GET",
      "url": "https://www.eporner.com/profile/{username}/",
      "valid": "response.status == 200 and 'Video/Pics views' in responseContent"
    },
    {
      "app": "Etsy",
      "id": 277,
      "method": "GET",
      "url": "https://www.etsy.com/people/{username}",
      "valid": "response.status == 200 and ' on Etsy</title>' in responseContent"
    },
    {
      "app": "EU_Voice",
      "id": 278,
      "method": "GET",
      "url": "https://social.network.europa.eu/@{username}",
      "valid": "response.status == 200 and 'social.network.europa.eu' in responseContent"
    },
    {
      "app": "ExtraLunchMoney",
      "id": 279,
      "method": "GET",
      "url": "https://extralunchmoney.com/user/{username}",
      "valid": "response.status == 200 and 'Public Profile Page' in responseContent"
    },
    {
      "app": "Eyeem",
      "id": 280,
      "method": "GET",
      "url": "https://www.eyeem.com/u/{username}",
      "valid": "response.status == 200 and '| EyeEm Photographer' in responseContent"
    },
    {
      "app": "Fabswingers",
      "id": 281,
      "method": "GET",
      "url": "https://www.fabswingers.com/profile/{username}",
      "valid": "response.status == 200 and 'View Profile' in responseContent"
    },
    {
      "app": "Facenama",
      "id": 282,
      "method": "GET",
      "url
Download .txt
gitextract_rbfr722i/

├── .github/
│   ├── FUNDING.yml
│   └── workflows/
│       └── main.yml
├── .gitignore
├── LICENSE
├── README.md
├── h4xtools.py
├── helper/
│   ├── handles.py
│   ├── printer.py
│   ├── randomuser.py
│   ├── timer.py
│   └── url_helper.py
├── requirements.txt
├── resources/
│   ├── data.json
│   └── wordlist.txt
├── setup.bat
├── setup.sh
├── update.bat
├── update.sh
└── utils/
    ├── __init__.py
    ├── bluetooth_scanner.py
    ├── dirbuster.py
    ├── email_search.py
    ├── fake_info_generator.py
    ├── ig_scrape.py
    ├── ip_lookup.py
    ├── leak_search.py
    ├── local_users.py
    ├── phonenumber_lookup.py
    ├── port_scanner.py
    ├── search_username.py
    ├── web_reconnaissance.py
    ├── web_scrape.py
    ├── whois_lookup.py
    ├── wifi_finder.py
    └── wifi_vault.py
Download .txt
SYMBOL INDEX (111 symbols across 22 files)

FILE: h4xtools.py
  function _internet_check (line 30) | def _internet_check() -> None:
  function _print_banner (line 47) | def _print_banner() -> None:
  function _display_help (line 61) | def _display_help() -> None:
  function _print_menu (line 173) | def _print_menu() -> None:
  function main (line 216) | def main() -> None:

FILE: helper/handles.py
  function handle_bluetooth_scanner (line 39) | def handle_bluetooth_scanner() -> None:
  function handle_ig_scrape (line 45) | def handle_ig_scrape() -> None:
  function handle_web_reconnaissance (line 51) | def handle_web_reconnaissance() -> None:
  function handle_phone_lookup (line 56) | def handle_phone_lookup() -> None:
  function handle_ip_lookup (line 63) | def handle_ip_lookup() -> None:
  function handle_username_search (line 69) | def handle_username_search() -> None:
  function handle_email_search (line 75) | def handle_email_search() -> None:
  function handle_port_scanner (line 84) | def handle_port_scanner() -> None:
  function handle_whois_lookup (line 91) | def handle_whois_lookup() -> None:
  function handle_fake_info_generator (line 97) | def handle_fake_info_generator() -> None:
  function handle_web_scrape (line 102) | def handle_web_scrape() -> None:
  function handle_wifi_finder (line 108) | def handle_wifi_finder() -> None:
  function handle_wifi_vault (line 114) | def handle_wifi_vault() -> None:
  function handle_dir_buster (line 120) | def handle_dir_buster() -> None:
  function handle_local_users (line 126) | def handle_local_users() -> None:
  function handle_leak_search (line 132) | def handle_leak_search() -> None:

FILE: helper/printer.py
  function _print_colored (line 26) | def _print_colored(message: str, color: str, prefix: str, *args, **kwarg...
  function info (line 39) | def info(message, *args, **kwargs) -> None:
  function success (line 43) | def success(message, *args, **kwargs) -> None:
  function error (line 47) | def error(message, *args, **kwargs) -> None:
  function warning (line 51) | def warning(message, *args, **kwargs) -> None:
  function debug (line 55) | def debug(message, *args, **kwargs) -> None:
  function section (line 60) | def section(title: str) -> None:
  function noprefix (line 79) | def noprefix(message, *args, **kwargs) -> None:
  function user_input (line 83) | def user_input(prompt, *args, **kwargs) -> str:
  function ansi_escape (line 88) | def ansi_escape(output: str) -> str:

FILE: helper/randomuser.py
  class GetUser (line 438) | class GetUser:
    method __init__ (line 443) | def __init__(self) -> None:
    method __str__ (line 446) | def __str__(self) -> str:

FILE: helper/timer.py
  function timer (line 25) | def timer(require_input: bool) -> FunctionType:

FILE: helper/url_helper.py
  function read_local_content (line 25) | def read_local_content(path) -> str | dict | None:
  function _resource_path (line 46) | def _resource_path(relative_path) -> str:

FILE: utils/bluetooth_scanner.py
  function scan_nearby_bluetooth (line 28) | def scan_nearby_bluetooth(duration: int) -> None:
  function _scan_linux (line 46) | def _scan_linux(duration: int) -> str:
  function _scan_windows (line 92) | def _scan_windows() -> None:
  function _parse_output (line 97) | def _parse_output(output: str, platform: str) -> None:

FILE: utils/dirbuster.py
  function bust (line 27) | def bust(domain: str) -> None:
  function _get_wordlist (line 45) | def _get_wordlist() -> set[str] | None:
  function _fetch_url (line 57) | async def _fetch_url(
  function _scan_async (line 81) | async def _scan_async(domain: str, paths: set[str]) -> set[str]:
  function _scan_urls (line 96) | def _scan_urls(domain: str) -> set[str]:

FILE: utils/email_search.py
  class HoleheSite (line 41) | class HoleheSite:
  function search (line 52) | def search(email: str) -> None:
  function _validate_email (line 80) | def _validate_email(email: str) -> bool:
  function _run_holehe (line 94) | def _run_holehe(email: str) -> None:
  function _parse_holehe_output (line 146) | def _parse_holehe_output(output: str) -> tuple[list[HoleheSite], str]:
  function _print_results (line 213) | def _print_results(sites: list[HoleheSite], stats: str) -> None:
  function _format_extra (line 253) | def _format_extra(raw: str) -> str:

FILE: utils/fake_info_generator.py
  function generate (line 26) | def generate() -> None:

FILE: utils/ig_scrape.py
  class Post (line 37) | class Post:
  class IGProfile (line 46) | class IGProfile:
  function _fetch_guest (line 85) | def _fetch_guest(username: str, profile: IGProfile) -> None:
  function _fetch_authenticated (line 144) | def _fetch_authenticated(username: str, session_id: str, profile: IGProf...
  function _fetch_advanced_lookup (line 205) | def _fetch_advanced_lookup(username: str, profile: IGProfile) -> None:
  function _print_profile (line 243) | def _print_profile(profile: IGProfile) -> None:
  function _ask_export (line 326) | def _ask_export() -> str | None:
  function _export (line 347) | def _export(profile: IGProfile, fmt: str) -> None:
  function scrape (line 477) | def scrape(target: str) -> None:

FILE: utils/ip_lookup.py
  function lookup (line 45) | def lookup(ip_address: str) -> None:

FILE: utils/leak_search.py
  class StealerEntry (line 53) | class StealerEntry:
  class CombEntry (line 70) | class CombEntry:
  class LeakReport (line 79) | class LeakReport:
  function _detect_type (line 97) | def _detect_type(target: str) -> str:
  function _get (line 114) | def _get(url: str, params: dict | None = None) -> dict | None:
  function _fetch_hudson_rock (line 155) | def _fetch_hudson_rock(
  function _parse_stealer (line 291) | def _parse_stealer(raw: dict) -> StealerEntry:
  function _fetch_comb (line 316) | def _fetch_comb(email: str) -> tuple[int, list[CombEntry]]:
  function _print_stealer (line 350) | def _print_stealer(entry: StealerEntry, index: int, total: int) -> None:
  function _print_comb_entry (line 372) | def _print_comb_entry(entry: CombEntry, index: int) -> None:
  function _ask_export (line 380) | def _ask_export() -> str | None:
  function _export (line 401) | def _export(report: LeakReport, fmt: str) -> None:
  function _ask_entry_limit (line 552) | def _ask_entry_limit() -> int | None:
  function lookup (line 568) | def lookup(target: str) -> None:

FILE: utils/local_users.py
  function scan_for_local_users (line 27) | def scan_for_local_users() -> None:

FILE: utils/phonenumber_lookup.py
  function lookup (line 53) | def lookup(phone_number: str) -> None:
  function _print_number_info (line 88) | def _print_number_info(ph_no: p.PhoneNumber) -> None:
  function _run_ignorant (line 126) | def _run_ignorant(ph_no: p.PhoneNumber) -> None:
  function _parse_ignorant_output (line 192) | def _parse_ignorant_output(output: str) -> list[str]:

FILE: utils/port_scanner.py
  function scan (line 27) | def scan(ip: str, port_range: int) -> None:
  function _scan_ports (line 67) | def _scan_ports(
  function _connect_to_port (line 91) | def _connect_to_port(

FILE: utils/search_username.py
  function search (line 29) | def search(username: str) -> None:
  function _check_user_from_data (line 41) | def _check_user_from_data(username: str) -> dict:
  function _make_requests (line 78) | async def _make_requests(username: str, sites: list) -> list:
  function _make_request (line 99) | async def _make_request(

FILE: utils/web_reconnaissance.py
  class SearchResult (line 47) | class SearchResult:
  function websearch (line 206) | def websearch() -> None:
  function _print_mode_menu (line 335) | def _print_mode_menu() -> None:
  function _ask_max_results (line 345) | def _ask_max_results() -> int:
  function _ask_save_results (line 357) | def _ask_save_results() -> str | None:
  function _save_results (line 379) | def _save_results(
  function _build_query (line 458) | def _build_query(template: str, target: dict[str, str]) -> str:
  function _fetch_results (line 475) | def _fetch_results(
  function _print_result (line 535) | def _print_result(result: SearchResult) -> None:

FILE: utils/web_scrape.py
  function _export_links (line 32) | def _export_links(links: set, base_url: str, format_type: str = "txt") -...
  function scrape (line 111) | def scrape(url: str) -> None:
  function _fetch (line 177) | async def _fetch(session: aiohttp.ClientSession, url: str) -> str:
  function _parse_links (line 193) | async def _parse_links(content: str, base_url: str) -> list[tuple[str, s...
  function _scrape_links (line 208) | async def _scrape_links(

FILE: utils/whois_lookup.py
  function check_whois (line 25) | def check_whois(domain: str) -> None:

FILE: utils/wifi_finder.py
  function scan_nearby_wifi (line 27) | def scan_nearby_wifi() -> None:
  function _scan_windows (line 42) | def _scan_windows() -> None:
  function _scan_linux (line 53) | def _scan_linux() -> None:
  function _parse_windows_output (line 75) | def _parse_windows_output(output: str) -> None:
  function _parse_linux_output (line 120) | def _parse_linux_output(output: str) -> None:

FILE: utils/wifi_vault.py
  function get_local_passwords (line 26) | def get_local_passwords() -> None:
Condensed preview — 35 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (453K chars).
[
  {
    "path": ".github/FUNDING.yml",
    "chars": 12,
    "preview": "github: vil\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "chars": 1670,
    "preview": "name: Build executables\n\non:\n  workflow_dispatch: # Manually triggered event\n  pull_request: # Trigger the workflow on p"
  },
  {
    "path": ".gitignore",
    "chars": 66,
    "preview": "__pycache__\nbuild\ndist\nscraped_data\nvenv\n.venv\n.env\n.VC.opendb\n.vc"
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 6792,
    "preview": "# H4X-Tools\n\n[![GitHub latest commit](https://badgen.net/github/last-commit/vil/H4X-Tools)](https://GitHub.com/vil/H4X-T"
  },
  {
    "path": "h4xtools.py",
    "chars": 10267,
    "preview": "#!/usr/bin/env python3\n\n\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redi"
  },
  {
    "path": "helper/handles.py",
    "chars": 4203,
    "preview": "\"\"\"\nCopyright (c) 2023-2025. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "helper/printer.py",
    "chars": 2859,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "helper/randomuser.py",
    "chars": 47991,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "helper/timer.py",
    "chars": 1811,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "helper/url_helper.py",
    "chars": 1528,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "requirements.txt",
    "chars": 183,
    "preview": "colorama\nddgs\nphonenumbers\nrequests\nbeautifulsoup4\nurllib3\npyinstaller\nwhoisdomain\ngit+https://github.com/diezo/Ensta.gi"
  },
  {
    "path": "resources/data.json",
    "chars": 153938,
    "preview": "{\n  \"sites\": [\n    {\n      \"app\": \"Facebook\",\n      \"id\": 1,\n      \"method\": \"GET\",\n      \"url\": \"https://www.facebook.c"
  },
  {
    "path": "resources/wordlist.txt",
    "chars": 17378,
    "preview": "images\nindex.php\ncss\njs\nwp-content\nwp-content/mysql.sql\nrobots.txt\nassets\nwp-admin\nwp-includes\nimg\nfonts\nlicense.txt\nwp-"
  },
  {
    "path": "setup.bat",
    "chars": 1011,
    "preview": ":: Copyright (c) 2024-2025 Vili and contributors.\n@echo off\ncls\necho.\necho H4X-Tools Setup Script\necho.\necho -- Made in "
  },
  {
    "path": "setup.sh",
    "chars": 1336,
    "preview": "#!/usr/bin/env bash\n\n# Copyright (c) 2024-2025 Vili and contributors.\n\nclear\n\necho \"H4X-Tools Setup Script\"\necho\necho \"-"
  },
  {
    "path": "update.bat",
    "chars": 455,
    "preview": ":: Copyright (c) 2024-2025 Vili and contributors.\n@echo off\ncls\necho.\necho H4X-Tools Update Script\necho.\necho -- Made in"
  },
  {
    "path": "update.sh",
    "chars": 597,
    "preview": "#!/usr/bin/env bash\n\n# Copyright (c) 2024-2025 Vili and contributors.\n\nclear\n\necho \"H4X-Tools Update Script\"\necho\necho \""
  },
  {
    "path": "utils/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "utils/bluetooth_scanner.py",
    "chars": 4047,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/dirbuster.py",
    "chars": 3545,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/email_search.py",
    "chars": 9614,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/fake_info_generator.py",
    "chars": 2145,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/ig_scrape.py",
    "chars": 20982,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/ip_lookup.py",
    "chars": 2793,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/leak_search.py",
    "chars": 27017,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/local_users.py",
    "chars": 5465,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/phonenumber_lookup.py",
    "chars": 8070,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/port_scanner.py",
    "chars": 3979,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/search_username.py",
    "chars": 4493,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/web_reconnaissance.py",
    "chars": 19675,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/web_scrape.py",
    "chars": 8666,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/whois_lookup.py",
    "chars": 1661,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/wifi_finder.py",
    "chars": 5784,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  },
  {
    "path": "utils/wifi_vault.py",
    "chars": 4453,
    "preview": "\"\"\"\nCopyright (c) 2023-2026. Vili and contributors.\n\nThis program is free software: you can redistribute it and/or modif"
  }
]

About this extraction

This page contains the full source code of the vil/H4X-Tools GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 35 files (409.8 KB), approximately 116.8k tokens, and a symbol index with 111 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!