Debugging

Dane

Bug Types

Syntax Error

Runtime Error

Logical Error

Syntax Error

Typo or improper use of code.

Compiler or interpreter will alert you prior to execution.

ie. Missing colon for a definition

Syntax Error

#!/usr/bin/python3
# This program divides two numbers
# The function below calculates and returns the division result
def div(x,y,z)
	q = x/y
	return q
# Main portion of program to set up the problem
a = int(input("Enter the first operand: "))
b = int(input("Enter the second operand: "))
c = div(a,b)
print("\nYour answer is %d\n" % c)

Runtime Error

Illegal implementation of code or routine, though syntactically correct.

Caught during execution, program will immediately crash or exit.

ie. Wrong number of function arguments

Runtime Error

#!/usr/bin/python3
# This program divides two numbers
# The function below calculates and returns the division result
def div(x,y,z):
	q = x/y
	return q
# Main portion of program to set up the problem
a = int(input("Enter the first operand: "))
b = int(input("Enter the second operand: "))
c = div(a,b)
print("\nYour answer is %d\n" % c)

Logical Error

Execution completes without error, but behavior or results are unexpected.

ie. Wrong format string identifier

Logical Error

#!/usr/bin/python3
# This program divides two numbers
# The function below calculates and returns the division result
def div(x,y):
	q = x/y
	return q
# Main portion of program to set up the problem
a = int(input("Enter the first operand: "))
b = int(input("Enter the second operand: "))
c = div(a,b)
print("\nYour answer is %d\n" % c)

Input Validation

A user may type whatever they like into a keyboard.

If their input is of an unexpected form, errors may occur

ie. Failure to account for user malice

Input Validation

#!/usr/bin/python3
# This program divides two numbers
# The function below calculates and returns the division result
def div(x,y):
	q = x/y
	return q
# Main portion of program to set up the problem
a = int(input("Enter the first operand: "))
b = int(input("Enter the second operand: "))
c = div(a,b)
print("\nYour answer is %f\n" % c)

Code Analysis

White Box

Black Box

White Box

Source Code Review

Save My Restaurant

Some hacker has messed up my beautiful restaurant seating program!

Please, find all the bugs and make our business operational again!

White Box

Print Statements

White Box

Return to interpreter

python -i

White Box

Using a Debugger

White Box

Static Analysis

...on source code

Black Box

Static Analysis

...on binary

decompile .pyc files

Black Box

Fuzzing

Tom's Article

Discuss!