diff options
Diffstat (limited to 'gnu/packages/networking.scm')
| -rw-r--r-- | gnu/packages/networking.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 329b97c3d48..2bd12301f3c 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm | |||
| @@ -2244,37 +2244,37 @@ packets from wireless devices for use with hashcat or John the Ripper.") | |||
| 2244 | (license license:expat))) | 2244 | (license license:expat))) |
| 2245 | 2245 | ||
| 2246 | (define-public hcxdumptool | 2246 | (define-public hcxdumptool |
| 2247 | (let* ((commit "f4799b5da82c5b030a6d99b02d1c1b9dc838ad36")) | 2247 | (package |
| 2248 | (package | 2248 | (name "hcxdumptool") |
| 2249 | (name "hcxdumptool") | 2249 | (version "5.1.4") |
| 2250 | (version (git-version "0.0.0" "1" commit)) | 2250 | (source |
| 2251 | (home-page "https://github.com/ZerBea/hcxdumptool") | 2251 | (origin |
| 2252 | (source (origin | 2252 | (method git-fetch) |
| 2253 | (method git-fetch) | 2253 | (uri (git-reference |
| 2254 | (uri (git-reference | 2254 | (url "https://github.com/ZerBea/hcxdumptool.git") |
| 2255 | (url home-page) | 2255 | (commit version))) |
| 2256 | (commit commit))) | 2256 | (sha256 |
| 2257 | (sha256 | 2257 | (base32 "0h2cc2dfpc83325hwqkxwn0p8qfq5gh1dg0yb1nr8bnffy0b4r4v")) |
| 2258 | (base32 | 2258 | (file-name (git-file-name name version)))) |
| 2259 | "0qlsin0rws9sshn12faq4spmd0ffzssal36s71vhv6gkhhga7abl")) | 2259 | (build-system gnu-build-system) |
| 2260 | (file-name (git-file-name name version)))) | 2260 | (arguments |
| 2261 | (build-system gnu-build-system) | 2261 | `(#:make-flags |
| 2262 | (arguments | 2262 | (list "CC=gcc" |
| 2263 | `(#:make-flags (list "CC=gcc" | 2263 | (string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin")) |
| 2264 | (string-append "INSTALLDIR=" (assoc-ref %outputs "out") "/bin")) | 2264 | #:tests? #f ; no test suite |
| 2265 | #:tests? #f ;no tests | 2265 | #:phases |
| 2266 | #:phases | 2266 | (modify-phases %standard-phases |
| 2267 | (modify-phases %standard-phases | 2267 | (delete 'configure)))) |
| 2268 | (delete 'configure)))) | 2268 | (home-page "https://github.com/ZerBea/hcxdumptool") |
| 2269 | (synopsis "Small tool to capture packets from wlan devices") | 2269 | (synopsis "Small tool to capture packets from wlan devices") |
| 2270 | (description | 2270 | (description |
| 2271 | "Small tool to capture packets from WLAN devices. After capturing, | 2271 | "Small tool to capture packets from WLAN devices. After capturing, |
| 2272 | upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to | 2272 | upload the \"uncleaned\" cap to @url{https://wpa-sec.stanev.org/?submit} to |
| 2273 | see if the access point or the client is vulnerable to a dictionary attack. | 2273 | see if the access point or the client is vulnerable to a dictionary attack. |
| 2274 | Convert the cap file to hccapx format and/or to WPA-PMKID-PBKDF2 | 2274 | Convert the cap file to hccapx format and/or to WPA-PMKID-PBKDF2 |
| 2275 | hashline (16800) with @command{hcxpcaptool} from the @code{hcxtools} package | 2275 | hashline (16800) with @command{hcxpcaptool} from the @code{hcxtools} package |
| 2276 | and check if the WLAN key or the master key was transmitted unencrypted.") | 2276 | and check if the WLAN key or the master key was transmitted unencrypted.") |
| 2277 | (license license:expat)))) | 2277 | (license license:expat))) |
| 2278 | 2278 | ||
| 2279 | (define-public dante | 2279 | (define-public dante |
| 2280 | (package | 2280 | (package |
