The product dereferences a pointer that it expects to be valid but is NULL.

Impact: DoS: Crash, Exit, or Restart
NULL pointer dereferences usually result in the failure of the process unless exception handling (on some platforms) is available and implemented. Even when exception handling is being used, it can still be very difficult to return the software to a safe state of operation.
Impact: Execute Unauthorized Code or CommandsRead MemoryModify Memory
In rare circumstances, when NULL is equivalent to the 0x0 memory address and privileged code can access it, then writing or reading memory is possible, which may lead to code execution.
Effectiveness: Moderate
c
/*routine that ensures user_supplied_addr is in the right format for conversion /
cjava...* IntentFilter filter = new IntentFilter("com.example.URLHandler.openURL"); MyReceiver receiver = new MyReceiver(); registerReceiver(receiver, filter);
java
javagoMedium