revoke EXECUTE privileges on powerful packages from PUBLIC
Oracle recommends that you revoke EXECUTE privileges on powerful packages from
PUBLIC
revoke execute on utl_file from public;
revoke execute on DBMS_RANDOM from public;
revoke execute on UTL_HTTP from public;
revoke execute on UTL_SMTP from public;
revoke execute on UTL_TCP from public;
revoke execute on utl_file from public;
revoke execute on DBMS_RANDOM from public;
revoke execute on UTL_HTTP from public;
revoke execute on UTL_SMTP from public;
revoke execute on UTL_TCP from public;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26764973/viewspace-1426349/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- How to prevent your jar packages from being decompiled?JARPackageCompile
- SQL__REVOKESQL
- Unable to execute SonarScanner analysis: Fail to get bootstrap index from server: Host is unreachable(Host unreachable)AIbootIndexServer
- D. Powerful array
- Check the existence of public synonyms Remove the public synonymsREM
- 讓Vue元件變成Powerful的元件Vue元件
- 2.2.4.5 Grants of Privileges and Roles: Scenario
- 2.2.4.3.2 Roles and Privileges Granted Commonly
- 2.2.4.2.2 Roles and Privileges Granted Locally
- python modules and packagesPythonPackage
- 2.2.4.3 Roles and Privileges Granted Commonly in a CDB
- 2.2.4.2 Privileges and Roles Granted Locally in a CDB
- TestFlight Public Link
- public interface View介面和public interface ViewResolver介面介紹View
- 論文解讀(GIN)《How Powerful are Graph Neural Networks》
- app:processReleaseResources, Failed to execute aaptAPPAIAPT
- [20210426]execute immediate.txt
- 每日一個 Golang PackagesGolangPackage
- 2.2.4.4 Grants to PUBLIC in a CDB
- public-image-mirror
- Oracle 12.2 RAC修改public ip address或public ip(subnet (netmask) or interface)Oracle
- MogDB-openGauss default privileges 使用方法
- i_init_func_execute_data
- 詳解GuassDB資料庫許可權命令:GRANT和REVOKE資料庫
- Unofficial Windows Binaries for Python Extension PackagesWindowsPythonPackage
- 載入驅動三種execute
- Conversion to Dalvik format failed: Unable to execute dexORMAI
- Apache httpclient的execute方法除錯ApacheHTTPclient除錯
- [20180321]toad下execute as script的fetch
- EXECUTE IMMEDIATE 儲存過程中 許可權不足及EXECUTE IMMEDIATE的除錯避坑儲存過程除錯
- npm publish gives “unscoped packages cannot be private”NPMPackage
- Python 訪問限制 private publicPython
- 如何找到真正的 public 方法
- var和public的區別
- Angular Public API 介面設計AngularAPI
- PostgreSQL DBA(44) - Privileges & User Management - What You Should KnowSQL
- [20240826]奇怪ORA-01031 insufficient privileges報錯.txt
- GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘root‘ WITH GRANT OPTION;報錯IDE
- 從wait的原始碼看撤銷偏向鎖的過程(revoke and rebias)AI原始碼