AppSec 101: What Every Developer Should Know (but No One Teaches)Imagine a civil engineer designing bridges without learning about load stress or failure points.Now imagine a computer science graduate who’s never been taught how to write secure code.The result?A breach waiting to happen.Yet, most devs graduate wit...Jul 1, 2025·4 min read
To display greatest number from given array element;To display greatest number from given array element section .data msg db "Enter 5 numbers to find maximum:" ,0xA len1 equ $-msg msg1 db "Maximum number in the array is:" ,0xA len2 equ $-msg1 ; Counter for looping cnt db 05h ; Initialize 'al' and...May 14, 2023·3 min read
To display length of the StringAssignment02 Assembly Programming Write an X86/64 ALP to accept a string and to display its length. ;To display length of the String section .data msg db "To display length of the String",0xA len equ $-msg msg1 db "Enter a string:" ,0xA len1 equ $-...May 14, 2023·4 min read
Assembly Program to Input 5 numbers and print them.01Assignment Assembly Programming Write an X86/64 ALP to accept five 64 bit Hexadecimal numbers from the user and store them in an array and display the accepted numbers. section .data msg1 db "Program to accept 5 numbers and print them!",0xA ; messa...May 14, 2023·4 min read