• Member Avatar for Netcode
    Netcode

    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 …
  • Member Avatar for Netcode
    Netcode

    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 …
  • Member Avatar for Netcode
    Netcode

    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. • …
  • Member Avatar for Netcode
    Netcode

    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 …
  • Member Avatar for Netcode
    Netcode

    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 …
  • Member Avatar for Netcode
    Netcode

    Replied To a Post in What's wrong with this code

    Thanks all for your contributions
  • Member Avatar for Netcode
    Netcode

    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); …
  • Member Avatar for Netcode
    Netcode

    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.