mirror of
https://github.com/github/codeql.git
synced 2026-06-12 08:21:09 +02:00
16 lines
927 B
XML
16 lines
927 B
XML
<sample>
|
|
<db pwd=""/> <!-- $ Alert[cs/empty-password-in-configuration] -->
|
|
<db pwd="foo"/> <!-- $ Alert[cs/password-in-configuration] -->
|
|
<db dwp=""/>
|
|
<db dwp="foo"/>
|
|
<db Password=""/> <!-- $ Alert[cs/empty-password-in-configuration] -->
|
|
<db Password="foo"/> <!-- $ Alert[cs/password-in-configuration] -->
|
|
<db drowssaP=""/>
|
|
<db drowssaP="foo"/>
|
|
<db connectionString="Driver=ODBCDriver;server=ODBCServer;"/>
|
|
<db connectionString="Driver=ODBCDriver;server=ODBCServer;pwd=;"/> <!-- $ Alert[cs/empty-password-in-configuration] -->
|
|
<db connectionString="Driver=ODBCDriver;server=ODBCServer;password=;"/> <!-- $ Alert[cs/empty-password-in-configuration] -->
|
|
<db connectionString="Driver=ODBCDriver;server=ODBCServer;pwd=foo;"/> <!-- $ Alert[cs/password-in-configuration] -->
|
|
<db connectionString="Driver=ODBCDriver;server=ODBCServer;password=foo;"/> <!-- $ Alert[cs/password-in-configuration] -->
|
|
</sample>
|