Archive for June, 2010


This problem is being actively used by the “bad guys” and wasn’t found until it was being used to attack machines.  There is no patch yet..and there’s no easy way to get around this issue.  The best thing you can do is delete the .dll file that causes this issue.  in any version of windows use the search tool to search for authplay.dll.  Once it comes up delete it.  This kills swf file handling and will cause flash and acrobat to crash when swf files are encountered but it at least doesn’t allow this file to act as a gateway to remotely take over your system.  Watch this space as i will post when patches are available.  Updated anti-virus programs are just beginning to detect it..but more variants will come to get around this.

Adobe – Security Advisories: Security Advisory for Flash Player, Adobe Reader and Acrobat.

I logged into a client’s machine today and saw this one sharepoint file was over 7 gigs in size. I am thinking this is one reason sharepoint has been pokey as of late. Some googling showed me that by default MS basically has the database in debug(which means every little thing is logged no matter what). That’s good for diagnostics but it makes the database get bloated to the point it kills performance. I found this MS page about the issue.

here are the instructions as noted in the article:

To reduce the size of the log file, use the following steps. A full server backup is recommended first.

1. Open notepad and Copy and paste the following text into notepad. Save the file as c:\logshrink.sql

declare @ConfigDB varchar(255);
declare @ConfigDBLog varchar(255);
declare @ConfigDBCmd varchar(255);
select @ConfigDB = name from sys.databases where name like ‘SharePoint_Config_%’;
set @ConfigDBCmd = ‘BACKUP database [' + RTRIM(@ConfigDB) + '] to disk=”C:\windows\temp\before.bkf”’;
execute(@ConfigDBCmd);
set @ConfigDBCmd = ‘use [' + RTRIM(@COnfigDB) + ']‘;
execute(@ConfigDBCmd);
set @ConfigDBCmd = ‘BACKUP LOG [' + RTRIM(@ConfigDB) + '] WITH TRUNCATE_ONLY’;
execute(@ConfigDBCmd);
set @ConfigDBCmd = ‘use [' + RTRIM(@COnfigDB) + ']‘;
execute(@ConfigDBCmd);
select @ConfigDBLog = name from sys.database_files where name like ‘SharePoint_Config%_log’;
set @ConfigDBCmd = ‘use [' + RTRIM(@ConfigDB) + '] DBCC SHRINKFILE([' + RTRIM(@ConfigDB) + '_log],1)’;
execute(@ConfigDBCmd);
set @ConfigDBCmd = ‘BACKUP database [' + RTRIM(@ConfigDB) + '] to disk=”C:\windows\temp\after.bkf”’;
execute(@ConfigDBCmd);
go

2. Open an elevated command prompt and run the following command:sqlcmd -S \\.\pipe\mssql$microsoft##ssee\sql\query -E -i c:\logshrink.sql

I had to run it twice to get the file back down to a reasonable size.