about summary refs log tree commit diff
path: root/pkgs/tools/security/phrasendrescher
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2016-11-22 17:33:12 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2016-11-22 17:33:12 +0100
commit682bb54cc45dc3b9f973e9ba594d25680b9f8e33 (patch)
treecb7f718577c04878e8e7904d216aa49d983c1b39 /pkgs/tools/security/phrasendrescher
parent7d5abdca118f3bc3923067855ffebe3371c4bf49 (diff)
phrasendrescher: init at 1.0
It's a cracking tool that finds passphrases of SSH keys.
Diffstat (limited to 'pkgs/tools/security/phrasendrescher')
-rw-r--r--pkgs/tools/security/phrasendrescher/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/security/phrasendrescher/default.nix b/pkgs/tools/security/phrasendrescher/default.nix
new file mode 100644
index 0000000000000..814bc0d85302d
--- /dev/null
+++ b/pkgs/tools/security/phrasendrescher/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, openssl }:
+
+stdenv.mkDerivation rec {
+  name = "phrasendrescher-${version}";
+  version = "1.0";
+
+  src = fetchurl {
+    url = "http://leidecker.info/projects/phrasendrescher/${name}.tar.gz";
+    sha256 = "1r0j7ms3i324p6if9cg8i0q900zqfjpvfr8pwj181x8ascysbbf2";
+  };
+
+  buildInputs = [ openssl ];
+
+  meta = with stdenv.lib; {
+    description = "Cracking tool that finds passphrases of SSH keys";
+    homepage = "http://leidecker.info/projects/phrasendrescher.shtml";
+    license = licenses.gpl2Plus;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ bjornfor ];
+  };
+}