There is a string that is hashed md5 ()
md5($salt + /* ASCII код */ + $second_salt);
As I understood using the ASCII code 0x7F (CMD - DEL) we can delete $salt , but how to implement it I don’t understand what we need to insert in order for us to delete $salt

  • Oh, most likely not DEL, but BS 0x08 - nameisusselesinfo
  • You can edit your question) - Suvitruf pm
  • @Suvitruf I'm just not sure until now exactly how this will work) - nameisusselesinfo
  • one
    In php, strings are concatenated with the "dot" operator, not + , so your expression will take md5 (0) anyway and the ascii control codes inside the strings do not work. they control only for the terminal. - Mike
  • @mike, I know, it meant how it turns out the string for hashing - nameisusselesinfo

0