TryHackMe: LDAP Injection

TryHackMe: LDAP Injection
Understanding LDAP and its Role in Directory Services LDAP (Lightweight Directory Access Protocol) is a protocol used for querying and managing directory services over a network. It enables c...
0 Read More

TryHackMe: ORM Injection

TryHackMe: ORM Injection
What is ORM? Object-relational Mapping (ORM) is a programming technique that facilitates data conversion between incompatible systems using object-oriented programming languages, serving as a...
0 Read More

Prime Numbers Till N!

Prime Numbers Till N!
Written Code!! ⛶import java.util.Scanner; public class Main{ public static int is_prime(int num){ if(num<=0){ return 0; } if(num==1){ return 0;...
0 Read More

Tagged Template Literals on Template

Angular 20 will support tagged template literals in components and templates. The feature is in 20.0.0-next.1; therefore, it can be tested after updating the Angular dependencies to the next version. ...
0 Read More

VIM is gem!!

VIM is gem!!
What is VIM? Basically, VIM will help you to code faster than you think, by using some commands. If you learn VIM, it's an advantage while competing with others, as well as it will increase your produ...
0 Read More