ZEND_DB_TABLE_ABSTRACT 方法 SQL 注入

发布于 2025-01-07 17:25:40 字数 635 浏览 0 评论 0原文

是否可以通过sql注入ZEND_DB_TABLE_ABSTRACT方法?

例如

 $this->insert();

编辑以获得更清晰的解释

帖子值为:

'username' = 'admin';

'password' = '1;Drop table users;'

这是控制器中的插入语句:

public function InsertAction() {
    $postValues =   $this->_request->getPost();
    $usersTable = new Application_Models_DbTable_Users();
    $username = $postValues['username'];
    $password = $postValues['password'];
    $data = array('username'=>$username,'password'=>$password);
    $users->insert($data);
}

Is it possible for to sql inject a ZEND_DB_TABLE_ABSTRACT method?

like for example

 $this->insert();

edit for a more clearer explanation

Post values are :

'username' = 'admin';

'password' = '1;Drop table users;'

Here is the insert statement in the controller:

public function InsertAction() {
    $postValues =   $this->_request->getPost();
    $usersTable = new Application_Models_DbTable_Users();
    $username = $postValues['username'];
    $password = $postValues['password'];
    $data = array('username'=>$username,'password'=>$password);
    $users->insert($data);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娇俏 2025-01-14 17:25:40

是的,这是可能的,但在 insert() 的通常使用中这是不可能的。除非您使用 Zend_Db_Expr,否则应该是安全的,因为 insert() 使用准备好的语句。

有关其他信息,请参阅 Bill Karwin 的这篇文章方法和细节。

Yes, it is possible, but in the usual uses of insert() it's not probable. Unless you are using Zend_Db_Expr, you should be safe, because insert() uses prepared statements.

See this post from Bill Karwin for other methods and details.

梓梦 2025-01-14 17:25:40

查看 Zend 的手册 Zend_Db_Table

它会告诉你你可以创建你自己的方法。

Check the manual of Zend Zend_Db_Table

It will show you who you can create your own method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文