1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

getArch.py, impacket-getArch: add page (#15930)

* Create getarch.py.md

* Create impacket-getarch.md
This commit is contained in:
Machiavelli 2025-03-15 14:07:15 +02:00 committed by GitHub
parent 56bf24edaa
commit 7aad85f952
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,21 @@
# getArch.py
> Determine the OS architecture (x86 or x64) of a remote Windows system.
> Part of the Impacket suite.
> More information: <https://github.com/fortra/impacket>.
- Check the architecture of a single target system:
`getArch.py -target {{target}}`
- Check the architecture of multiple targets from a file (one per line):
`getArch.py -targets {{path/to/targets_file}}`
- Set a custom socket timeout (default is 2 seconds):
`getArch.py -target {{target}} -timeout {{seconds}}`
- Enable debug mode for detailed output:
`getArch.py -target {{target}} -debug`

View file

@ -0,0 +1,9 @@
# impacket-getArch
> This command is an alias of `getArch.py`.
> Part of the Impacket suite.
> More information: <https://github.com/fortra/impacket>.
- View documentation for the original command:
`tldr getArch.py`