[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/13] gnu: Add wificurse.
From: |
ng0 |
Subject: |
[PATCH 02/13] gnu: Add wificurse. |
Date: |
Thu, 12 Jan 2017 00:39:23 +0000 |
* gnu/packages/suckless.scm (wificurse): New variable.
---
gnu/packages/suckless.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 1d35e9389..bcfa16922 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -282,3 +282,36 @@ few minutes.")
(description
"Xbattmon is a simple battery monitor for X.")
(license license:isc)))
+
+(define-public wificurse
+ (package
+ (name "wificurse")
+ (version "0.3.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://dl.2f30.org/releases/"
+ name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "067ghr1xly5ca41kc83xila1p5hpq0bxfcmc8jvxi2ggm6wrhavn"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; No tests
+ #:make-flags (list
+ (string-append "PREFIX=" %output))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)))) ; No configure script
+ (home-page "http://git.2f30.org/wificurse/")
+ (synopsis "Wifi DoS attack tool")
+ (description
+ "Wificurses listens for beacons sent from wireless access points
+in the range of your wireless station. Once received the program
+extracts the BSSID of the AP and transmits deauthentication packets
+using the broadcast MAC address. This results to the disconnection
+of all clients connected to the AP at the time of the attack. This
+is essencially a WiFi DoS attack tool created for educational
+purposes only. It works only in Linux and requires wireless card
+drivers capable of injecting packets in wireless networks.")
+ (license license:gpl3+)))
--
2.11.0
- Re: Some suckless/2f30 packages., (continued)
- Re: Some suckless/2f30 packages., Leo Famulari, 2017/01/09
- 2f30, v2, ng0, 2017/01/11
- [PATCH 04/13] licenses: Add wtfpl2., ng0, 2017/01/11
- [PATCH 01/13] gnu: Add xbattmon., ng0, 2017/01/11
- [PATCH 03/13] gnu: Add spoon., ng0, 2017/01/11
- [PATCH 05/13] gnu: Add skroll., ng0, 2017/01/11
- [PATCH 07/13] gnu: Add prout., ng0, 2017/01/11
- [PATCH 06/13] gnu: Add sbm., ng0, 2017/01/11
- [PATCH 12/13] gnu: Add libutf., ng0, 2017/01/11
- [PATCH 11/13] gnu: Add colors., ng0, 2017/01/11
- [PATCH 02/13] gnu: Add wificurse.,
ng0 <=
- [PATCH 09/13] gnu: Add human., ng0, 2017/01/11
- [PATCH 08/13] gnu: Add noice., ng0, 2017/01/11
- [PATCH 10/13] gnu: Add fortify-headers., ng0, 2017/01/11
- [PATCH 13/13] gnu: Add lchat., ng0, 2017/01/11
- Re: 2f30, v2, Leo Famulari, 2017/01/13