File psi-0.12-remote-overflow.patch of Package psi
--- cutestuff/network/socks.cpp +++ cutestuff/network/socks.cpp @@ -261,7 +261,8 @@ return -1; if(from->size() < 2) return 0; - int num = from->at(1); + unsigned char mlen = from->at(1); + int num = mlen; if(num > 16) // who the heck has over 16 auth methods?? return -1; if(from->size() < 2 + num)