What's new

Closed HTTP Status Collector For PC

Status
Not open for further replies.

Yasuo Main

Forum Veteran
Elite
Joined
Sep 11, 2016
Posts
697
Solutions
1
Reaction
2,672
Points
671
Age
24
Hirap ba humanap ng mga payload?
Gamitin nyo to ako gumawa pang bruteforce ng mga open payload gamitin nyo no load para makahanap ng open na ip

Coded in C#
Download Na:
You do not have permission to view the full content of this post. Log in or register now.

Ano ginagawa nito?
Gumagawa ng random IP at nag checheck kung ano yung return status, best results kung gamitin nyo no load, bruteforce to so matagalan ang proseso.

test app to plano ko gagawa ng aking vpn eh :)
 
Last edited:
Saan galing yung random? Gusto ko lang malaman yung logic ng software. Kasi kung offline yan dapat may pre-defined lists of payload yan na i-tetest.
ahaha sige, first ay gagawa talaga ng random numbers diba 4 yung numbers sa IP? 255.255.255.255 sample yan, gagawa ng 4 na random numbers yung app tapos i try niya kunin yung status, ganun ka simple lol
sorry medyo hardcoded ganun talaga ako mag sulat XD

Code:
                int ip1,ip2,ip3,ip4;
                bool ip1ok = false;
                bool ip2ok = false;
                bool ip3ok = false;
                bool ip4ok = false;
                int i1;
                int i2;
                int i3;
                int i4;
                Random rnd = new Random(DateTime.Now.Millisecond);
                while (!ip1ok)
                {
        
                     i1 = rnd.Next(1, 255);

                    if (!ip1_OK.Contains(i1))
                    {
                        ip1 = i1;
                        ip1_OK.Add(i1);
                        ip1ok = true;
                    }

                }
                while (!ip2ok)
                {
    
                   i2 = rnd.Next(1, 255);
                    if (!ip2_OK.Contains(i2))
                    {
                        ip2 = i2;
                        ip2_OK.Add(i2);
                        ip2ok = true;

                    }

                }
                while (!ip3ok)
                {
      
                     i3 = rnd.Next(1, 255);
                    if (!ip3_OK.Contains(i3))
                    {
                        ip3 = i3;
                        ip3_OK.Add(i3);
                        ip3ok = true;

                    }

                }
                while (!ip4ok)
                {
              
                   i4 = rnd.Next(1, 255);
                    if (!ip4_OK.Contains(i4))
                    {
                        ip4 = i4;
                        ip4_OK.Add(i4);
                        ip4ok = true;

                    }
//tapos yung ip ay (ip1.ToString() + '.' + ip2.ToString() + '.' + ip3.ToString() + '.' + ip4.ToString())
                }
 
ahaha sige, first ay gagawa talaga ng random numbers diba 4 yung numbers sa IP? 255.255.255.255 sample yan, gagawa ng 4 na random numbers yung app tapos i try niya kunin yung status, ganun ka simple lol
Nice, malaking tulong pala ito, hindi ka na mag traditional hunt ng payload na isa2x, sana may app or mobile version nito, kudos sir.
 
Nice, malaking tulong pala ito, hindi ka na mag traditional hunt ng payload na isa2x, sana may app or mobile version nito, kudos sir.
sana nga e, pero medyo matagalan scan nya talaga mula 1.1.1.1 hanggang 255.255.255.255 kaya samahan mo ng traditional method habang ginagamit :)
 
Tsk tsk tsk... sabi ni google
Trojan.Dropper is a detection name used by Symantec to identify malicious software programs that drop other malware files onto the compromised computer. ... In other words, the dropper is usually used at the start or in the early stages of a malware attack.

Trojan.Swrort is Malwarebytes' detection name for a family of Trojans that open a backdoor on the infected computer, allowing the threat actor to download and execute more malware.

Trojan:Win32/Swrort.A is a detection for files that try to connect to a remote server. Once connected, an attacker can perform malicious routines such as downloading other files.
550610
 

Attachments

Last edited:
ahaha sige, first ay gagawa talaga ng random numbers diba 4 yung numbers sa IP? 255.255.255.255 sample yan, gagawa ng 4 na random numbers yung app tapos i try niya kunin yung status, ganun ka simple lol
sorry medyo hardcoded ganun talaga ako mag sulat XD

