Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 57,410 points

arbpen

Favorite Answers34%
Answers1,237
  • Is the US in danger from DDOS attacks?

    I would appreciate it if you would share what I am writing here. Have you ever heard of a DDOS attack - it's a Distributed Denial Of Service. Basically, thousands of computer send simultaneous requests to a single server, and there are so many requests that the server is unable to respond, and has to shut down until the attack stops.

    How does this happen? Computers that are infected with zombie bots that have been programmed to attack when instructed by the programmer. These programs often call home to get instructions, or act like a Trojan Horse and have a date and victim embedded in their programming.

    I would hope that most people already have good virus protection, and malware protection, that should hopefully be able to spot these bots and kill them before they can do any harm. However, if you don't have virus protection (a lot of Mac owners are under the false impression that they are impregnable), or your virus definitions are out of date, or you are using high speed Internet without a hardware firewall or a software firewall, your computer could be a host for one of these bots. I would also recommend a software firewall that will alert you to any programs trying to make outgoing requests that are not on an allowed list.

    Why am I posting this? I am posting this because a server where two of my domains are hosted is under attack. This is the second DDOS attack within the past month. It's too late for poor server 45, but, it's not too late to make sure your computer is not hosting zombie bots.

    In 2007, Estonia was the victim of a DDOS attack that brought the country to its knees. That's an entire COUNTRY, not just a server. That's what I worry about. Although conventional warfare is nasty, a large scale DDOS attack on this country would severely cripple us - imagine not being able to get your email, surf the web, watch Netflix, text your friends and co-workers, and all the other things we now find essential. Making sure that your computer is secure, with the latest patches for all your software is a step in keeping our country safe.

    Please share this with your friends, family, co-workers and neighbors.http://my.opera.com/arbpen/blog/2012/08/10/ddos-wh...

    5 AnswersCivic Participation9 years ago
  • MySQL/ASP Error - PROCEDURE % can't return a result set in the given context?

    I am able to run this stored procedure on my local machine (WInXP SP3/MySQL 5.0.51b-community-nt) but I am getting an error on line 5 - "PROCEDURE sp_master_getstate can't return a result set in the given context" when running on the production server (MySQL 5.0.67-community).

    Procedure:

    CREATE PROCEDURE sp_master_getstate()

    BEGIN

    SELECT state_abbr FROM states ORDER BY id;

    END

    ASP code (line numbers added for clarifcation only):

    1 set oconn = Server Createobject("ADODB.Connection")

    2 oconn.open "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=myserver; DATABASE=mydb; UID=myuid; PASSWORD=mypw; OPTION=3"

    3 sql = "CALL sp_master_getstate()"

    4 set rs = createobject("ADODB.Recordset")

    5 rs.open sql, oconn

    6 rsarr = rs.getrows()

    7 rs.close

    8 set rs = nothing

    9 oconn.close

    10 set oconn = nothing

    11 for i = 0 to ubound(rsarr,2)

    12 response.write rsarr(0,j) & "<br>"

    13 next

    2 AnswersProgramming & Design1 decade ago