Merge master into staging-next
This commit is contained in:
@@ -8,11 +8,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "1password";
|
||||
version = "0.8.0";
|
||||
version = "0.8.2-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://onepassword.s3.amazonaws.com/linux/appimage/${pname}-${version}.AppImage";
|
||||
sha256 = "1r26vyx724h3k6p340bg3lmcxwyvgxj2kqvwczq784583hpq3lq9";
|
||||
sha256 = "0gxq8xrr20jgp7k0sq5a9k63mz94zb00yvc9jw1zhl2q70ji24sa";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchFromGitLab, python2, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "creddump";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "kalilinux";
|
||||
repo = "packages/creddump";
|
||||
# url-encoding workaround: https://github.com/NixOS/nixpkgs/issues/65796#issuecomment-517829019
|
||||
rev = "debian%2F${version}-1kali2"; # %2F = urlquote("/")
|
||||
sha256 = "0r3rs2hggsvv619l3fh3c0jli6d3ryyj30ni3hz0nz670z5smzcf";
|
||||
};
|
||||
|
||||
# No setup.py is available
|
||||
dontBuild = true;
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [ python2Packages.pycrypto ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p ${placeholder "out"}/bin
|
||||
cp -r framework ${placeholder "out"}/bin/framework
|
||||
cp pwdump.py ${placeholder "out"}/bin/pwdump
|
||||
cp cachedump.py ${placeholder "out"}/bin/cachedump
|
||||
cp lsadump.py ${placeholder "out"}/bin/lsadump
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python tool to extract various credentials and secrets from Windows registry hives";
|
||||
homepage = "https://gitlab.com/kalilinux/packages/creddump";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.fishi0x01 ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ibm-sw-tpm2";
|
||||
version = "1628";
|
||||
version = "1637";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/ibmswtpm2/ibmtpm${version}.tar.gz";
|
||||
sha256 = "18wywbsdp5sjrapznk2ydbmx0whz513dhybn1lls24xfl7kp9s58";
|
||||
sha256 = "09z3wbv38dc8wnw1q961s6bcd0kvz2xkjp6dxg4kn914fwzlqfnx";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
Reference in New Issue
Block a user