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
| SELECT da.ip_address, da.host_name, ds.vendor, ds.name as software_name, ds.family, ds.version | |
| FROM dim_asset_software das | |
| JOIN dim_software ds using (software_id) | |
| JOIN dim_asset da on da.asset_id = das.asset_id | |
| WHERE ds.name like'%event-stream%' |
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
| SELECT da.ip_address, da.host_name, dos.name AS OS, dos.version AS os_version, das.port, dp.name AS protocol, ds.name AS service, dsf.name AS service_name, dsf.version AS service_version | |
| FROM dim_asset_service das | |
| JOIN dim_service ds USING (service_id) | |
| JOIN dim_protocol dp USING (protocol_id) | |
| JOIN dim_asset da USING (asset_id) | |
| JOIN dim_operating_system dos USING (operating_system_id) | |
| JOIN dim_service_fingerprint dsf USING (service_fingerprint_id) | |
| ORDER BY da.ip_address, das.port |
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
| SELECT dsi.NAME AS site, | |
| da.ip_address, | |
| da.host_name, | |
| dos.description AS operating_system, | |
| favi.date AS scan_finished, | |
| Proofastext(ds.fix) AS remediation, | |
| Proofastext(favi.proof) | |
| FROM fact_asset_vulnerability_instance favi | |
| JOIN dim_vulnerability_solution dvs using (vulnerability_id) | |
| JOIN dim_asset da using (asset_id) |
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
| SELECT dsite."name" AS "Site", | |
| da.ip_address, | |
| da.host_name, | |
| dos.description AS "OS", | |
| os.certainty_max | |
| FROM fact_asset AS fa | |
| JOIN dim_asset da | |
| ON da.asset_id = fa.asset_id | |
| JOIN (SELECT asset_id, | |
| Max(certainty) AS certainty_max |
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
| IF NOT EXIST "C:\Program Files\Rapid7\" ( | |
| mkdir c:\InsightAgent | |
| robocopy \\<server>\<share>\insight_agent\ c:\InsightAgent | |
| cd /d c:\InsightAgent | |
| msiexec /i agentInstaller-x86_64.msi /quiet /qn | |
| ) |
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
| SELECT | |
| dv.title AS "Vulnerability Title", | |
| Htmltotext(dv.description) AS "Description", | |
| dv.cvss_score AS "CVSSv3 Score", | |
| dv.exploits AS "Exploit Count", | |
| dv.malware_kits AS "Malware Kit Count", | |
| da.host_name AS "Instances" | |
| FROM | |
| dim_vulnerability dv | |
| JOIN fact_asset_vulnerability_instance favi USING(vulnerability_id) |
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
| SELECT | |
| da.host_name, da.ip_address, COUNT(*) | |
| FROM | |
| dim_asset da | |
| GROUP BY | |
| da.host_name, da.ip_address | |
| HAVING | |
| COUNT(*) > 1 |
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
| /* | |
| The code below shows how to encrypt and then decrypt some plaintext into a cyphertext using | |
| KMS's Encrypt/Decrypt functions and secretbox (https://godoc.org/golang.org/x/crypto/nacl/secretbox). | |
| The plaintext message is sealed into a secretbox using a key that is generated by kmsClient.GenerateDataKey(). | |
| Note that this procedure reuquires that a master key would *already exist in KMS* and that its arn/alias is specified. | |
| The aws library assumes that the proper credentials can be found in the shared file (~/.aws/credentials) | |
| and opts for the 'default' role. | |
| Once sealed, the cyphertext is then unboxed, again by first getting the key from kms (kmsClient.Decrypt), |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "s3:Get*", | |
| "s3:List*" | |
| ], | |
| "Resource": [ |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [{ | |
| "Effect": "Allow", | |
| "Action": [ | |
| "cloudtrail:LookupEvents", | |
| "cloudtrail:DescribeTrails" | |
| ], | |
| "Resource": "*" | |
| }, |