Logic Flaws basically.
a class of issues where the application's core functions are used in unintended ways. instead of conventional way of breaking things or directly exploiting technical weaknesses, logic vulnerabilities are about twisting the application's rules against itself.
failing to anticipate unusual application states that may occur and, consequently, failing to handle them safely
common in overly complicated systems
Providing an encryption oracle
Its when an application provides a service that encrypts user-controlled input and returns the resulting ciphertext to the user. Its a vulnerability when ciphertext can be used elsewhere in the application, especially if other parts of the application expect input encrypted with the same algorithm and key.
Email address parser discrepancies
inconsistent handling of email addresses in different parts of an application. Attackers can use encoding and formatting tricks to bypass validation checks, leading to unauthorized access or privilege escalation.