暂无图片
暂无图片
2
暂无图片
暂无图片
暂无图片

【译】postgresql 扩展工具 sql执行系统shell的扩展pg_remote_exec

原创 贾勇智 2022-03-29
634

sql执行系统shell的扩展pg_remote_exec

原文地址

https://github.com/cybertec-postgresql/pg_remote_exec

原文作者

kmoppel Kaarel Moppel

cybertec-postgresql

13.1 概述

该扩展提供了 2 个函数(pg_remote_exec、pg_remote_exec_fetch),可以在用于启动 PostgreSQL 服务器的用户下,在服务器 shell 上“按原样”执行用户提供的输入文本。

**警告!**调用函数的用户不必是“超级用户”,因此很容易造成极端伤害。仅适用于特殊用例。

13.2 提供的功能

  • pg_remote_exec(text) - 执行命令并返回 shell 退出代码
  • pg_remote_exec_fetch(text,boolean) - 执行命令并将输出作为文本返回(如果有)。布尔“ignore_errors”参数指定如果退出代码为非零,则是否应返回命令的任何输出。

13.3 安装

# pg_config needs to be on the path!
# if non-default pg_config location is needed one can specify it similar to USE_PGXS i.e. PG_CONFIG=/path/...
git clone https://github.com/cybertec-postgresql/pg_remote_exec.git
cd pg_remote_exec
USE_PGXS=1 make
sudo USE_PGXS=1 make install
复制

13.4 用法

CREATE EXTENSION pg_remote_exec; – needs to be done by a Superuser previously

postgres@postgres=# select pg_remote_exec(‘date’);
pg_remote_exec
────────────────
0
(1 row)

postgres@postgres=# select pg_remote_exec_fetch(‘date’, ‘t’);
pg_remote_exec_fetch
───────────────────────────────
Fri Aug 5 17:41:07 EEST 2016
(1 row)

postgres@postgres=# select pg_remote_exec_fetch(‘echo “a” && /bin/false’, ‘t’);
pg_remote_exec_fetch
──────────────────────
a
(1 row)

postgres@postgres=# select pg_remote_exec_fetch(‘echo “a” && /bin/false’, ‘f’);
ERROR: Failed to run command

最后修改时间:2022-03-31 15:34:37
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

文章被以下合辑收录

评论