leftp / 3aj-lib

Proof of concept communications from C# via a web browser process

Home Page:https://dtm.uk/the-origin-of-command-and-control-traffic/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3ajlib

A proof of concept that demonstrates a method of sending/receiving data from .NET via a legitimate browser process of your choosing.

Introduction

There are situations where a red teamer may want to have more control over the specific origin of their traffic on a system. Defensive tools such as JA3 and other EDR product components can identify known bad and contribute to building up a risk score based on the aspects of the web client being used to send data. I played around with JA3 and looked at the results for some of the typical web clients that are used. On the whole there was nothing too alarming, since lots of legitimate software uses the same methods. That said a JA3 hash of a client can contribute to a wider mechanism/set of metrics for filtering/determing a risk score for connections. Equally EDR products may look at the process responsible for sending traffic. I set out thinking of a way I can control which client sends data and where better to start than a legitimate web browser or in fact any of them.

Idea

I can set up a sort of local IPC over HTTP between .NET and a web browser. I can then use JavaScript to handle a) communications outbound b) communications to my software.

In an attack scenario this would look something like this: Diagram

What does this proof of concept do?

This proof of concept introduces a library which sets up this channel. It's tailored towards my work on DoHC2 and currently the test client does DNS resolution via Google's DNS over HTTPS endpoint. In reality this concept can be extended to talk to any endpoint which presents a 'Access-Control-Allow-Origin' header which permits the localhost endpoint used. At the moment use of the library has a limitation of expecting JSON in the specific example used, however this could trivially be changed to make something more arbitrary, liklely within the JavaScript.

Demo

Demo showing DNS over HTTPS resolution via Internet Explorer:

IE

Demo showing DNS over HTTPS resolution via Chrome:

Chrome

Authors

License

MIT

Acknowledgments

About

Proof of concept communications from C# via a web browser process

https://dtm.uk/the-origin-of-command-and-control-traffic/

License:MIT License


Languages

Language:C# 100.0%