169 похожих чатов

<?Php $Pass = $argv[1]; $hash = 'weird hash here'; $confirm = password_verify($pass, $hash)

? true : false;
echo $confirm;
?>

5 ответов

12 просмотров

Sorry this is late. If you haven't found a solution yet and don't mind a different dependency. I just came across the setup guide for portainer which suggests using htpasswd to set a password. http://kutt.jlisher.com/htpasswd You can use -B -C 10 options to set the behaviour to be similar to PHP's default. You can also specify your own hash file, example: #!/bin/bash ## create a password in a new file htpasswd -cbB -C 10 ./.user.htpasswd user password ## verify password htpasswd -bv ./.user.htpasswd user password

Jarryd Lisher
Sorry this is late. If you haven't found a solutio...

i didn't want to use files exactly, i wanted to compare strings and hashes without files

B҉a̸͔tͥ̄ͅc͞h̢͊4̾̄̕2͗0̤̩ (G0J1R4)
i didn't want to use files exactly, i wanted to co...

The file format is rather simple, using the following format: username:password_hash. So you would look at creating a short lived file just for the validation then deleting it after. Not very elegant, but it could work as a not too complex solution.

Похожие вопросы

Обсуждают сегодня

а через ESC-код ?
Alexey Kulakov
29
30500 за редактор? )
Владимир
47
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
13
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
в JclConsole объявлено так: function CtrlHandler(CtrlType: DWORD): BOOL; stdcall; - где ваше объявление с stdcall? у вас на картинке нет stdcall
Karagy
8
Ребят в СИ можно реализовать ООП?
Николай
33
program test; {$mode delphi} procedure proc(v: int32); overload; begin end; procedure proc(v: int64); overload; begin end; var x: uint64; begin proc(x); end. Уж не знаю...
notme
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта