Tag Archives: autenticação

BCrypt Salts, PHP and MySql

When my bcrypt hash is stored into the database it contains the salt and the hash together.
From my understanding is that the the salt contains $2a$ to define bcrypt and two digits as the work amount. (Ou seja, 10) Ele… Continue lendo

Tagged , , , | Deixe um comentário

Prevent sessions from expiring and causing errors

My question is more of a conceptual one, since I’m rather new to working with users and sessions.
My current setup is Codeigniter running with the Tank Auth user library
My problems I’m experiencing are, the users are being loggedContinue lendo

Tagged , , , | Deixe um comentário

Soap Authentication using Session IDs

I am building an API using Zend Soap and there has to be some sort of authentication to actually use the API. Also I don’t want the user credentials to be sent over the net each time a request isContinue lendo

Tagged , , , , | 1 Como

Simple SSO system like Google Identity Toolkit but without the locked UI?

The Google Identity Toolkit is awesome. So clean and easy to set up! Trouble is, it forces you to use its UI, which isn’t working for me. Is there anything else out there that will let the visitor click aContinue lendo

Tagged , , , , | Deixe um comentário

Força navegador PRS-T1 para baixar o arquivo com. Htaccess-autenticação

I have a php-download script that looks like this:

<?php
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename="$file"");
header("Content-Type: $mimeType");
header("Content-Transfer-Encoding: binary");
header("Content-Length: $size");
// 

Continue lendo

Tagged , , , , | Deixe um comentário

autenticação php: todo mundo tem acesso

Meu script de autenticação usado para trabalhar (Eu acho que) mas depois que eu instalei Kohana e alterou algumas coisas no apache meu script parou de funcionar.
Meu script php é muito simples:

function authentifizieren() {
    header('WWW-Authenticate: Basic realm="Test Authentication System"');
    header('HTTP/1.0 401 

Continue lendo

Tagged , , | Deixe um comentário

Dinâmica Apache autenticação via PHP

Gostaria de implementar um processo de autenticação dinâmica usando Apache e PHP.
Meu projeto atual é quebrar em duas partes:

Eu tenho um projeto rodando LAMP clássico, onde os usuários já tem uma senha de login / que eu uso para conceder-lhes… Continue lendo

Tagged , , , , | 1 Como

Facebook Autenticação da aplicação usando o SDK PHP

Atualmente estou tentando criar um aplicativo para Facebook tela e eu estou tentando obtê-lo para que o usuário tem de verificar que eles querem autorizar a aplicação antes de executar.
Eu estou tentando fazer isso com o PHP… Continue lendo

Tagged , , , | 2 Comentários

autenticação em iOS – você pode usar cookies de sessão /?

Eu gostaria de servir informações do PHP para um aplicativo para iPhone baseado em que o usuário está logado. Posso ir a rota sessão / cookie de autenticação de solicitações do aplicativo ou eu tenho que usar algum tipo de token de autenticação?… Continue lendo

Tagged , , | 1 Como
10 páginas