fireproofsocks
Given a particularly devious S3 object key, e.g.
"users/f8db13a0-e2b8-45cd-a902-5eede074eb46/~*\\|:\"<> +`!@#$%^&()-=_[]{};',.?š§Ŗ//fakedata~*\\|:\"<> +`!@#$%^&()-=_[]{};',.?š§Ŗ.txt"
Iām running into HTTP 505 errors from the ExAws client, e.g.
bucket
|> ExAws.S3.head_object(object_key)
|> ExAws.request()
I can see the objects there if I run ExAws.S3.list_objects/2 or ExAws.S3.list_objects_v2/2
A python script uploaded the file (probably using official boto), but Iām failing to retrieve it.
Frustratingly, the AWS docs about 5xx errors do not mention 505 errors anywhere. There are few other mentions of this error (e.g. this one).
Because Iām able to interact with other ānormally namedā objects in the same bucket, the culprit is likely the weird object key. Has anyone else encountered this? Is this perhaps a bug in ExAws.S3?
Trending in Questions
Hey guys,
Iāve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
Iām seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, Iāve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rustās ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
This key contains values that are to be avoided according to the AWS docs Naming Amazon S3 objects - Amazon Simple Storage Service. I donāt expect ExAws.S3 is going to do a good job handling characters that AWS S3 itself says not to use.
al2o3cr
The 505 error code is defined by RFC2616 as āHTTP Version Not Supportedā.
My guess is that this error is being triggered by the unescaped space character in that key - the request would look something like
so the part of the key after the space is being interpreted as the requested HTTP version, and the S3 server is replying with a 505 because it looks for
<method> <url> <version>.fireproofsocks
For sure, these are intentionally problematic keys, but they do represent possible values, and we canāt control what files the Python users might lob our way.
fireproofsocks
This seems plausible ā some of the other posts Iāve found describing similar errors seem to have something to do with spaces and encoding. Iām not sure how to escape the space in this case⦠adding a backslash or replacing it with
+didnāt seem to work. Thoughts?Iām definitely feeling like the better option is to just reject any file names like that in our app. Even if they were ālegitimatelyā created elsewhere (e.g. using
boto), our app canāt handle them in any practical sense.al2o3cr
IIRC the
+-as-space escape sequence only works in query strings; try%20insteadLostKobrakai
I fixed some encoding in ex_aws a few month ago around encoding spaces, which didnāt work with minio. Maybe thatās related: Use percent encoding instead of www form for header by LostKobrakai Ā· Pull Request #184 Ā· ex-aws/ex_aws_s3 Ā· GitHub
evadne
The proper fix/workaround is to store objects with GUID keys in S3 only (actual file name stored in database) and then use content-disposition to emit correct file names later.
As @LostKobrakai discussed, you can consider sanitising/encoding the characters or changing them to hex representation, however there is no standardised way to pass string literal within JSON & there may be significant work required to handle these files.
I think only place in ex_aws to change would be to do this encoding/decoding transparently (as breaking change) in
ExAws.Operation.S3.add_bucket_to_path/2or maybe ratchet up a step and use XML for outgoing requests (so you get proper string literals that can represent the object names you need), however as it would create such huge support burden for the maintainers + is already discouraged by AWS + would encourage further bad application design, I donāt think it will be considered AT ALLSo my best suggestion is to change design as previously mentioned to obviate the need of this rigmarole. It is also the right thing to do, if you could sanitise the names with some kind of URI encoded string and avoid a whole class of security bugs⦠such as user putting a file name that effectively results in a path traversal exploit. The bigger the attack surface the more bigger your risk.