Skip to main content

Microsoft Security Updates

Microsoft Releases Advance Notification for October Security Bulletin

Original release date: October 8, 2009 at 4:59 pm
Last revised: October 8, 2009 at 4:59 pm


Microsoft has issued a Security Bulletin Advance Notification
indicating that its October release cycle will contain thirteen
bulletins, eight of which will have a severity rating of Critical. The
notification states that these Critical bulletins are for Microsoft
Windows, Internet Explorer, Office, Silverlight, SQL Server, Developer
Tools, and Forefront. There will also be five important bulletins for
Microsoft Windows. Release of these bulletins is scheduled for
Tuesday, October 13.

US-CERT will provide additional information as it becomes available.

Relevant Url(s):
http://www.microsoft.com/technet/security/bulletin/ms09-oct.mspx

Comments

Popular posts from this blog

Zenclouds October Promotion - Malaysia VPS Hosting

For those who are not familiar with what Zenclouds.com is , check this out : Zenclouds subsidiary of Art In Software Sdn Bhd is an industry-leading, privately virtual private server hosting and software services provider with headquarters in Malaysia. Since 2003, the company has provided businesses worldwide with reliable, high-capacity networks to host websites, email, business applications, video and other modern, rich-media content. Zenclouds evolve in one year of research and development mainly focus on Control Panel for managing virtual private server. Zenclouds integrate between Xen technologies and our own Control Panel to ease our customer managing multiple server with different Data Center with one control panel. Zenclouds integrates the industry's best technologies for each customer's specific need and delivers it as a service via the company's commitment and support. For this upcoming October you can win and own a brand new iPod Shuffle, Nano and Touch when y...

Building a KVM Proxy

Traditionally we seldomly connect our KVM from the port directly to the server that consists of usb for keyboard and mouse, vga cable for display purposes. More advanced you may have an experience using the iKVM which connect all you kvm port from the internet where you can have a remote location as long as you have the internet connection. When technology evolve, physical server are becoming obsolete since we have the virtualization technology. Since that to access your virtual machine (vm) are more easier. Instead of using SSH, like a Xen hypervisor, the Xen itself can host as a KVM server and map to the vm on different port as configured from the config file.

Sqlite3 101 - Know your table structure.

I commonly not used to manage any sqlite database but in situation that you've to do.. than you've to do that! Ok there's a new server that comes up for the development and I've missing the table of my sqlite database for the application. So how we gonna create the database ? It's quite simple. I've a server that already configured the database previously. #sqlite3 database.db "select * from sqlite_master"; then it will show the database structure which you can want to create. table|bandwidth|bandwidth|2|CREATE TABLE bandwidth (id INTEGER PRIMARY KEY,name text,created text,start real,end real) Noted for myself.