NExfil is an OSINT tool written in python for finding profiles by username.

Overview

Twitter - Discord - thewhiteh4t's Blog


NExfil is an OSINT tool written in python for finding profiles by username. The provided usernames are checked on over 350 websites within few seconds. The goal behind this tool was to get results quickly while maintaining low amounts of false positives.

If you like my work please star this project :D

If you find any errors or false positives or if you want to suggest more websites feel free to open an issue.

Features

  • Fast, lookup can complete under 20 seconds
  • Over 350 platforms are included
  • Batch processing
    • Usernames can be provided from commandline
    • List of usernames can be provided from a file
  • Results are automatically saved in txt file
  • JSON and CSV file formats [Coming Soon]
  • Proxy support [Coming Soon]
  • Tor support [Coming Soon]

Installation

git clone https://github.com/thewhiteh4t/nexfil.git
cd nexfil
pip3 install -r requirements.txt

Usage

python3 nexfil.py -h
usage: nexfil.py [-h] [-u U] [-d D [D ...]] [-f F] [-l L] [-t T] [-v]

nexfil - Find social media profiles on the web | v1.0.0

optional arguments:
  -h, --help    show this help message and exit
  -u U          Specify username
  -d D [D ...]  Specify DNS Servers [Default : 1.1.1.1]
  -f F          Specify a file containing username list
  -l L          Specify multiple comma separated usernames
  -t T          Specify timeout [Default : 20]
  -v            Prints version

# Single username
python3 nexfil.py -u username

# Multiple *comma* separated usernames
python3 nexfil.py -l "user1, user2"

# Username list in a file
python3 nexfil.py -f users.txt

Demo

v1.0.0

