|
@@ -0,0 +1,40 @@
|
|
|
+---
|
|
|
+title: Proxy Fatclients
|
|
|
+categories: [cheatsheets]
|
|
|
+tags: [fatclient, reversing]
|
|
|
+---
|
|
|
+
|
|
|
+# Proxy Fatclients
|
|
|
+
|
|
|
+Multiple possibilities to intercept fatclient applications.
|
|
|
+
|
|
|
+
|
|
|
+## C# (.net)
|
|
|
+
|
|
|
+* Every .net applications has a configuration file for the executable
|
|
|
+* For Example:
|
|
|
+```
|
|
|
+cmd> dir \myapp\
|
|
|
+* MyApp.exe
|
|
|
+* MyApp.exe.config
|
|
|
+```
|
|
|
+
|
|
|
+* add the following entry to the config file:
|
|
|
+```
|
|
|
+<system.net>
|
|
|
+ <defaultProxy>
|
|
|
+ <proxy
|
|
|
+ proxyaddress="http://<ip>:<port>"
|
|
|
+ bypassonlocal="false"
|
|
|
+ />
|
|
|
+ </defaultProxy>
|
|
|
+</system.net>
|
|
|
+```
|
|
|
+
|
|
|
+## Java
|
|
|
+
|
|
|
+## Native
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|