Code:
                int ip1,ip2,ip3,ip4;
                bool ip1ok = false;
                bool ip2ok = false;
                bool ip3ok = false;
                bool ip4ok = false;
                int i1;
                int i2;
                int i3;
                int i4;
                Random rnd = new Random(DateTime.Now.Millisecond);
                while (!ip1ok)
                {
      
                     i1 = rnd.Next(1, 255);

                    if (!ip1_OK.Contains(i1))
                    {
                        ip1 = i1;
                        ip1_OK.Add(i1);
                        ip1ok = true;
                    }

                }
                while (!ip2ok)
                {
  
                   i2 = rnd.Next(1, 255);
                    if (!ip2_OK.Contains(i2))
                    {
                        ip2 = i2;
                        ip2_OK.Add(i2);
                        ip2ok = true;

                    }

                }
                while (!ip3ok)
                {
    
                     i3 = rnd.Next(1, 255);
                    if (!ip3_OK.Contains(i3))
                    {
                        ip3 = i3;
                        ip3_OK.Add(i3);
                        ip3ok = true;

                    }

                }
                while (!ip4ok)
                {
            
                   i4 = rnd.Next(1, 255);
                    if (!ip4_OK.Contains(i4))
                    {
                        ip4 = i4;
                        ip4_OK.Add(i4);
                        ip4ok = true;

                    }
//tapos yung ip ay (ip1.ToString() + '.' + ip2.ToString() + '.' + ip3.ToString() + '.' + ip4.ToString())
                }
Ok gets ko yung code, matagal nga talaga to especially kapag walang bug ang network, pero mas ok na to kesa sa traditional, dito yung software na bahala mag hanap ng payload mo and pwede pa mag run sa background.
 
Suggest ko lang sir, pwede ka mag add ng ip address to hostname converter feature para hindi na kailangan ng 3rd party converter.
 
Tsk tsk tsk... sabi ni google
Trojan.Dropper is a detection name used by Symantec to identify malicious software programs that drop other malware files onto the compromised computer. ... In other words, the dropper is usually used at the start or in the early stages of a malware attack.

Trojan.Swrort is Malwarebytes' detection name for a family of Trojans that open a backdoor on the infected computer, allowing the threat actor to download and execute more malware.

Trojan:Win32/Swrort.A is a detection for files that try to connect to a remote server. Once connected, an attacker can perform malicious routines such as downloading other files.
View attachment 550610
My palaman yan ingats
Nyek, bakit may palaman ts, maganda na sana yung purpose ng software eh.
 
ahaha sige, first ay gagawa talaga ng random numbers diba 4 yung numbers sa IP? 255.255.255.255 sample yan, gagawa ng 4 na random numbers yung app tapos i try niya kunin yung status, ganun ka simple lol
sorry medyo hardcoded ganun talaga ako mag sulat XD

Code:
                int ip1,ip2,ip3,ip4;
                bool ip1ok = false;
                bool ip2ok = false;
                bool ip3ok = false;
                bool ip4ok = false;
                int i1;
                int i2;
                int i3;
                int i4;
                Random rnd = new Random(DateTime.Now.Millisecond);
                while (!ip1ok)
                {
      
                     i1 = rnd.Next(1, 255);

                    if (!ip1_OK.Contains(i1))
                    {
                        ip1 = i1;
                        ip1_OK.Add(i1);
                        ip1ok = true;
                    }

                }
                while (!ip2ok)
                {
  
                   i2 = rnd.Next(1, 255);
                    if (!ip2_OK.Contains(i2))
                    {
                        ip2 = i2;
                        ip2_OK.Add(i2);
                        ip2ok = true;

                    }

                }
                while (!ip3ok)
                {
    
                     i3 = rnd.Next(1, 255);
                    if (!ip3_OK.Contains(i3))
                    {
                        ip3 = i3;
                        ip3_OK.Add(i3);
                        ip3ok = true;

                    }

                }
                while (!ip4ok)
                {
            
                   i4 = rnd.Next(1, 255);
                    if (!ip4_OK.Contains(i4))
                    {
                        ip4 = i4;
                        ip4_OK.Add(i4);
                        ip4ok = true;

                    }
//tapos yung ip ay (ip1.ToString() + '.' + ip2.ToString() + '.' + ip3.ToString() + '.' + ip4.ToString())
                }
pwde nmn isahan na declaration
Code:
 int i1, i2, i3, i4;
pwde nmn array/list
Code:
 int[] i = new array[4]; // array
List<int> i = new List<int>[4]; //List

May ginagawa na nga akong vpn, Modded OpenVPN sya gaya nung ROG VPN na ako lng nmn nagcode nun.
550648

Coded in WPF C# via Visual Studio 2015 Enterprise
 

Attachments

Status
Not open for further replies.
Back
Top