Lucene search
+L
SilentrobotsRecent

22 matches found

Silent Robot Systems
Silent Robot Systems
added 2019/02/06 5:58 p.m.76 views

SSRF Protocol Smuggling in Plaintext Credential Handlers : LDAP

SSRF protocol smuggling involves an attacker injecting one TCP protocol into a dissimilar TCP protocol. A classic example is using gopher i.e. the first protocol to smuggle SMTP i.e. the second protocol: 1 |...

1.3AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2018/05/24 8:24 p.m.64 views

odle: piping security data

I recently published odle which is a Ruby gem and binary that takes XML data from various security tools and outputs their JSON equivalent. The goal is to be 1 simple, 2 fast, and 3 work on many platforms with only one dependency - nokogiri. Below are two examples using odle to convert output fro...

7.5AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2016/10/02 8:40 p.m.479 views

Exploiting CVE-2016-4264 With OXML_XXE

Recently ColdFusion was shown vulnerable to XXE based attacks in OXML documents; CVE-2016-4264. The blog post linked gives an example building the file using python; cool! Its easy to backdoor files in a similar fashion with OXML XXE. The fastest way to do this is using the "Overwrite File inside...

6.4CVSS8.4AI score0.69044EPSS
SaveExploits7
Silent Robot Systems
Silent Robot Systems
added 2016/09/27 3:54 p.m.27 views

Finding Hosts Using SSL Certificate Organization And Censys

Finding hosts or domain names associated with a company where the domain name does not include the name of the company can sometimes be difficult. There are common ways to do it such as ASN or scope information e.g. bug bounty ToE or IP block. One technique that I use and I am guessing others do ...

6.8AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2016/05/01 4:00 a.m.139 views

Exploiting XXE In File Upload Functionality

Just wanted to post some details from my BH USA 2015 briefing "Exploiting XXE In File Upload Functionality". The youtube video is up: I also gave an updated version of the presentation in November for the Blackhat Webcast Series. It included more file types; PDF, JPG, and GIF. The link is here:...

7AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2016/05/01 4:00 a.m.21 views

Exploiting XXE In File Upload Functionality

Just wanted to post some details from my BH USA 2015 briefing "Exploiting XXE In File Upload Functionality". The youtube video is up: I also gave an updated version of the presentation in November for the Blackhat Webcast Series. It included more file types; PDF, JPG, and GIF. The link is here:...

7AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2016/03/28 4:00 a.m.19 views

Cloud Metadata URL List

Landed the SSRF Cloud Metadata technique in a few different scenarios recently. If you havent seen the talk BHUSA 2014 - Bringing a Machete to the Amazon I recommend it. To make life a little easier created a living URL list for Metadata broken down by cloud. There are a few more than he discusse...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2016/03/28 4:00 a.m.19 views

Cloud Metadata URL List

Landed the SSRF Cloud Metadata technique in a few different scenarios recently. If you haven't seen the talk BHUSA 2014 - Bringing a Machete to the Amazon I recommend it. To make life a little easier created a living URL list for Metadata broken down by cloud. There are a few more than he discuss...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/12/15 4:00 a.m.23 views

XML Entity Cheatsheet - Updated

An XML Entity testing cheatsheet. This is an updated version with nokogiri tests removed, just XXE notes. XML Declarations: 1 2 | ---|--- Vanilla entity test: 1 | &post ---|--- SYSTEM entity test xxe: 1 | ---|--- Parameter Entity. One of the benefits is a paremeter entity is automatically expande...

6.8AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/09/10 9:56 p.m.17 views

Blackhat 2015 Arsenal

Last month at Blackhat Arsenal 2015, Pete and I @willis presented on Serpico. This was our second time at Arsenal. Yet again, awesome people, great venue, and overall a highlight for me of BH/DC/LV. We got some excellent feedback on the project, so thank you to anyone who stopped by. Last year I...

6.7AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/04/14 4:00 a.m.13 views

Simple Ruby Exec with Open and Pipe

I was researching something else and thought this was a cool way to execute a command through the open method in ruby: 1 | open"|CMD" ---|--- The key is starting the open with pipe. For example, 1 | open"|ls" ---|--- Or to exec and print the result in one line: 1 | open"|ls".each |out| puts out...

7.3AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/04/14 4:00 a.m.22 views

