Projects STRLCPY mosint Commits 5efaad7f
🤬
  • ■ ■ ■ ■ ■ ■
    .gitignore
     1 +### Linux ###
     2 +*~
     3 + 
     4 +# temporary files which can be created if a process still has a handle open of a deleted file
     5 +.fuse_hidden*
     6 + 
     7 +# KDE directory preferences
     8 +.directory
     9 + 
     10 +# Linux trash folder which might appear on any partition or disk
     11 +.Trash-*
     12 + 
     13 +# .nfs files are created when an open file is removed but is still being accessed
     14 +.nfs*
     15 + 
     16 +### macOS ###
     17 +# General
     18 +.DS_Store
     19 +.AppleDouble
     20 +.LSOverride
     21 + 
     22 +# Icon must end with two \r
     23 +Icon
     24 + 
     25 + 
     26 +# Thumbnails
     27 +._*
     28 + 
     29 +# Files that might appear in the root of a volume
     30 +.DocumentRevisions-V100
     31 +.fseventsd
     32 +.Spotlight-V100
     33 +.TemporaryItems
     34 +.Trashes
     35 +.VolumeIcon.icns
     36 +.com.apple.timemachine.donotpresent
     37 + 
     38 +# Directories potentially created on remote AFP share
     39 +.AppleDB
     40 +.AppleDesktop
     41 +Network Trash Folder
     42 +Temporary Items
     43 +.apdisk
     44 + 
     45 +### Python ###
     46 +# Byte-compiled / optimized / DLL files
     47 +__pycache__/
     48 +*.py[cod]
     49 +*$py.class
     50 + 
     51 +# C extensions
     52 +*.so
     53 + 
     54 +# Distribution / packaging
     55 +.Python
     56 +build/
     57 +develop-eggs/
     58 +dist/
     59 +downloads/
     60 +eggs/
     61 +.eggs/
     62 +lib/
     63 +lib64/
     64 +parts/
     65 +sdist/
     66 +var/
     67 +wheels/
     68 +pip-wheel-metadata/
     69 +share/python-wheels/
     70 +*.egg-info/
     71 +.installed.cfg
     72 +*.egg
     73 +MANIFEST
     74 + 
     75 +# PyInstaller
     76 +# Usually these files are written by a python script from a template
     77 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
     78 +*.manifest
     79 +*.spec
     80 + 
     81 +# Installer logs
     82 +pip-log.txt
     83 +pip-delete-this-directory.txt
     84 + 
     85 +# Unit test / coverage reports
     86 +htmlcov/
     87 +.tox/
     88 +.nox/
     89 +.coverage
     90 +.coverage.*
     91 +.cache
     92 +nosetests.xml
     93 +coverage.xml
     94 +*.cover
     95 +*.py,cover
     96 +.hypothesis/
     97 +.pytest_cache/
     98 +pytestdebug.log
     99 + 
     100 +# Translations
     101 +*.mo
     102 +*.pot
     103 + 
     104 +# Django stuff:
     105 +*.log
     106 +local_settings.py
     107 +db.sqlite3
     108 +db.sqlite3-journal
     109 + 
     110 +# Flask stuff:
     111 +instance/
     112 +.webassets-cache
     113 + 
     114 +# Scrapy stuff:
     115 +.scrapy
     116 + 
     117 +# Sphinx documentation
     118 +docs/_build/
     119 +doc/_build/
     120 + 
     121 +# PyBuilder
     122 +target/
     123 + 
     124 +# Jupyter Notebook
     125 +.ipynb_checkpoints
     126 + 
     127 +# IPython
     128 +profile_default/
     129 +ipython_config.py
     130 + 
     131 +# pyenv
     132 +.python-version
     133 + 
     134 +# pipenv
     135 +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
     136 +# However, in case of collaboration, if having platform-specific dependencies or dependencies
     137 +# having no cross-platform support, pipenv may install dependencies that don't work, or not
     138 +# install all needed dependencies.
     139 +#Pipfile.lock
     140 + 
     141 +# PEP 582; used by e.g. github.com/David-OConnor/pyflow
     142 +__pypackages__/
     143 + 
     144 +# Celery stuff
     145 +celerybeat-schedule
     146 +celerybeat.pid
     147 + 
     148 +# SageMath parsed files
     149 +*.sage.py
     150 + 
     151 +# Environments
     152 +.env
     153 +.venv
     154 +env/
     155 +venv/
     156 +ENV/
     157 +env.bak/
     158 +venv.bak/
     159 +pythonenv*
     160 + 
     161 +# Spyder project settings
     162 +.spyderproject
     163 +.spyproject
     164 + 
     165 +# Rope project settings
     166 +.ropeproject
     167 + 
     168 +# mkdocs documentation
     169 +/site
     170 + 
     171 +# mypy
     172 +.mypy_cache/
     173 +.dmypy.json
     174 +dmypy.json
     175 + 
     176 +# Pyre type checker
     177 +.pyre/
     178 + 
     179 +# pytype static type analyzer
     180 +.pytype/
     181 + 
     182 +# profiling data
     183 +.prof
     184 + 
     185 +### venv ###
     186 +# Virtualenv
     187 +# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
     188 +[Bb]in
     189 +[Ii]nclude
     190 +[Ll]ib
     191 +[Ll]ib64
     192 +[Ll]ocal
     193 +[Ss]cripts
     194 +pyvenv.cfg
     195 +pip-selfcheck.json
     196 + 
     197 +### vscode ###
     198 +.vscode/*
     199 +!.vscode/settings.json
     200 +!.vscode/tasks.json
     201 +!.vscode/launch.json
     202 +!.vscode/extensions.json
     203 +*.code-workspace
     204 + 
     205 +### Windows ###
     206 +# Windows thumbnail cache files
     207 +Thumbs.db
     208 +Thumbs.db:encryptable
     209 +ehthumbs.db
     210 +ehthumbs_vista.db
     211 + 
     212 +# Dump file
     213 +*.stackdump
     214 + 
     215 +# Folder config file
     216 +[Dd]esktop.ini
     217 + 
     218 +# Recycle Bin used on file shares
     219 +$RECYCLE.BIN/
     220 + 
     221 +# Windows Installer files
     222 +*.cab
     223 +*.msi
     224 +*.msix
     225 +*.msm
     226 +*.msp
     227 + 
     228 +# Windows shortcuts
     229 +*.lnk
     230 + 
     231 +# End of https://www.toptal.com/developers/gitignore/api/python,vscode,macos,windows,linux,venv
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 6 lines
    7 7  MOSINT is an OSINT Tool for emails.
    8 8  It helps you gather information about the target email.
    9 9  #### :briefcase: Features:
    10  - - [need API] Verification Service { Check if email exist }
     10 + - Verification Service { Check if email exist }
    11 11   - Check social accounts with Socialscan
    12 12   - Check data breaches
    13 13   - [need API] Find related emails
    skipped 48 lines
    62 62   
    63 63  `pip3 install -r requirements.txt`
    64 64   
    65  -- You can edit the `Config.json` file
     65 +- You can edit the `config.json` file
    66 66   
    67 67  `python3 mosint.py`
    68 68   
    skipped 16 lines
Please wait...
Page is in error, reload to recover