
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@runnerty/executor-sqlserver
Advanced tools
{
"id": "sqlserver_default",
"type": "@runnerty-executor-sqlserver",
"user": "sqlserverusr",
"password": "sqlserverpass",
"database": "tempdb",
"host": "myhost.com"
}
{
"id":"sqlserver_default",
"command_file": "/etc/runnerty/sql/test.sql"
}
{
"id":"sqlserver_default",
"command": "SELECT getdate()"
}
{
"id":"sqlserver_sample",
"command": "SELECT [id], [Name] FROM [tempdb].[dbo].[users]",
"csvFileExport": "@GV(WORK_DIR)/users.csv"
}
The saved can be indicated in the file of the results obtained from a query in csv, xlsx and json format. You only have to indicate the corresponding property in the parameters:
xlsxFileExport: XLSX Formart file pathcsvFileExport: CSV Formart file pathfileExport: JSON Formart file path{
"id":"sqlserver_sample",
"command": "SELECT [id], [Name] FROM [tempdb].[dbo].[users]",
"xlsxFileExport": "@GV(WORK_DIR)/users.xlsx"
}
PROCESS_EXEC_MSG_OUTPUT: sqlserver output message.PROCESS_EXEC_ERR_OUTPUT: Error output message.PROCESS_EXEC_DATA_OUTPUT: sqlserver query output data.PROCESS_EXEC_DB_COUNTROWS: sqlserver query count rows.PROCESS_EXEC_DB_FIRSTROW: sqlserver query first row data.PROCESS_EXEC_DB_FIRSTROW_[FILED_NAME]: sqlserver first row field data.PROCESS_EXEC_DB_FIELDCOUNT: sqlserver field count.PROCESS_EXEC_DB_AFFECTEDROWS: sqlserver affected rows count.PROCESS_EXEC_DB_MESSAGE: sqlserver message.If the result of your query is very large, you should consider using the "noReturnDataOutput" (boolean) property to prevent a large amount of data from entering memory and being interpreted by Runnerty, which could cause performance problems.
{
"id":"sqlserver_sample",
"command": "SELECT * FROM LARGE_TABLE",
"csvFileExport": "@GV(WORK_DIR)/LARGE_DATA.csv",
"noReturnDataOutput": "true"
}
Set "encrypt" param to true if you're on Windows Azure:
{
"id":"sqlserver_sample",
"command": "SELECT * FROM USERS",
"encrypt": "true"
}
FAQs
Runnerty module: Microsoft SQL Server executor
The npm package @runnerty/executor-sqlserver receives a total of 1 weekly downloads. As such, @runnerty/executor-sqlserver popularity was classified as not popular.
We found that @runnerty/executor-sqlserver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.