Simple Ruby Exec with Open and Pipe

I was researching something else and thought this was a cool way to execute a command through the open method in ruby: 1 | open"|CMD" ---|--- The key is starting the open with pipe. For example, 1 | open"|ls" ---|--- Or to exec and print the result in one line: 1 | open"|ls".each |out| puts out...

7.3AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/03/05 4:00 a.m.25 views

Exploiting XXE Vulnerabilities in OXML Documents - Part 1

OXML is a common document format; think docx Microsoft Word Document, pptx Microsoft Powerpoint, xlsx Excel Spreadsheet, etc. An OXML document is a zip file containing XML files and any media files. When the document is rendered, the rendering library unzips the document and then parses the...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/02/26 4:00 a.m.17 views

ldapsearch notes

I seem to find open LDAP servers on the Internet more often than I should. Here are some notes on using ldapsearch Installing ldapsearch on Ubuntu 1 | apt-get install ldap-utils ---|--- Root-DSE object nmap includes a script to gather info from a LDAP root-dse object . We can also use ldapsearch ...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2015/01/10 4:00 a.m.14 views

Search all Github Repositories for an Organization

gumbler is a script I wrote to search through git commits and introduced in the blog post "Searching Through Git Commits". Recently I wanted to run Gumbler across all repositories for an organization, the steps are discussed below. First, we need to grab a list of repositories for the ORG. This c...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2014/10/06 4:00 a.m.182 views

Searching Through Git Commits

gumbler is a script I wrote to search through git commits. Examples from github are discussed below. .gitignore A gitignore file is used to specify files that should not be tracked by git source gitignore. In the default case, gumbler will read the gitignore file for the project and search every...

6.4CVSS7.6AI score0.046EPSS
SaveExploits1
Silent Robot Systems
Silent Robot Systems
added 2014/10/06 4:00 a.m.212 views

Searching Through Git Commits

gumbler is a script I wrote to search through git commits. Examples from github are discussed below. .gitignore A gitignore file is used to specify files that should not be tracked by git source gitignore. In the default case, gumbler will read the gitignore file for the project and search every...

6.4CVSS7.6AI score0.046EPSS
SaveExploits1
Silent Robot Systems
Silent Robot Systems
added 2014/09/03 4:00 a.m.55 views

XML Entity Cheatsheet

An XML Entity testing cheatsheet. Testing was done using an older vulnerable version of nokogiri. In IRB you can require previous versions of gems. Certain techniques e.g. XInclude may require additional settings in Nokogiri. XML Headers: 1 2 | ---|--- Vanilla entity test: 1 | ---|--- SYSTEM enti...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2014/09/03 4:00 a.m.20 views

XML Entity Cheatsheet

An XML Entity testing cheatsheet. Testing was done using an older vulnerable version of nokogiri. In IRB you can require previous versions of gems. Certain techniques e.g. XInclude may require additional settings in Nokogiri. XML Headers: 1 2 | ---|--- Vanilla entity test: 1 | &post ---|--- SYSTE...

6.9AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2014/08/19 4:00 a.m.17 views

IPv6 DNS Guessing Notes

A hostname with an IPv6 address is stored as a AAAA resource record in DNS see AAAA record. There are many DNS hostname bruteforcing tools, personally I like Fierce. Suppose we have already run our hostname bruteforcing tool against a target domain e.g. facebook.com. Below we use dig to do a AAAA...

6.6AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2014/08/19 4:00 a.m.18 views

IPv6 DNS Guessing Notes

A hostname with an IPv6 address is stored as a AAAA resource record in DNS see AAAA record. There are many DNS hostname bruteforcing tools, personally I like Fierce. Suppose we have already run our hostname bruteforcing tool against a target domain e.g. facebook.com. Below we use dig to do a AAAA...

6.6AI score
SaveExploits0
Silent Robot Systems
Silent Robot Systems
added 2014/08/11 9:56 p.m.24 views

Blackhat 2014 Arsenal Experience

Last week at Blackhat Arsenal 2014, Pete and I @willis presented on Serpico. Arsenal was a great experience and I would highly recommend to anyone as an attendee or presenter. We got some great feedback on the project, so thank you to anyone who stopped by. Here were the top 3 feature requests an...

6.9AI score
SaveExploits0