まず、Pentium3 850MHzほど + 256MByte + Windows XP +
100BaseのLANポートのマシンを用意。
それに対して、攻撃を加えたのが自分のマシン2台と
Pentium4 2.8C GHz + 1GByte + Windows XP + 1000Base
Core2 Duo 2.0GHz + 2GByte + Windows Vista + 1000Base
友人のマシン2台(Core2、Athlon 64)、共用で
置いてある1台(Pentium4)で攻撃を加えた。
よくよく考えてみると、攻撃対象以外、全部1000Baseに対応してるな。
あと、経路自体も1000Baseに対応しているので、これはひどい攻撃。
■Windows Live Messenger Addinでセキュリティの制限をなくす - 2007年10月17日 18時33分30秒
Windows Live Messenger AddinでAddinを作る際に、ネットワークに
アクセスしたり、ファイルアクセスしたりすると.NET Frameworkのコードアクセス
セキュリティによって、例外が発せられ、次のようなエラーが出てしまう。
Coding4Fun : Building your own Windows Live Messenger Events Agent
http://blogs.msdn.com/coding4fun/archive/2007/03/08/1837770.aspx
----- 引用開始 -----
Add-ins run under Code Access Security (CAS) and are not allowed to call any web service.
Since our primary purpose is to work with Windows SharePoint Services web services,
we need to override this behavior. We can achieve that by installingthe assembly in the
Global Assembly Cache (GAC); assemblies deployed in GAC must be Strong-Named Assemblies.
To digitally sign the assembly, go to Project Properties > Signing > Sign the assembly
and check the box; choose or create a new strong name key file.
To install the assembly in the GAC you should use the developer tool named gacutil which is
easily available in the Visual Studio 2005 Command Prompt. I used the build events to automatically
install my assembly: go to Project Properties
(in C#) or Project Properties > Compile (in VB) > Build Events > Post-build event
command line and enter "$(DevEnvDir)....SDKv2.0Bingacutil.exe" /i "$(TargetPath)".
From now on, every time there is a successful build, the output assembly is automatically
installed in the GAC for you; be sure to compile the project at least once before
using the add-in with the messenger.
----- 引用終了 -----