Answer:
Smurf attack
Explanation:
In smurf attack is an attack of DDoS type, i.e., Distributed Denial of Service where a network request is broadcast to multiple systems but return IP address of the system sending the request is forged with the victim's IP address.
It is that type of DDoS attack where the Victim's system is flooded with spoofed ping packets. It left the system inoperable and is done by exploiting the Internet Control Message Protocol and IP of the system which is dangerous for both the sending end system and the victim's system.
B. This is not a good idea, you should always make the design out of only one material
Your issue is on line 19 in your if statement. In python, if you have more than one condition in an if statement, you have to explicitly mention it after the or.
Your if statement is
if again == "Y" or "y":
However, this will always return true because the second statement simply asks "y".
To correct this, simply change the if statement to:
if again == "Y" or again == "y":
This will correct your code.
Another thing to consider is to always convert a userinput (whenever possible) to one version, this can be accomplished in your code by converting "again" into one version by using the .lower function.
again = input("Would you like to draw a 3rd card? Y or N? ")
again = again.lower()
Hope this helps!
The PHP code is given below:
<h3>PHP code</h3>
if(isset($_REQUEST['login_btn'])){
$email = filter_var(strtolower($_REQUEST['email']),FILTER_SANITIZE_EMAIL); //strtolower changes email to all lower case
$password = strip_tags($_REQUEST['password']);
The remaining code is in the file attached.
Read more about PHP here:
brainly.com/question/27750672
#SPJ1