blob: 3fe01b8962a89acd21e99acd3148e82f80cd455d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
use LWP::Simple;
use Digest::SHA;
multi sub MAIN(
Bool :$verbose, #=increase verbosity
) is export {
my Str $api = "https://api.pwnedpasswords.com";
# Gather all `.gpg' files from the store.
my @stack = "$*HOME/.password-store".IO;
my @files = gather while @stack {
with @stack.pop {
when :d { @stack.append: .dir }
.take when .extension.lc eq 'gpg'
}
}
for @files -> $file {
my $proc = run <gpg2>, '--decrypt', '--quiet', $file, :out;
my Str $hash = uc buf_to_hex sha1 $proc.out.slurp(:close).lines.head;
for LWP::Simple.get(
"$api/range/{ $hash.substr(0, 5) }",
{
Add-Padding => "true",
User-Agent => "Andinus / Orion - https://andinus.nand.sh/orion",
}
).lines.map(*.split(":")).grep(*[1] > 0) -> ($entry, $freq) {
if $hash.substr(5, *) eq $entry {
my Str $pass = $file.Str.split('.password-store/').tail.split('.gpg').first;
say $pass, " " x (72 - $pass.chars - $freq.chars), $freq;
};
}
}
}
sub buf_to_hex { [~] $^buf.list».fmt: "%02x" }
multi sub MAIN(
Bool :$version #= print version
) { say "Orion v" ~ $?DISTRIBUTION.meta<version>; }
|