-
Edited Cryptography
Hi All, am trying to use build a secure login page. I have written necessary functions and the registrations works fine (with secure hash + salt passwords created) but the … -
Created Cryptography
Hi All, am trying to use build a secure login page. I have written necessary functions and the registrations works fine (with secure hash + salt passwords created) but the … -
Created Keep prompting for values until -1
Am trying to write a c program to do the following; • Write on the screen: ``Please enter a positive number: ''. • Accept a number from the user. • … -
Replied To a Post in Am i vulnerable, Where?
Thanks guys, though am trying to put things together. Got some more help from a friend and he talked about "unlink technique" Does that show up any where on the … -
Marked Solved Status for What's wrong with this code
Hi all, trying to read up on C to get acquainted with the language. Got an exercise am trying to answer and i may need your help to know if … -
Replied To a Post in What's wrong with this code
Thanks all for your contributions -
Created Am i vulnerable, Where?
#include <stdlib.h> #include <string.h> int main(int argc, char *argv[]) { char *first, *second, *third; first = malloc(888); second = malloc(22); third = malloc(22); strcpy(first, argv[1]); strcpy(second, argv[2]); free(first); free(second); free(third); … -
Created What's wrong with this code
Hi all, trying to read up on C to get acquainted with the language. Got an exercise am trying to answer and i may need your help to know if …
The End.