Have you checked the log files to see the actual error message?
Error 500 when trying to test input security
¡Hi!
Im having some trouble trying to make sure that all my inputs are secure.
Here's is the problem:
In my Laravel App, users can register and add some social media links to their profile.
Everything works great on my local testing server: When someone put something like this on any input <script>alert('hola');</script>its saves like this: <script>alert('hola');</script>, but never execute the script when i output because of the {{ thing }}, so its working great.
Now im running the App on a real server, and when i input <script>alert('hola');</script>i receive a 500 Internal Server Error and the script stops. All the App files are the same on my local and my server.
If i try to save <b>Hi</b> the app doesnt send error, but when i send <script> something </script>i receive the 500 advice.
Thanks a lot. If you need some code, i will update it.
Please or to participate in this conversation.