作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Laravel 中创建 rest API。如何从 sql 注入(inject)中保护这样的 SQL 查询?
Route::get('api/restaurant/id/{id}', 'RestaurantController@getRestaurantById');
public function getRestaurantById($id) {
$restaurant = Restaurant::where('id', $id)->first();
return $restaurant;
}
最佳答案
如果您使用 laravel ORM 构建您的 sql 查询,您的查询会自动受到 sql 注入(inject)保护。
例如:
$restaurant = Restaurant::where('id', $id)->first();
dd(Restaurant::where('id', $id)->toSql())
你会看到 id 没有直接注入(inject)到查询中:
SELECT * FROM restaurants WHERE id = ?
DB::select()
运行 sql 原始查询。或
DB::raw()
... ETC。
DB::select('SELECT * FROM restaurants WHERE id = ?', [$id]);
Restaurant::whereRaw('id = ?', [$id])->first();
...
DB::raw('SELECT * FROM restaurants WHERE id = ?', [$id]);
Do not write queries like this
DB::select("SELECT * FROM restaurants WHERE id = $id");
This can be extremly dangerous for your app.
关于php - 如何从 Laravel 中的 SQL 注入(inject)中保护此 sql 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60332447/
我是一名优秀的程序员,十分优秀!