MM
MM
Explore posts from servers
CC#
Created by MM on 3/2/2023 in #help
❔ HttpListener Access Denied
Probably best way to do this is program own http listener
6 replies
CC#
Created by MM on 3/2/2023 in #help
❔ HttpListener Access Denied
this.listener = new HttpListener();
for(int i = 0; i < hostnames.Length; i++)
{
listener.Prefixes.Add("http://" + hostnames[i]+":"+port+"/");
}
try
{
listener.Start();
}
this.listener = new HttpListener();
for(int i = 0; i < hostnames.Length; i++)
{
listener.Prefixes.Add("http://" + hostnames[i]+":"+port+"/");
}
try
{
listener.Start();
}
hostnames = new string[] {...} port = 8000
6 replies
CC#
Created by MM on 12/9/2022 in #help
✅ Detect Network Request
and windows dont have something like iptables?
11 replies
CC#
Created by MM on 12/9/2022 in #help
✅ Detect Network Request
And some way how can i catch outgoing network request from os and other apps?
11 replies