I need to write a script that will take some user input (supplied on a website) and then execute a Python script on a host via SSH. I'm
curious what the best options are for protecting against malicious
input in much the smae way as you sanitise SQL to protect against SQL injections.
I could do it either on the website itself or by doing it on the host machine.
If someone has any suggestions I'd appreciated it. If you need more information then please let me know.
I need to write a script that will take some user input (supplied on a website) and then execute a Python script on a host via SSH. I'm curious what the best options are for protecting against malicious input in much the smae way as you sanitise SQL to protect against SQL injections.
I could do it either on the website itself or by doing it on the host machine.
I'm thinking of using argparse but I'm aware it does not offer any protection itself.
If someone has any suggestions I'd appreciated it. If you need more information then please let me know.
Simon.
=
=
On 8/30/2024 3:18 PM, Simon Connah via Python-list wrote:
=
website) and then execute a Python script on a host via SSH. I'm curious = what the best options are for protecting against malicious input in much t=I need to write a script that will take some user input (supplied on a=
=
=
You should never, never, never "sanitize" SQL. Use prepared statements instead.
=
What kind of user input do you expect to get that would need to be "sanitized"? How are you going to use it such that malicious input might cause trouble? I hope you aren't planning to exec() it. Are you
expecting a user to send in a script and your server will execute it?
Better read up on sandboxing, then.
=
If you won't be exec()ing a script, then you can consider creating an
API where each method of the API can only do limited things, and only
with certain parameters not all of all them. The SSH message can include
the name of the method to use.
=
And follow what Peter Holzer wrote. Don't forget that quoting practices
are not the same between Windows and Linux.
=
machine.I could do it either on the website itself or by doing it on the host =
=
tection itself.I'm thinking of using argparse but I'm aware it does not offer any pro=
=
formation then please let me know.If someone has any suggestions I'd appreciated it. If you need more in=
=
Simon.=
=
-------------------------842b1bc04dbf1817b8a31b4d62dc2949--
https://mail.python.org/mailman/listinfo/python-list
=
=
On 2024-08-30 19:18:29 +0000, Simon Connah via Python-list wrote:
=
I need to write a script that will take some user input (supplied on a website) and then execute a Python script on a host via SSH. I'm=
curious what the best options are for protecting against malicious
input in much the smae way as you sanitise SQL to protect against SQL injections.
=
(Aside: Don't "sanitize" SQL. Use placeholders.)
=
I could do it either on the website itself or by doing it on the host machine.=
=
You will have to do it in the web site.
=
The SSH manual states:
=
| If supplied, the arguments will be appended to the command, separated =by
| spaces, before it is sent to the server to be executed.
=
So whether you call
ssh myhost print_args a b c
or
ssh myhost print_args a "b c"
in both cases exactly the same string will be sent to myhost, and it
won't have any chance to distinguish them.
=
So you will either have to filter ("sanitize") the arguments or properly quote them before invoking SSH.
=
If someone has any suggestions I'd appreciated it. If you need more information then please let me know.=
=
First, if there is any chance that your arguments can contain characters
with meaning to the shell (like an apostrophe in a name), get the
quoting correct. If you can, transmit those arguments in a different way (e.g. as input, maybe just nul-separated, may as JSON, or whatever).
=
That removes the SSH-specific problems. There may still be problems with
the python script on the host.
=
Then, do all the validation you can on the web server. Reject all
requests which aren't valid. But be sure to check against the relevant specifications, not your prejudices (You may not think that an
apostrophe in an email address is valid, but it is). Include meaningful
error messages (not just "input invalid"). Helping your legitimate users
is more important than slightly inconveniencing an attacker.
=
Sysop: | DaiTengu |
---|---|
Location: | Appleton, WI |
Users: | 991 |
Nodes: | 10 (1 / 9) |
Uptime: | 77:24:32 |
Calls: | 12,949 |
Calls today: | 3 |
Files: | 186,574 |
Messages: | 3,264,596 |