SEARCH RESULTS
 
Showing 1-10 of 313 records
 
Expand article

5,000 Health Net employees affected by stolen laptop

The Article has images
2008-01-05 19:04:59 by Evan Francen in The Breach Blog
...Net Contractor/Consultant/Branch Unnamed Victims Connecticut Health Net employees and health-care providers Number Affected About 5,000 employees and "an undisclosed number of health-care providers outside the Northeast Types of Data Names and Social Security numbers Breach Description A laptop computer containing personal information...
 
 
 
 
 
Expand article

Simulating Email in .NET

The Article has images
2008-08-01 13:59:01 by keith-brown in Security Briefs
...Net.Mail to send mail. Instead, use the default ctor for SmtpClient as I've done in the code below static void Main( string [] args) { // note the use of the MailAddress class // this allows me to specify display names as well as email addresses MailAddress from = new MailAddress( "admin@fabrikam.com" , "Fabrikam Website" ); MailAddress to =...
 
 
 
 
 
Expand article

New Audio comment line number - +1-415-830-5439 (and ditching K7.net)

2007-12-19 11:03:29 by HASH0x89eb6f0 in Blue Box: The VoIP Security Podcast
 
...net call-in number for comments: +1-206-350-7280. That isn't the bad part, really... what annoys me most is that the number still appears to work! You can call it up and leave a message, but if it goes anywhere, it is not going to us! In the past, when we've lost our K7 number, the number has been inactive to some period of time, so callers...
 
 
 
 
 
Expand article

New Audio comment line number - +1-415-830-5439 (and ditching K7.net)

2007-12-19 12:01:39 by Dan York in Blue Box: The VoIP Security Podcast
 
...net call-in number for comments: +1-206-350-7280. That isn't the bad part, really... what annoys me most is that the number still appears to work! You can call it up and leave a message, but if it goes anywhere, it is not going to us! In the past, when we've lost our K7 number, the number has been inactive to some period of time, so callers...
 
 
 
 
 
Expand article

Adding webwise.net into the CNI

2008-04-05 14:13:01 by Richard Clayton in Light Blue Touchpaper
 
...Network engineers are used to designing out single points of failure . Thus, for example, the BT schematics obtained by The Register show parallel systems and cross-coupling of components, so that a single failure will not take out the system. Add in the fact that what are apparently single machines will almost certainly be clusters fronted...
 
 
 
 
 
Expand article

Comcast.net not Hacked, DNS Records Hijacked

The Article has images
2008-05-30 07:58:46 by Dancho Danchev in Dancho Danchev's Blog - Mind Streams of Information Security Knowledge
...net , and consequently, redirect traffic to third-party servers, which in this incident only served a defaced-looking like page, and denied email services to Comcast's millions of email users for a period of three hours The message they appear to have left at the first place, is actually hosted on third-party servers and reads KRYOGENIKS...
 
 
 
 
 
Expand article

DDoS Packets are Two Percent of Net Traffic, Report Says

2008-04-02 18:00:00 by Threat Level in Wired Security
 
Internet flood attack traffic accounts for two percent of the net's traffic, according to a recent study by a security firm. That's more than email, but does it mean the net is at risk
 
 
 
 
 
Expand article

ASP.NET Health Monitoring doesn't log inner exception stack trace

2008-08-01 16:21:00 by keith-brown in Security Briefs
 
...NET's health monitoring system does list the inner exceptions (apparently up to a maximum depth of two, from spelunking the code with reflector ), but it does not emit the stack traces for these exceptions, which would be really helpful . I've spent some time this morning trying to figure out how I'd customize things to emit this, and it...
 
 
 
 
 
Expand article

Better exception reporting in ASP.NET

2008-08-01 20:30:05 by keith-brown in Security Briefs
 
...NET health monitoring doesn't output stack traces for inner exceptions, which can be problematic due to its heavy reliance on reflection. I spent the morning doing some further spelunking with reflector , and my first solution was to implement a custom WebEvent that overrides ToString() to format itself with all of the data I care about. I...