| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
AggressiveProxy is a combination of a .NET 3.5 binary (LetMeOutSharp) and a Cobalt Strike aggressor script (AggressiveProxy.cna). Once LetMeOutSharp is executed on a workstation, it will try to enumerate all available proxy configurations and try to communicate with the Cobalt Strike server over HTTP(s) using the identified proxy configurations.
The story behind the tool can be found at EncodeGroup's Medium
Modify the $msbuild value in AggressiveProxy.cna to point to the path of msbuild executable which is part of the Mono Framework
Click on the Proxy Handler->Start Handler menu item. At this point the script will request the listener, the proxy handler URL and the expected response content settings.
Once these values have been set, the script will then:
The script will then create a web page at the provided Check URL. Once a hit has been made to the specific URL from LetMeOutSharp, it will then:
If there are no variants configured, the default one should be used. The new variants should have exactly the same configuration as the variant your listener is/will be using, with the addition of the appropriate header "User-Agent" line in the client part. For example if your listener is using the following profile:
http-get {
set uri "/test/";
set verb "GET";
client {
header "Accept" "*/*";
header "Accept-Encoding" "gzip, deflate";
metadata {
base64url;
prepend "user=";
header "Cookie";
}
}
server {
header "Server" "Server";
header "Content-Type" "application/text";
header "Connection" "keep-alive";
output {
print;
}
}
}
You will need to define the following variants:
http-get "chrome" {
..<same as the main profile>..
client {
..<same as the main profile>..
header "User-Agent" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36";
..<same as the main profile>..
}
server {
..<same as the main profile>..
}
}
http-get "firefox" {
..<same as the main profile>..
client {
..<same as the main profile>..
header "User-Agent" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0";
..<same as the main profile>..
}
server {
..<same as the main profile>..
}
}
http-get "edge" {
..<same as the main profile>..
client {
..<same as the main profile>..
header "User-Agent" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36 Edge/86.0.622.51";
..<same as the main profile>..
}
server {
..<same as the main profile>..
}
}
The CNA will create a menu with the following items:
An effort has been made to test multiple cases of proxy configurations / technologies. This however does not mean that all cases have been accounted for. If you feel you have found a case, where LetMeOutSharp does not take into account, feel free to open an issue or a merge request.
| Back | FazBrowse Home | New Git URL |