mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 08:08:10 +00:00
Switch from \r\n to \n line terminators in tools/securenotes2hashcat.pl
This commit is contained in:
parent
77f7ea52a5
commit
f21137a129
@ -1,35 +1,35 @@
|
||||
#!/usr/bin/env perl
|
||||
|
||||
##
|
||||
## Author......: See docs/credits.txt
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use DBI;
|
||||
use DBD::SQLite;
|
||||
|
||||
die "usage: $0 NoteStore.sqlite\n" unless (scalar @ARGV == 1);
|
||||
|
||||
my $database = shift @ARGV;
|
||||
my $dsn = "DBI:SQLite:dbname=$database";
|
||||
my $userid = "";
|
||||
my $password = "";
|
||||
|
||||
my $dbh = DBI->connect ($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr;
|
||||
|
||||
my $sth = $dbh->prepare ("SELECT Z_PK,ZCRYPTOITERATIONCOUNT,ZCRYPTOSALT,ZCRYPTOWRAPPEDKEY FROM ZICCLOUDSYNCINGOBJECT WHERE ZISPASSWORDPROTECTED=1");
|
||||
|
||||
$sth->execute () or die $DBI::errstr;
|
||||
|
||||
while (my $row = $sth->fetchrow_arrayref ())
|
||||
{
|
||||
printf ("\$ASN\$*%d*%d*%s*%s\n", $row->[0], $row->[1], unpack ("H*", $row->[2]), unpack ("H*", $row->[3]));
|
||||
}
|
||||
|
||||
$sth->finish;
|
||||
|
||||
$dbh->disconnect ();
|
||||
|
||||
exit (0);
|
||||
#!/usr/bin/env perl
|
||||
|
||||
##
|
||||
## Author......: See docs/credits.txt
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use DBI;
|
||||
use DBD::SQLite;
|
||||
|
||||
die "usage: $0 NoteStore.sqlite\n" unless (scalar @ARGV == 1);
|
||||
|
||||
my $database = shift @ARGV;
|
||||
my $dsn = "DBI:SQLite:dbname=$database";
|
||||
my $userid = "";
|
||||
my $password = "";
|
||||
|
||||
my $dbh = DBI->connect ($dsn, $userid, $password, { RaiseError => 1 }) or die $DBI::errstr;
|
||||
|
||||
my $sth = $dbh->prepare ("SELECT Z_PK,ZCRYPTOITERATIONCOUNT,ZCRYPTOSALT,ZCRYPTOWRAPPEDKEY FROM ZICCLOUDSYNCINGOBJECT WHERE ZISPASSWORDPROTECTED=1");
|
||||
|
||||
$sth->execute () or die $DBI::errstr;
|
||||
|
||||
while (my $row = $sth->fetchrow_arrayref ())
|
||||
{
|
||||
printf ("\$ASN\$*%d*%d*%s*%s\n", $row->[0], $row->[1], unpack ("H*", $row->[2]), unpack ("H*", $row->[3]));
|
||||
}
|
||||
|
||||
$sth->finish;
|
||||
|
||||
$dbh->disconnect ();
|
||||
|
||||
exit (0);
|
||||
|
Loading…
Reference in New Issue
Block a user