 
Bugtraq mailing list archives
Re: Microsoft Access 97 Stores Database Password as Plaintext
From: banjo () squiz demon co uk (Billy Naylor)
Date: Fri, 12 Feb 1999 10:18:26 +0000
Or run a utility that wipes out free space on a daily basis. There are several that I have seen. I am not affiliated with Jetico other than a user, but I use their BestCrypt encrypted filesystem for Windows (which is a great product), and it comes with a utility to fry unused portions of your hard drive and other locations that could contain old data. The drive wiper is available as a seperate download and is free for noncomercial use. It's about $10 for the purchased version.
 Why pay money for something so simple ?
#!/usr/bin/perl
# cleanse.pl
# Sets empty disk space to zero
#
 # number of times to wipe the partition
 my $num = 10;
 my $count;
 my $x = 'x' x (1024 * 1024);
 for (0..$num) {
   if (open (FILE, '>'.$count++.'.clean')) {
     print FILE $x;
     close (FILE);
   }
   else {
     print "$_ ";
     qx|rm *.clean|;
     next;
   }
 }
sub END {
  qx|rm *.clean|;
}
# banjo
  1;
Current thread:
- Re: Microsoft Access 97 Stores Database Password as Plaintext, (continued)
- Re: Microsoft Access 97 Stores Database Password as Plaintext sozni () USA NET (Feb 08)
- Pine _again_ :) Chris Evans (Feb 08)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Stephen M. Milton (Feb 08)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Jim Paris (Feb 09)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Jim Paris (Feb 09)
 
- SECURITY: new wu-ftpd packages available (fwd) RHS Linux User (Feb 09)
- Re: SECURITY: new wu-ftpd packages available (fwd) Ronald Wahl (Feb 10)
- Pro/wuFTPD DoS (Was: Re: SECURITY: new wu-ftpd packages available Ken Williams (Feb 11)
 
 
- Re: Microsoft Access 97 Stores Database Password as Plaintext sozni () USA NET (Feb 08)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Billy Naylor (Feb 12)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Ian Smith (Feb 12)
- Applets listening on Sockets in Java Tim Wright (Feb 12)
- Applets listening on Sockets in Java Lincoln Stein (Feb 13)
- Re: Applets listening on Sockets in Java Tim Wright (Feb 15)
- Re: Microsoft Access 97 Stores Database Password as Plaintext Michael Nelson (Feb 12)


