├── .env ├── .gitignore ├── .idea ├── dictionaries │ └── root.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── skiptracer.iml ├── vcs.xml └── workspace.xml ├── Changelog ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── docker-compose.yml ├── docs ├── build-plugin.md └── inprogress-readme.md ├── requirements.txt ├── setup.cfg ├── setup.py ├── skiptracer.py ├── src └── skiptracer │ ├── __init__.py │ ├── __main__.py │ ├── banner.py │ ├── colors │ └── default_colors.py │ ├── datasaver.py │ ├── menus │ ├── default_menus.py │ └── help_menu.py │ ├── plugins │ ├── __init__.py │ ├── advance_background_checks │ │ ├── __init__.py │ │ └── __main__.py │ ├── base.py │ ├── fouroneone │ │ ├── __init__.py │ │ └── __main__.py │ ├── haveibeenpwned │ │ ├── __init__.py │ │ └── __main__.py │ ├── knowem │ │ ├── __init__.py │ │ └── __main__.py │ ├── linkedin │ │ ├── __init__.py │ │ └── __main__.py │ ├── myspace │ │ ├── __init__.py │ │ └── __main__.py │ ├── namechk2 │ │ ├── __init__.py │ │ └── __main__.py │ ├── plate │ │ ├── __init__.py │ │ └── __main__.py │ ├── proxygrabber.py │ ├── tinder │ │ ├── __init__.py │ │ └── __main__.py │ ├── true_people │ │ ├── __init__.py │ │ └── __main__.py │ ├── truthfinder │ │ ├── __init__.py │ │ └── __main__.py │ ├── twitter │ │ ├── __init__.py │ │ └── __main__.py │ ├── who_call_id │ │ ├── __init__.py │ │ └── __main__.py │ └── whoismind │ │ ├── __init__.py │ │ └── __main__.py │ └── skiptracer.py ├── storage ├── freemail.db └── user-agents.db └── test ├── test_advanced_background_checks.rst └── test_runner.py /.env: -------------------------------------------------------------------------------- 1 | HAVEIBEENPWNED_API_KEY=some-api-key-here -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | plugins/__pycache__/* 4 | *.py[cod] 5 | *$py.class 6 | 7 | # C extensions 8 | *.so 9 | 10 | # Distribution / packaging 11 | .Python 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .coverage 43 | .coverage.* 44 | .cache 45 | nosetests.xml 46 | coverage.xml 47 | *.cover 48 | .hypothesis/ 49 | .pytest_cache/ 50 | 51 | # Translations 52 | *.mo 53 | *.pot 54 | 55 | # Django stuff: 56 | *.log 57 | local_settings.py 58 | db.sqlite3 59 | 60 | # Flask stuff: 61 | instance/ 62 | .webassets-cache 63 | 64 | # Scrapy stuff: 65 | .scrapy 66 | 67 | # Sphinx documentation 68 | docs/_build/ 69 | 70 | # PyBuilder 71 | target/ 72 | 73 | # Jupyter Notebook 74 | .ipynb_checkpoints 75 | 76 | # pyenv 77 | .python-version 78 | 79 | # celery beat schedule file 80 | celerybeat-schedule 81 | 82 | # SageMath parsed files 83 | *.sage.py 84 | 85 | # Environments 86 | .env 87 | .venv 88 | env/ 89 | venv/ 90 | ENV/ 91 | env.bak/ 92 | venv.bak/ 93 | 94 | # Spyder project settings 95 | .spyderproject 96 | .spyproject 97 | 98 | # Rope project settings 99 | .ropeproject 100 | 101 | # mkdocs documentation 102 | /site 103 | 104 | # mypy 105 | .mypy_cache/ 106 | 107 | # .idea 108 | .idea 109 | -------------------------------------------------------------------------------- /.idea/dictionaries/root.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | accountr 5 | advancedbackgroundchecks 6 | agerange 7 | apprage 8 | datakey 9 | datareq 10 | datasets 11 | datastring 12 | dictkey 13 | emailmenu 14 | encres 15 | encresdic 16 | fname 17 | funclist 18 | googleplus 19 | gselect 20 | haveibeenpwned 21 | helpmenu 22 | instagram 23 | intromenu 24 | jload 25 | keylist 26 | knowem 27 | linkedin 28 | lname 29 | moddict 30 | myspace 31 | namechk 32 | namemenu 33 | ncook 34 | paywall 35 | phonemenu 36 | platemenu 37 | printfun 38 | reddit 39 | screenname 40 | sitecookie 41 | snmenu 42 | whoismind 43 | xmod 44 | xservice 45 | 46 | 47 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/skiptracer.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 67 | 68 | 76 | 77 | 78 | 79 | 80 | true 81 | DEFINITION_ORDER 82 | 83 | 84 | 85 | 86 | 87 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 |