diff options
author | Aaron Ball <nullspoon@oper.io> | 2022-03-08 17:37:53 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2022-03-08 17:37:53 -0700 |
commit | 8df3f3e7cbd2aa17acb0edff23cfd8311368b24e (patch) | |
tree | 9dd40b259169c72b71352da1645f657e0a979dfa /chntpw | |
parent | e872f28b587efbb5d656bca9e89bac312a9db4cc (diff) | |
download | ports-nullsec-8df3f3e7cbd2aa17acb0edff23cfd8311368b24e.tar.gz ports-nullsec-8df3f3e7cbd2aa17acb0edff23cfd8311368b24e.tar.xz |
chntpw: Initial commit
Diffstat (limited to 'chntpw')
-rw-r--r-- | chntpw/.footprint | 7 | ||||
-rw-r--r-- | chntpw/.md5sum | 1 | ||||
-rw-r--r-- | chntpw/.signature | 5 | ||||
-rw-r--r-- | chntpw/Pkgfile | 17 |
4 files changed, 30 insertions, 0 deletions
diff --git a/chntpw/.footprint b/chntpw/.footprint new file mode 100644 index 0000000..2ce7543 --- /dev/null +++ b/chntpw/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/chntpw +-rwxr-xr-x root/root usr/bin/cpnt +-rwxr-xr-x root/root usr/bin/reged +-rwxr-xr-x root/root usr/bin/sampasswd +-rwxr-xr-x root/root usr/bin/samusrgrp diff --git a/chntpw/.md5sum b/chntpw/.md5sum new file mode 100644 index 0000000..68eb425 --- /dev/null +++ b/chntpw/.md5sum @@ -0,0 +1 @@ +d60bc657206b07ad84d926649d6417dc chntpw-source-140201.zip diff --git a/chntpw/.signature b/chntpw/.signature new file mode 100644 index 0000000..c59abb2 --- /dev/null +++ b/chntpw/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/nullsec.pub +RWSxUCZhUqGvtZ1uit8WEIOmHX1y5kwpeogdG17KuSP0lxtX0z744fkG3G9TCqFMCILRkLmpEfDSHifIw0l8uZZa3scwwyQ4xw4= +SHA256 (Pkgfile) = 7d20fae4d725f4a08369e3719a8f6f0e3470a54be4e5968ef48e106329543abe +SHA256 (.footprint) = aa8452115f5f30f8725a0f33a6db51ff19aee8fda503b0243acc2c4992b256ca +SHA256 (chntpw-source-140201.zip) = 96e20905443e24cba2f21e51162df71dd993a1c02bfa12b1be2d0801a4ee2ccc diff --git a/chntpw/Pkgfile b/chntpw/Pkgfile new file mode 100644 index 0000000..e5a2c6f --- /dev/null +++ b/chntpw/Pkgfile @@ -0,0 +1,17 @@ +# Description: The Offline Windows Password Editor +# URL: https://pogostick.net/~pnh/ntpasswd +# Maintainer: Nullspoon, nullspoon at oper dot io +# Depends on: + +name=chntpw +version=140201 +release=1 +source=(http://pogostick.net/~pnh/ntpasswd/${name}-source-${version}.zip) + +build() { + cd "${name}-${version}" + make + for i in chntpw cpnt reged samusrgrp sampasswd; do + install -m 755 -D "${i}" "${PKG}/usr/bin/${i}" + done +} |