Comments
  • Little problem execution

    Little problem execution

    Hello dear theWhiteh4t,

    I have discover your tool with the video content of Saltinbank (Youtube). When i execute the script after install the requirements, i have this error :

    Traceback (most recent call last):
      File "/home/numidian/Bureau/Nexfil/nexfil.py", line 273, in <module>
        log_writer('----- STARTING -----')
      File "/home/numidian/Bureau/Nexfil/modules/write_log.py", line 6, in log_writer
        logging.basicConfig(
      File "/usr/lib/python3.10/logging/__init__.py", line 2040, in basicConfig
        h = FileHandler(filename, mode,
      File "/usr/lib/python3.10/logging/__init__.py", line 1169, in __init__
        StreamHandler.__init__(self, self._open())
      File "/usr/lib/python3.10/logging/__init__.py", line 1201, in _open
        return open_func(self.baseFilename, self.mode,
    FileNotFoundError: [Errno 2] No such file or directory: '/home/numidian/.local/share/nexfil/exceptions.log'
    

    Please could you help me ?

    Thank's in advance & congrats for your job

    opened by LiamSeddaoui 7
  • During handling of the above exception, another exception occurred:

    During handling of the above exception, another exception occurred:

    I launch nexfil, it starts then spam this message:

    ] Finding Profiles...

    unhandled exception during asyncio.run() shutdown task: <Task finished coro=<query() done, defined at ./nexfil.py:165> exception=AttributeError("module 'asyncio' has no attribute 'exceptions'")> Traceback (most recent call last): File "/home/seifer/HackTools/OSINT_Tools/nexfil/modules/string.py", line 9, in test_string elif response.status not in codes: NameError: name 'codes' is not defined

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "./nexfil.py", line 171, in query await test_string(session, url, data) File "/home/seifer/HackTools/OSINT_Tools/nexfil/modules/string.py", line 17, in test_string except asyncio.exceptions.TimeoutError: AttributeError: module 'asyncio' has no attribute 'exceptions'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "/home/seifer/.pyenv/versions/3.7.13/lib/python3.7/asyncio/runners.py", line 43, in run return loop.run_until_complete(main) File "/home/seifer/.pyenv/versions/3.7.13/lib/python3.7/asyncio/base_events.py", line 587, in run_until_complete return future.result() File "./nexfil.py", line 281, in main await asyncio.gather(*tasks) File "./nexfil.py", line 199, in query except asyncio.exceptions.TimeoutError: AttributeError: module 'asyncio' has no attribute 'exceptions'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "./nexfil.py", line 181, in query response = await session.head(url, allow_redirects=True) File "/home/seifer/.pyenv/versions/3.7.13/lib/python3.7/site-packages/aiohttp/client.py", line 536, in _request req, traces=traces, timeout=real_timeout File "/home/seifer/.pyenv/versions/3.7.13/lib/python3.7/site-packages/aiohttp/connector.py", line 522, in connect raise e File "/home/seifer/.pyenv/versions/3.7.13/lib/python3.7/site-packages/aiohttp/connector.py", line 512, in connect await fut concurrent.futures._base.CancelledError

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last): File "./nexfil.py", line 199, in query except asyncio.exceptions.TimeoutError: AttributeError: module 'asyncio' has no attribute 'exceptions' unhandled exception during asyncio.run() shutdown task: <Task finished coro=<query() done, defined at ./nexfil.py:165> exception=AttributeError("module 'asyncio' has no attribute 'exceptions'")> Traceback (most recent call last): File "/home/seifer/HackTools/OSINT_Tools/nexfil/modules/string.py", line 9, in test_string elif response.status not in codes: NameError: name 'codes' is not defined

    opened by IssouLinux 5
  • aiohttp.client_exceptions.ServerDisconnectedError

    aiohttp.client_exceptions.ServerDisconnectedError

    Server Disconnected Error

    While querying any username the script appears to run through many of the urls and then suddenly throws an exception. I am not sure if this exception is caused by a bug in the code, my python version or a specific url but the error happens consistently.

    Python version: python 3.10.8

    Traceback (most recent call last):
      File "/home/gerard/osint/nexfil/nexfil.py", line 298, in <module>
        asyncio.run(main(uname))
      File "/usr/lib/python3.10/asyncio/runners.py", line 44, in run
        return loop.run_until_complete(main)
      File "/usr/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
        return future.result()
      File "/home/gerard/osint/nexfil/nexfil.py", line 281, in main
        await asyncio.gather(*tasks)
      File "/home/gerard/osint/nexfil/nexfil.py", line 181, in query
        response = await session.head(url, allow_redirects=True)
      File "/home/gerard/.local/lib/python3.10/site-packages/aiohttp/client.py", line 560, in _request
        await resp.start(conn)
      File "/home/gerard/.local/lib/python3.10/site-packages/aiohttp/client_reqrep.py", line 899, in start
        message, payload = await protocol.read()  # type: ignore[union-attr]
      File "/home/gerard/.local/lib/python3.10/site-packages/aiohttp/streams.py", line 616, in read
        await self._waiter
    aiohttp.client_exceptions.ServerDisconnectedError: Server disconnected
    

    WindowsTerminal_uDYS4kgMvf

    opened by gakelly 4
  • Error during my first tests

    Error during my first tests

    First time i'm sending an issue, but here we go.

    I've cloned your repository, followed your instructions then I tried to use python3 nexfil.py -u Chapeaunyra.

    This is the response, truncate before the error.

    Traceback (most recent call last):
      File "nexfil.py", line 276, in test_redirect
        response = await session.head(url, allow_redirects=False)
      File "/home/valentin/.local/lib/python3.7/site-packages/aiohttp/client.py", line 619, in _request
        break
      File "/home/valentin/.local/lib/python3.7/site-packages/aiohttp/helpers.py", line 656, in __exit__
        raise asyncio.TimeoutError from None
    concurrent.futures._base.TimeoutError
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "nexfil.py", line 142, in query
        await test_redirect(session, url)
      File "nexfil.py", line 277, in test_redirect
        except asyncio.exceptions.TimeoutError:
    AttributeError: module 'asyncio' has no attribute 'exceptions'
    
    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
      File "nexfil.py", line 379, in <module>
        launch(uname)
      File "nexfil.py", line 358, in launch
        loop.run_until_complete(main(uname))
      File "/usr/lib/python3.7/asyncio/base_events.py", line 584, in run_until_complete
        return future.result()
      File "nexfil.py", line 342, in main
        await asyncio.gather(*tasks)
      File "nexfil.py", line 167, in query
        except asyncio.exceptions.TimeoutError:
    AttributeError: module 'asyncio' has no attribute 'exceptions'
    

    I'm on Debian 10, Buster. Let me know if u need more informations and which one would be able to help you to improve your tool :)

    opened by Chapeaunyra 4
  • UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 22516

    UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 22516

    Hi, When I launch your script, I've this error. I'm on Windows 10, and I'm using pipenv.

    (nexfil-HrktdyP2) λ python nexfil.py -u snowden
    [+] Importing Modules...
    
    [+] Checking Connectivity...
    
    __   _ _____ _     _ _____ _____ _
    | \  | |____  \___/  |____   |   |
    |  \_| |____ _/   \_ |     __|__ |_____
    
    [>] Created By : thewhiteh4t
     |---> Twitter : https://twitter.com/thewhiteh4t
     |---> Discord : https://discord.gg/UM92zUn
    [>] Version    : 1.0.0
    
    [!] Loading URLs...
    Traceback (most recent call last):
      File "nexfil.py", line 369, in <module>
        raw_data = url_store.read()
      File "c:\users\me\appdata\local\programs\python\python38\lib\encodings\cp1252.py", line 23, in decode
        return codecs.charmap_decode(input,self.errors,decoding_table)[0]
    UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 22516: character maps to <undefined>
    

    Thanks, Have a nice day

    F.

    opened by quoidautre 4
  • Account detected even if they don't exist

    Account detected even if they don't exist

    On some website, like Kali Linux forums, username get detected even if they don't exist

    [+] Target : 7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    
    [+] https://my.flightradar24.com/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://namemc.com/profile/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://pcpartpicker.com/user/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://forums.kali.org/member.php?username=7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://rubygems.org/profiles/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://dlive.tv/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://www.nairaland.com/7hcecx9ex4wyg7r2fup4wsivg33jpa
    [+] https://www.clozemaster.com/dashboard
    [+] https://www.instagram.com/accounts/login/
    [+] https://vote.casually.cat/u/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [+] https://telegram.org/
    [-] [https://www.warriorforum.com/members/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa.html] [400]
    [+] https://consent.youtube.com/m?continue=https://www.youtube.com/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa&gl=FR&m=0&pc=yt&uxe=23983171&hl=fr&src=1
    [+] https://blog.naver.com/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa
    [-] [https://www.pscp.tv/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa/] [400]
    [+] https://echo.msk.ru/users/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa/
    [-] [https://www.reddit.com/user/7HCEcX9eX4wyg7R2FuP4WsiVG33JPa] [503]
    
    opened by victorbnl 3
  • No support for whitespaces.

    No support for whitespaces.

    There seem to be a bug in the way the program handles multi-word nicks/names. It can't handle the space in-between the words.

    Proposed solutions:

    1. replace the space between the words with the valid web domain character like '-' for subdomain checks, alternatively remove all white spaces (strip)
    2. urlencode the string before passing it as a path
    opened by vitellolabs 3
  • SyntaxError Preventing Install

    SyntaxError Preventing Install

    Python 3.11.0 (main, Oct 24 2022, 18:26:48) [MSC v.1933 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information.

    https://github.com/thewhiteh4t/nexfil.git File "", line 1 https://github.com/thewhiteh4t/nexfil.git ^^ SyntaxError: invalid syntax https://github.com/thewhiteh4t/nexfil.git File "", line 1 https://github.com/thewhiteh4t/nexfil.git ^^ SyntaxError: invalid syntax

    invalid 
    opened by Cha0sG0d1995 2
  • Time out Error

    Time out Error

    I Have tested this script on windows it woks fine .But when i run this script on ubuntu with python3.7 it throws an error

    I Have Attached screenshot Below

    Screenshot (152)

    opened by swagkarna 2
  • 11 undefined names in Python code

    11 undefined names in Python code

    $ flake8 . --count --select=E9,F63,F7,F82,Y --show-source --statistics

    ./modules/api.py:8:25: F821 undefined name 'loads'
                resp_body = loads(await response.text())
                            ^
    ./modules/output.py:7:11: F821 undefined name 'tldextract'
        ext = tldextract.extract(url)
              ^
    ./modules/output.py:11:17: F821 undefined name 'Y'
        cl_dom = f'{Y}{dom}.{suf}{C}'
                    ^
    ./modules/output.py:11:31: F821 undefined name 'C'
        cl_dom = f'{Y}{dom}.{suf}{C}'
                                  ^
    ./modules/output.py:13:14: F821 undefined name 'G'
        print(f'{G}[+] {C}{url}{W}')             ^
    ./modules/output.py:13:21: F821 undefined name 'C'
        print(f'{G}[+] {C}{url}{W}')                    ^
    ./modules/output.py:13:29: F821 undefined name 'W'
        print(f'{G}[+] {C}{url}{W}')                            ^
    ./modules/string.py:9:37: F821 undefined name 'codes'
            elif response.status not in codes:
                                        ^
    ./modules/string.py:10:22: F821 undefined name 'R'
                print(f'{R}[-] {Y}[{url}] {W}[{response.status}]')
                         ^
    ./modules/string.py:10:29: F821 undefined name 'Y'
                print(f'{R}[-] {Y}[{url}] {W}[{response.status}]')
                                ^
    ./modules/string.py:10:40: F821 undefined name 'W'
                print(f'{R}[-] {Y}[{url}] {W}[{response.status}]')
                                           ^
    11    F821 undefined name 'loads'
    11
    
    opened by cclauss 1
  • Various false positive fixes

    Various false positive fixes

    Fixed:

    • cloudflare
    • ello
    • gurushots
    • medium
    • robertsspaceindustries
    • instagram
    • fiverr

    Removed:

    • https://github.community/u/{}/summary
    • https://forums.whonix.org/u/{}

    Before: image

    After: image

    opened by ZRiddle 0
  • Add twitter scan

    Add twitter scan

    result  [32m[+] Importing Modules... 


    | \ | |____ ___/ |____ | | | _| |____ _/ _ | | |_____

    [>] Created By : thewhiteh4t  |---> Twitter : https://twitter.com/thewhiteh4t  |---> Community : https://twc1rcle.com/ [>] Version : 1.0.3

    [!] Loading URLs... [+] 343 URLs Loaded! [+] Timeout : 5 secs [+] Target : ahelmy

    [!] Finding Profiles...

    [>] Progress : 1 https://www.behance.net/ahelmy [>] Progress : 2 https://www.facebook.com/ahelmy [>] Progress : 3 https://disqus.com/by/ahelmy/ [>] Progress : 4 https://community.cloudflare.com/u/ahelmy [>] Progress : 5 [>] Progress : 6 [>] Progress : 7 https://www.freelancer.com/u/ahelmy [>] Progress : 8 [>] Progress : 9 [>] Progress : 10 [>] Progress : 11 [>] Progress : 12 [>] Progress : 13 [>] Progress : 14 [>] Progress : 15 [>] Progress : 16 https://discussions.apple.com/profile/ahelmy/participation [>] Progress : 17 [>] Progress : 18 [>] Progress : 19 https://fortnitetracker.com/profile/all/ahelmy [>] Progress : 20 https://about.me/ahelmy [>] Progress : 21 https://9gag.com/u/ahelmy [>] Progress : 22 [>] Progress : 23 [>] Progress : 24 [>] Progress : 25 [>] Progress : 26 http://en.gravatar.com/ahelmy [>] Progress : 27 https://www.chess.com/member/ahelmy [>] Progress : 28 [>] Progress : 29 [>] Progress : 30 [>] Progress : 31 [>] Progress : 32 [>] Progress : 33 [>] Progress : 34 [>] Progress : 35 [>] Progress : 36 [>] Progress : 37 [>] Progress : 38 [>] Progress : 39 [>] Progress : 40 https://www.deviantart.com/ahelmy [>] Progress : 41 [>] Progress : 42 [>] Progress : 43 [>] Progress : 44 https://www.codecademy.com/profiles/ahelmy [>] Progress : 45 [>] Progress : 46 https://namemc.com/search?q=ahelmy [>] Progress : 47 [>] Progress : 48 [>] Progress : 49 https://hubpages.com/@ahelmy [>] Progress : 50 [>] Progress : 51 [>] Progress : 52 [>] Progress : 53 [>] Progress : 54 https://issuu.com/ahelmy [>] Progress : 55 [>] Progress : 56 [>] Progress : 57 [>] Progress : 58 [>] Progress : 59 https://audiojungle.net/user/ahelmy [>] Progress : 60 https://www.alltrails.com/members/ahelmy/lists [>] Progress : 61 [>] Progress : 62 https://www.capfriendly.com/users/ahelmy [>] Progress : 63 [>] Progress : 64 [>] Progress : 65 [>] Progress : 66 https://hub.docker.com/u/ahelmy/ [>] Progress : 67 [>] Progress : 68 [>] Progress : 69 [>] Progress : 70 [>] Progress : 71 [>] Progress : 72 [>] Progress : 73 [>] Progress : 74 [>] Progress : 75 [>] Progress : 76 [>] Progress : 77 https://forums.kali.org/member.php?username=ahelmy [>] Progress : 78 https://www.duolingo.com/profile/ahelmy [>] Progress : 79 [>] Progress : 80 https://flipboard.com/@ahelmy [>] Progress : 81 [>] Progress : 82 [>] Progress : 83 [>] Progress : 84 https://gurushots.com/ahelmy/photos [>] Progress : 85 [>] Progress : 86 [>] Progress : 87 [>] Progress : 88 [>] Progress : 89 https://open.spotify.com/user/ahelmy [>] Progress : 90 [>] Progress : 91 [>] Progress : 92 [>] Progress : 93 [>] Progress : 94 https://bitbucket.org/ahelmy/ [>] Progress : 95 https://www.wattpad.com/user/ahelmy [>] Progress : 96 [>] Progress : 97 [>] Progress : 98 [>] Progress : 99 [>] Progress : 100 [>] Progress : 101 https://unsplash.com/@ahelmy [>] Progress : 102 https://ahelmy.blogspot.com/ [>] Progress : 103 [>] Progress : 104 [>] Progress : 105 https://github.com/ahelmy [>] Progress : 106 [>] Progress : 107 [>] Progress : 108 https://t.me/ahelmy [>] Progress : 109 [>] Progress : 110 [>] Progress : 111 [>] Progress : 112 [>] Progress : 113 [>] Progress : 114 https://www.clozemaster.com/dashboard [>] Progress : 115 https://lichess.org/@/ahelmy [>] Progress : 116 [>] Progress : 117 [>] Progress : 118 https://trello.com/ahelmy/activity [>] Progress : 119 [>] Progress : 120 [>] Progress : 121 [>] Progress : 122 [>] Progress : 123 https://www.youtube.com/ahelmy [>] Progress : 124 [>] Progress : 125 [>] Progress : 126 [>] Progress : 127 [>] Progress : 128 [>] Progress : 129 [>] Progress : 130 https://tryhackme.com/p/ahelmy [>] Progress : 131 [>] Progress : 132 [>] Progress : 133 [>] Progress : 134 [>] Progress : 135 [>] Progress : 136 [>] Progress : 137 https://www.instructables.com/member/ahelmy/ [>] Progress : 138 [>] Progress : 139 [>] Progress : 140 [>] Progress : 141 [>] Progress : 142 [>] Progress : 143 [>] Progress : 144 [>] Progress : 145 [>] Progress : 146 [>] Progress : 147 [>] Progress : 148 [>] Progress : 149 https://m.twitch.tv/ahelmy [>] Progress : 150 [>] Progress : 151 [>] Progress : 152 [>] Progress : 153 [>] Progress : 154 [>] Progress : 155 [>] Progress : 156 [>] Progress : 157 [>] Progress : 158 https://app.memrise.com/user/ahelmy/ [>] Progress : 159 [>] Progress : 160 https://www.redbubble.com/people/ahelmy/shop [>] Progress : 161 [>] Progress : 162 [>] Progress : 163 https://www.houzz.com/user/ahelmy [>] Progress : 164 [>] Progress : 165 [>] Progress : 166 [>] Progress : 167 [>] Progress : 168 https://scratch.mit.edu/users/ahelmy/ [>] Progress : 169 [>] Progress : 170 [>] Progress : 171 [>] Progress : 172 https://ifttt.com/p/ahelmy [>] Progress : 173 [>] Progress : 174 [>] Progress : 175 [>] Progress : 176 https://launchpad.net/~ahelmy [>] Progress : 177 [>] Progress : 178 [>] Progress : 179 https://independent.academia.edu/AHelmy [>] Progress : 180 https://ask.fm/ahelmy [>] Progress : 181 [>] Progress : 182 [>] Progress : 183 [>] Progress : 184 [>] Progress : 185 [>] Progress : 186 [>] Progress : 187 [>] Progress : 188 https://bodyspace.bodybuilding.com/ahelmy/ [>] Progress : 189 [>] Progress : 190 [>] Progress : 191 [>] Progress : 192 [>] Progress : 193 [>] Progress : 194 https://gist.github.com/ahelmy/ [>] Progress : 195 [>] Progress : 196 [>] Progress : 197 [>] Progress : 198 [>] Progress : 199 [>] Progress : 200 [>] Progress : 201 [>] Progress : 202 [>] Progress : 203 [>] Progress : 204 https://myspace.com/ahelmy [>] Progress : 205 [>] Progress : 206 [>] Progress : 207 https://pcpartpicker.com/user/ahelmy [>] Progress : 208 [>] Progress : 209 [>] Progress : 210 [>] Progress : 211 [>] Progress : 212 [>] Progress : 213 [>] Progress : 214 [>] Progress : 215 [>] Progress : 216 [>] Progress : 217 [>] Progress : 218 [>] Progress : 219 [>] Progress : 220 [>] Progress : 221 [>] Progress : 222 [>] Progress : 223 [>] Progress : 224 [>] Progress : 225 [>] Progress : 226 [>] Progress : 227 [>] Progress : 228 [>] Progress : 229 [>] Progress : 230 https://leetcode.com/ahelmy/ [>] Progress : 231 [>] Progress : 232 [>] Progress : 233 [>] Progress : 234 [>] Progress : 235 [>] Progress : 236 [>] Progress : 237 https://old.reddit.com/user/ahelmy [>] Progress : 238 [>] Progress : 239 [>] Progress : 240 [>] Progress : 241 https://www.instagram.com/ahelmy/ [>] Progress : 242 [>] Progress : 243 [>] Progress : 244 https://www.hackerrank.com/ahelmy?hr_r=1 [>] Progress : 245 [>] Progress : 246 [>] Progress : 247 [>] Progress : 248 [>] Progress : 249 [>] Progress : 250 [>] Progress : 251 [>] Progress : 252 [>] Progress : 253 [>] Progress : 254 [>] Progress : 255 [>] Progress : 256 [>] Progress : 257 [>] Progress : 258 [>] Progress : 259 [>] Progress : 260 [>] Progress : 261 [>] Progress : 262 [>] Progress : 263 [>] Progress : 264 https://www.smule.com/ahelmy [>] Progress : 265 https://trakt.tv/users/ahelmy [>] Progress : 266 [>] Progress : 267 [>] Progress : 268 https://www.younow.com/ahelmy [>] Progress : 269 [>] Progress : 270 [>] Progress : 271 [>] Progress : 272 [>] Progress : 273 [>] Progress : 274 https://www.fiverr.com/ahelmy [>] Progress : 275 [>] Progress : 276 [>] Progress : 277 [>] Progress : 278 [>] Progress : 279 [>] Progress : 280 https://twitter.com/ahelmy [>] Progress : 281 [>] Progress : 282 https://soundcloud.com/ahelmy [>] Progress : 283 [>] Progress : 284 [>] Progress : 285 [>] Progress : 286 [>] Progress : 287 https://ahelmy.livejournal.com [>] Progress : 288 [>] Progress : 289 [>] Progress : 290 [>] Progress : 291 [>] Progress : 292 [>] Progress : 293 [>] Progress : 294 [>] Progress : 295 https://www.pinterest.com/ahelmy/ [>] Progress : 296 [>] Progress : 297 [>] Progress : 298 [>] Progress : 299 [>] Progress : 300 https://www.scribd.com/user/6630377/ahelmy [>] Progress : 301 [>] Progress : 302 [>] Progress : 303 http://tipso.link/ahelmy [>] Progress : 304 https://en.wikipedia.org/wiki/User:Ahelmy [>] Progress : 305 [>] Progress : 306 [>] Progress : 307 [>] Progress : 308 [>] Progress : 309 [>] Progress : 310 [>] Progress : 311 https://letterboxd.com/ahelmy/ [>] Progress : 312 [>] Progress : 313 [>] Progress : 314 [>] Progress : 315 https://quizlet.com/Ahelmy [>] Progress : 316 https://www.slideshare.net/ahelmy [>] Progress : 317 [>] Progress : 318 [>] Progress : 319 [>] Progress : 320 https://vk.com/ahelmy [>] Progress : 321 https://www.last.fm/user/ahelmy [>] Progress : 322 [>] Progress : 323 https://tinder.com/@ahelmy [>] Progress : 324 https://vsco.co/ahelmy/gallery [>] Progress : 325 [>] Progress : 326 [>] Progress : 327 https://www.roblox.com/users/125298103/profile [>] Progress : 328 [>] Progress : 329 [>] Progress : 330 [>] Progress : 331 [>] Progress : 332 [>] Progress : 333 https://www.pscp.tv/ahelmy/ [>] Progress : 334 [>] Progress : 335 [>] Progress : 336 [>] Progress : 337 [>] Progress : 338 [>] Progress : 339 [>] Progress : 340 [>] Progress : 341 [>] Progress : 342 [>] Progress : 343

    [>] Completed In : 00 Hours 00 Minutes 08 Seconds [>] Total Profiles Found : 74 [>] Total Timeouts : 3 [>] Total Exceptions : 6

    [+] Saved : /Users/alihelmy/.local/share/nexfil/dumps/ahelmy_1672483050.txt

    opened by ahelmy 1
  • Password spraying the generated result

    Password spraying the generated result

    Hi,

    Is there a function/repo that takes the URL's that was generated and lets say you provide a password it takes the URL's and this provided password and tests against the URL's and checks for a succesful login. Is there anything similar to this?

    opened by Grantstreet1337 1
  • Error on Python 3.9 and 3.10

    Error on Python 3.9 and 3.10

    I'm having this issue on Arch Linux. Tested with python-3.9 and 3.10. Same error each time.

    Traceback (most recent call last): File "/home/rk/nexfil/nexfil.py", line 298, in asyncio.run(main(uname)) File "/usr/lib/python3.9/asyncio/runners.py", line 44, in run return loop.run_until_complete(main) File "/usr/lib/python3.9/asyncio/base_events.py", line 647, in run_until_complete return future.result() File "/home/rk/nexfil/nexfil.py", line 281, in main await asyncio.gather(*tasks) File "/home/rk/nexfil/nexfil.py", line 181, in query response = await session.head(url, allow_redirects=True) File "/home/rk/.local/lib/python3.9/site-packages/aiohttp/client.py", line 560, in _request await resp.start(conn) File "/home/rk/.local/lib/python3.9/site-packages/aiohttp/client_reqrep.py", line 899, in start message, payload = await protocol.read() # type: ignore[union-attr] File "/home/rk/.local/lib/python3.9/site-packages/aiohttp/streams.py", line 616, in read await self._waiter aiohttp.client_exceptions.ServerDisconnectedError: Server disconnected

    opened by kaoxkrul 1
  • False positives from Facebook and Pinterest

    False positives from Facebook and Pinterest

    No matter what is entered for a username, Facebook and Pinterest always return a positive hit. I'll take a look at it myself and submit a PR if I come up with anything.

    Thanks!

    opened by tuckert 1
Owner
thewhiteh4t
The Best Defense is a Good Offense.
thewhiteh4t
Yesitsme - Simple OSINT script to find Instagram profiles by name and e-mail/phone

Simple OSINT script to find Instagram profiles by name and e-mail/phone

null 108 Jan 7, 2023
Osint-Tool - Information collection tool in python

Osint-Tool Herramienta para la recolección de información Pronto más opciones In

null 3 Apr 9, 2022
A OSINT tool coded in python

Argus Welcome to Argus, a OSINT tool coded in python. Disclaimer I Am not responsible what you do with the information that is given to you by my tool

Aidan 2 Mar 20, 2022
Vulnerability Scanner & Auto Exploiter You can use this tool to check the security by finding the vulnerability in your website or you can use this tool to Get Shells

About create a target list or select one target, scans then exploits, done! Vulnnr is a Vulnerability Scanner & Auto Exploiter You can use this tool t

Nano 108 Dec 4, 2021
A simple python-function, to gain all wlan passwords from stored wlan-profiles on a computer.

Wlan Fetcher Windows10 Description A simple python-function, to gain all wlan passwords from stored wlan-profiles on a computer. Usage This Script onl

null 2 Nov 20, 2021
The Devils Eye is an OSINT tool that searches the Darkweb for onion links and descriptions that match with the users query without requiring the use for Tor.

The Devil's Eye searches the darkweb for information relating to the user's query and returns the results including .onion links and their description

Richard Mwewa 135 Dec 31, 2022
This tool was created in order to automate some basic OSINT tasks for penetration testing assingments.

This tool was created in order to automate some basic OSINT tasks for penetration testing assingments. The main feature that I haven't seen much anywhere is the downloadd google dork function where this function first perform basic google dorking to find the targets public documents. These documents will then be downloaded to the attackers computer and can be used further to identify metadata about the client.

Tobias 5 May 31, 2022
An OSINT tool that searches for devices directly connected to the internet (IoT) with a user specified query. It returns results for Webcams, Traffic lights, Refridgerators, Smart TVs etc.

An OSINT tool that searches for devices directly connected to the internet (IoT) with a user specified query. It returns results for Webcams, Traffic

Richard Mwewa 48 Nov 20, 2022
Mr.Holmes is a information gathering tool (OSINT)

?? Mr.Holmes Mr.Holmes is a information gathering tool (OSINT). Is main purpose is to gain information about domains,username and phone numbers with t

null 534 Jan 8, 2023
SSH Tool For OSINT and then Cracking.

sshmap SSH Tool For OSINT and then Cracking. Linux Systems Only Usage: Scanner Syntax: scanner start/stop/status - Sarts/stops/sho

Miss Bliss 5 Apr 4, 2022
Subdomain enumeration,Web scraping and finding usernames automation script written in python

Subdomain enumeration,Web scraping and finding usernames automation script written in python

Syam 12 Nov 22, 2022
FBGen is simple facebook user based wordlist generator using Username/ID and cookie.

FBGen is simple facebook user based wordlist generator using Username/ID and cookie.

null 2 Jul 20, 2022
A simple automatic tool for finding vulnerable log4j hosts

Log4Scan A simple automatic tool for finding vulnerable log4j hosts Installation pip3 install -r requirements.txt Usage usage: log4scan.py [-h] (-f FI

Federico Rapetti 20018955 6 Mar 10, 2022
Tool for finding PHP source code vulnerabilities.

vulnz Tool for finding php source code vulnerabilities. Scans PHP source code and prints out potentially dangerous lines. This tool is useful for secu

Mateo Hanžek 1 Jan 14, 2022
SpiderFoot automates OSINT collection so that you can focus on analysis.

SpiderFoot is an open source intelligence (OSINT) automation tool. It integrates with just about every data source available and utilises a range of m

Steve Micallef 9k Jan 8, 2023
Sentinel-1 SAR time series analysis for OSINT use

SARveillance Sentinel-1 SAR time series analysis for OSINT use. Description Generates a time lapse GIF of the Sentinel-1 satellite images for the loca

null 21 Dec 9, 2022
Web-eyes - OSINT tools for website research

WEB-EYES V1.0 web-eyes: OSINT tools for website research, 14 research methods ar

null 8 Nov 10, 2022
OSINT Cybersecurity Tools

OSINT Cybersecurity Tools Welcome to the World of OSINT: An ongoing collection of awesome tools and frameworks, best security software practices, libr

Paul Veillard, P. Eng 7 Jul 1, 2022
SCodeScanner stands for Source Code scanner where the user can scans the source code for finding the Critical Vulnerabilities.

The SCodeScanner stands for Source Code Scanner, where you can scan your source code files like PHP and get identify the vulnerabilities inside it. The tool can use by Pentester, Developer to quickly identify the weakness.

null 136 Dec 13, 2022