Write a function that checks if a given binary search tree contains a given value [on hold]

I want to write a function that checks if a given binary search tree contains a given value.

For example, for the following tree:

n1 (Value: 1, Left: null, Right: null)
n2 (Value: 2, Left: n1, Right: n3)
n3 (Value: 3, Left… Continue reading Write a function that checks if a given binary search tree contains a given value [on hold]

When writing an API an that connects to the database, what information is sensitive and should be protected?

I am on a team that is writing a .NET Core API to service a desktop application. This application used to manage its own database connection through an OracleConnection, and all the values used to connect to the database, inc… Continue reading When writing an API an that connects to the database, what information is sensitive and should be protected?

What are some examples of managed language exploits and where can I learn more?

I’m a software developer who mainly programs in C# and C. I’m currently studying to transition into InfoSec related development. Most learning resources on exploiting that I’ve found, both online and physical books, seem to f… Continue reading What are some examples of managed language exploits and where can I learn more?