検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 148 for username (0.030 sec.)
Request Injection Attacks 10244
« Security Script Injection Attacks » PHP Manual Security Request Injection Attacks Request Inje ... nformation with the request http://www.example.com?username=bob . Your application creates the query $q = new ... \MongoDB\Driver\Query( [ 'username' => $_GET['username'] ]) . Someone could subvert t ... his by getting http://www.example.com?username[$ne]=foo , which PHP will magically turn into an a ... your query into $q = new \MongoDB\Driver\Query( [ 'username' => [ '$ne' => 'foo' ] ] ) , which will return all ...
https://man.plustar.jp/php/mongodb.security.request_injection.html - [similar]
ホスト公開鍵を使用して認証を行う 10162
« ssh2_auth_agent ssh2_auth_none » PHP Manual SSH2 関数 ホスト公開鍵を使用して認証を行う ssh2_au ... _auth_hostbased_file ( resource $session , string $username , string $hostname , string $pubkeyfile , string $ ... ivkeyfile , string $passphrase = ? , string $local_username = ? ): bool ファイルから読み込まれたホスト公開鍵を ... ect() のコールによって取得した SSH 接続リンク ID。 username hostname pubkeyfile privkeyfile passphrase もし pr ... です) 場合、パスフレーズを渡す必要があります。 local_username もし local_username を省略した場合、 username の値 ...
https://man.plustar.jp/php/function.ssh2-auth-hostbased-file.html - [similar]
ファイルシステムのセキュリティ 10162
« セッションのセキュリティ Null バイト関連の問題 » PHP Manual セキュリティ ファイルシステムのセキ ... ユーザーのホームディレクトリからファイルを削除する $username = $_POST [ 'user_submitted_name' ]; $userfile = $_ ... [ 'user_submitted_filename' ]; $homedir = "/home/ $username " ; unlink ( " $homedir / $userfile " ); echo "ファ ... イルは削除されました!" ; ?> username および filename はユーザーフォームから投稿可能であ ... るため、別の username および filename を投稿して 削除すべきではない削除す ...
https://man.plustar.jp/php/security.filesystem.html - [similar]
Script Injection Attacks 9598
« Request Injection Attacks MongoDB\Driver » PHP Manual Security Script Injection Attacks Script ... MongoDB \ Driver \ Manager ; // Don't do this!!! $username = $_GET [ 'field' ]; $cmd = new \ MongoDB \ Driver ... \ Command ( [ 'eval' => "print('Hello, $username !');" ] ); $r = $m -> executeCommand ( 'dramio' , ... MongoDB \ Driver \ Manager ; // Don't do this!!! $username = $_GET [ 'field' ]; // $username is set to "'); d ... B \ Driver \ Command ( [ 'eval' => "print('Hello, $username !');" ] ); $r = $m -> executeCommand ( 'dramio' , ...
https://man.plustar.jp/php/mongodb.security.script_injection.html - [similar]
SSH 上でプレーンなパスワードを使用した認証を行う 8953
« ssh2_auth_none ssh2_auth_pubkey_file » PHP Manual SSH2 関数 SSH 上でプレーンなパスワードを使用 ... 明 ssh2_auth_password ( resource $session , string $username , string $password ): bool SSH 上でプレーンなパスワ ... ect() のコールによって取得した SSH 接続リンク ID。 username リモートのユーザー名。 password username のパスワー ... ' , 22 ); if ( ssh2_auth_password ( $connection , 'username' , 'secret' )) { echo "Authentication Successful!\ ... 関連キーワード: パスワード , 認証 , 使用 , auth , username , 関数 , session , string , パラメータ , 成功 ...
https://man.plustar.jp/php/function.ssh2-auth-password.html - [similar]
マジックメソッド 8883
« オブジェクトの反復処理 finalキーワード » PHP Manual クラスとオブジェクト マジックメソッド マジ ... ass Connection { protected $link ; private $dsn , $username , $password ; public function __construct ( $dsn , ... $username , $password ) { $this -> dsn = $dsn ; $this -> use ... rname = $username ; $this -> password = $password ; $this -> connect ... $this -> link = new PDO ( $this -> dsn , $this -> username , $this -> password ); } public function __sleep ( ...
https://man.plustar.jp/php/language.oop5.magic.html - [similar]
Opens a connection 8800
« Stomp::commit Stomp::__destruct » PHP Manual Stomp Opens a connection Stomp::__construct stomp ... er = ini_get("stomp.default_broker_uri") , string $username = ? , string $password = ? , array $headers = ? ) ... er = ini_get("stomp.default_broker_uri") , string $username = ? , string $password = ? , array $headers = ? ): ... t Message Broker. パラメータ broker The broker URI username The username. password The password. headers 追加の ... 連キーワード: Opens , connection , string , broker , username , construct , ヘッダ , default , array , 手続き ...
https://man.plustar.jp/php/stomp.construct.html - [similar]
Secure Shell 2 8472
« phar:// rar:// » PHP Manual サポートするプロトコル/ラッパー Secure Shell 2 ssh2:// ssh2:// — S ... cipher, compression, および MAC methods callbacks username 接続するユーザー名 password パスワード認証に使用す ... e.com' , 22 ); ssh2_auth_pubkey_file ( $session , 'username' , '/home/username/.ssh/id_rsa.pub' , '/home/usern ... e.com' , 22 ); ssh2_auth_pubkey_file ( $session , 'username' , '/home/username/.ssh/id_rsa.pub' , '/home/usern ...
https://man.plustar.jp/php/wrappers.ssh2.html - [similar]
SSH の認証を、ssh agent を使って行う 8237
« SSH2 関数 ssh2_auth_hostbased_file » PHP Manual SSH2 関数 SSH の認証を、ssh agent を使って行う ... 説明 ssh2_auth_agent ( resource $session , string $username ): bool SSH の認証を、ssh agent を使って行います。 ... 続リンク ID。 ssh2_connect() を呼んで取得したもの。 username リモートのユーザー名。 戻り値 成功した場合に true ... com' , 22 ); if ( ssh2_auth_agent ( $connection , 'username' )) { echo "Authentication Successful!\n" ; } else ... 連キーワード: agent , 認証 , auth , 関数 , session , username , libssh , 成功 , リモート , 取得 ...
https://man.plustar.jp/php/function.ssh2-auth-agent.html - [similar]
"none" として認証する 8155
« ssh2_auth_hostbased_file ssh2_auth_password » PHP Manual SSH2 関数 "none" として認証する ssh2_ ... 説明 ssh2_auth_none ( resource $session , string $username ): mixed 通常失敗する(そしてそうあるべき)"none" ... ect() のコールによって取得した SSH 接続リンク ID。 username リモートのユーザー名。 戻り値 もしサーバーが usern ... ?> 関連キーワード: none , 認証 , auth , メソッド , username , 関数 , 取得 , session , 失敗 , サーバー ...
https://man.plustar.jp/php/function.ssh2-auth-none.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT