Kali Linuxにimpacketをインストールする際に問題があります。誰もが正しい方向に私を指すことができますか?

Kali Linuxにimpacketをインストールする際に問題があります。誰もが正しい方向に私を指すことができますか?

私はkali Linuxに初めてアクセスし、YouTubeの動画をフォローしています。最初はapt purge doimpacket既存の衝撃パッケージを削除してからこれを行いました。git clone https://github.com/SecureAuthCorp/impacket.gitしかし、これを行うとpip install .(インストールセクションで述べたように)https://github.com/SecureAuthCorp/impacketpip)コマンドが見つからないというエラーメッセージが表示されます。

試してみましたが、sudo apt-get install python-setuptoolsエラーメッセージが表示されます。Package python-setuptools is not available

ベストアンサー1

他のパッケージがメンテナンスを妨げる依存関係サイクルに陥らないように、virtualenv を使用することをお勧めします。次に、pythonとpipの代わりにpython3とpip3を使用してpython3ツールを使用していることを確認してください。

$ git clone https://github.com/SecureAuthCorp/impacket.git
$ sudo apt install virtualenv
$ virtualenv impacket-venv
$ source impacket-venv/bin/activate
(impacket-venv) $ cd ~/impacket
(impacket-venv) impacket/$ pip3 install -r requirements.txt
(impacket-venv) impacket/$ pip3 install .
(impacket-venv) impacket/$ cd ~/impacket-venv/bin
(impacket-venv) impacket-venv/bin/$ python3 ./GetADUsers.py
Impacket v0.9.22.dev1+20200428.191254.96c7a512 - Copyright 2020 SecureAuth Corporation

usage: GetADUsers.py [-h] [-user username] [-all] [-ts] [-debug]
                     [-hashes LMHASH:NTHASH] [-no-pass] [-k] [-aesKey hex key]
                     [-dc-ip ip address]
                     target

Queries target domain for users data

positional arguments:
  target                domain/username[:password]

optional arguments:
  -h, --help            show this help message and exit
  -user username        Requests data for specific user
  -all                  Return all users, including those with no email
                        addresses and disabled accounts. When used with -user
                        it will return user's info even if the account is
                        disabled
  -ts                   Adds timestamp to every logging output
  -debug                Turn DEBUG output ON

authentication:
  -hashes LMHASH:NTHASH
                        NTLM hashes, format is LMHASH:NTHASH
  -no-pass              don't ask for password (useful for -k)
  -k                    Use Kerberos authentication. Grabs credentials from
                        ccache file (KRB5CCNAME) based on target parameters.
                        If valid credentials cannot be found, it will use the
                        ones specified in the command line
  -aesKey hex key       AES key to use for Kerberos Authentication (128 or 256
                        bits)
  -dc-ip ip address     IP Address of the domain controller. If ommited it use
                        the domain part (FQDN) specified in the target
                        parameter

virtualenvを見てください。素晴らしいツールです。

おすすめ記事