Browse Source

added cheatsheet: proxy-fatclients.md

Marius Schwarz 5 years ago
parent
commit
4e21917629
1 changed files with 40 additions and 0 deletions
  1. 40 0
      cheatsheets/security/reversing/proxy-fatclients.md

+ 40 - 0
cheatsheets/security/reversing/proxy-fatclients.md

@@ -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
+
+
+
+