好的,所以我有这个数组,它本质上是Import-Csv
一个 CSV 文件。数组中的每个对象都是一个完整的 CSV 行。当我用 Excel 打开它时,输入文件正确呈现(列是正确的)
此 CSV 文件以逗号分隔,格式如下:
"第一","第二","这就是全部
第三
列","第四"
我已经让脚本中的所有内容都能正常工作,除了我需要将此数组以可以正确呈现的格式写入 .csv 文件的部分。我一直在使用Out-File
,时遇到问题Export-Csv
,我什至尝试过这个,但它并没有完全满足我的需要。每个对象需要是 csv 文件中的一个新行,只出现一次,并且必须遵守 Excel 对 CSV 文件的呈现(即每列需要双引号和逗号分隔)。
我什至非常绝望,以至于我试图通过这样做来正确地手动格式化这个东西:
$Array | % { $_ -replace "`"@`{","`n`"" } | % { $_ -replace "}`"","`"`n" } | % { $_ -replace "`;","`"`;`"" } | % { $_ -replace "Plugin ID=","" } | % { $_ -replace "CVE=","" } | % { $_ -replace "CVSS=","" } | % { $_ -replace "Risk=","" } | % { $_ -replace "Host=","" } | % { $_ -replace "Protocol=","" } | % { $_ -replace "Port=","" } | % { $_ -replace "Name=","" } | % { $_ -replace "Synopsis=","" } | % { $_ -replace "Solution=","" } | % { $_ -replace "Description=","" } | % { $_ -replace "Plugin Output=","" } | % { $_ -replace "`";`"","`",`"" } | Out-File "$dirResults\$Results-$Time.csv"
本质上,我在这里做的是几件事:
- 从每个对象的开头删除 @{ 并从末尾删除 }
- 将分隔符从 ; 到 ,
- 将每一列放在双引号中
- 从每个值的开头删除 ColumnHeader=
这是一段代码:
$arrayHeader = @("Plugin ID;CVE;CVSS;Risk;Host;Protocol;Port;Name;Synopsis;Description;Solution;Plugin Output")
$OutterArrayException = Import-Csv "$dirExceptions\$FileException" -Delimiter ","
$InnerArrayScanMe = New-Object System.Collections.ArrayList
# This method keeps the arrays separate types
FOREACH ( $Object in $OutterArrayScanMe )
{ $InnerArrayScanMe.Add("$Object") | Out-Null }
# Note that the OutterArrayException is an Import-Csv from a similarly formatted file as OutterArrayScanMe
FOREACH ( $Exception in $OutterArrayException )
{ $InnerArrayScanMe.Remove("$Exception") }
# This method keeps the arrays separate types
$OutterArrayScanMe = @($arrayHeader) + @($InnerArrayScanMe)
$OutterArrayScanMe | Export-Csv "$dirResults\$FileScanMe-$startTime.csv" -Delimiter ";" -NoTypeInformation
更新:
当我使用 export-csv 时,对象的新行将信息作为新行放在 csv 中。因此,应该看起来像这样的东西变得非常混乱。
UPDATE2:
关于格式是什么样子以及格式存在什么问题存在一些问题。为了清除这些,我在数组中包含了一个对象来演示该问题。请记住,在我的脚本中发生的情况是有一个格式正确的 CSV 的 import-csv(具有多行等,并且可以完美呈现),删除不必要的对象(使用 $array.Remove),然后转储到文件( Out-File 或 Export-Csv)。如此简单,却又如此破碎……
示例数组对象(输出文件):
@{Plugin ID=#####; CVE=CVE-####-####;CVSS=#.#; 风险=中等;主机=###.###.###.###; 协议=xxx;端口=##; 名称=Microsoft ASP.NET xxx;
Synopsis=远程Web服务器漏洞使用的框架。Description=在远程主机上运行的 Web 服务器似乎正在使用 Microsoft
ASP.NET,并且可能受到漏洞的影响。
此外,有人猜测,如果对机器具有物理访问权限的攻击者插入此漏洞,可能会导致独角兽和彩虹。解决方案=使用魔法过滤器阻止对淘气网站的请求。;
Plugin Output= Nessus 通过请求以下 URL 收到了一个顽皮的页面或相关的错误消息:
hxxp://###.###.###.###/xxx/xxxxxxxx
}
示例数组对象(Export-Csv):
#TYPE System.String
"Length"
"616"