shahryarjb
How to prevent LIKE-injections
Hello, I have read the Ecto query and I see this line:
You should be very careful when allowing user sent data to be used as part of LIKE query, since they allow to perform LIKE-injections.
and Im afraid of this line because I don’t know Postgress without Ecto and how can I prevent LIKE-injections, Do I need to sanitize the like input like use regex? or my sample code doesn’t need anything and it is right?
my code:
def search_codes(sub_brand_id, pagenumber, search_term) do
search_string = "%#{search_term}%"
query = from u in ErrorSchema,
join: c in assoc(u, :error_brands),
join: j in assoc(u, :error_sub_brands),
join: g in assoc(u, :error_categories),
where: u.status == true,
where: u.sub_brand_id == ^sub_brand_id,
where: ilike(u.title, ^search_string),
or_where: ilike(u.error_code, ^search_string),
order_by: [desc: u.inserted_at],
select: %{
id: u.id,
title: u.title,
short_description: u.short_description,
seo_alias_link: u.seo_alias_link,
brand_image: c.image,
brand_title: c.title,
brand_id: c.id,
category_title: g.title,
category_id: g.id,
model_title: j.title,
model_id: j.id
}
Repo.paginate(query, %{page: pagenumber, page_size: 20})
end
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 16 Posts
LostKobrakai
There’s a link in the docs describing the problem and an example solution in ruby, which basically does a regex replace of
/([\%_])/with\\1.1player
AFAIK the vulnerability lies not in an attacker being able to craft arbitrary SQL, since the input value is being quoted by Ecto, but some LIKE patterns can be quite heavy on the database and cause DoS if used maliciously.
Have a look here: LIKE injection - The GitHub Blog
In short, you might want to quote or strip the wildcard characters before passing them to Ecto.
shahryarjb
is there sample code with elixir ?, why do 2
/([\%_])/ with \\1regex exist ? regex has a input!!OvermindDL1
Plus in most cases
LIKEis the wrong tool for the job, postgresql has a fantastic language-knowing full-text search system that is easy to use and much better and faster than LIKE.shahryarjb
I wanted yo use full-text search, but Ecto has no function for this!! and I don’t know how to write postgress
OvermindDL1
Ah but Ecto does, that’s the
fragmentcall.Like I have a line in my code of
fragment("to_tsvector(?) @@ to_tsquery(?)", ...args...), pretty simple overall, and postgres’ docs on it are fantastic. If you need speed don’t forget to add an index for it.amnu3387
You can create a migration for adding a tsv field to your table, as in the following example:
This will create a tsv field and populate it from the existing field
full_nameand also index it. It then creates a trigger so that whenever you insert or update an existing record, it recomputes the ts vector.Then you can define a macro, e.g.:
I also have a helper function to split text input into a tsvector sequence, which also replaces invalid characters (only for my use case you might need a different set)
And I use it, similarly to:
shahryarjb
would you mind showing your schema and cast table for
add :full_name_tsv, :tsvector? pleasamnu3387
I don’t manipulate the tsv field at the app level so I just don’t cast it in the change sets, since I set the trigger at the db level to re-update the
full_name_tsv.For the field type in the schema definition you need to create a simple wrapper. In my case I don’t do anything at all with it.
And then,
field :full_name_tsv, TSVectorTypefabian
LIKE and the Postgres fulltext search have some important differences, you should carefully consider what you actually need. The fulltext search processes the text and e.g. by default removes the ending of words (stemming) and also removes certain special characters.
You can speed up LIKE queries with a trigram index, speed is not necessarily a reason to use the fulltext search. It really depends on what kind of searches you want to allow.