DDos Attack in Java

1
2
public class Attacker {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
This code snippet is dangerous as it creates 2000 threads each thread is making HTTP post request to the server with the legitimate HTTP header.

#ddos #attack #hacking #hacker #anonymous

#cesarnog

5 Responses

import java.util.*;
public class J {
public static void tang(int a[],int n)
{
int[] l = new int [100]; int lmax;
l[0]=1;
for(int i=1; i<n;i++)
{
lmax=0;
for(int j=0; j<i; j++)
if(a[i]>a[j])
{
if(l[j]>lmax)
lmax=l[j];
}
l[i]=lmax+1;
}
int temp=0;
for(int i =0; i <n; i++)
{
if(l[i]>temp)
temp=l[i];
}
System.out.println(temp);
}



public static void main(String[] args) {

Scanner in = new Scanner(System.in);
int n=in.nextInt();
int[] a= new int [100];
for(int j=0; j<n; j++)
{
int m =in.nextInt();
for(int i =0; i <m; i++)
{
a[i]=in.nextInt();
}
tang(a,m);
}
}
}
import java.util.*;
public class J {
public static void tang(int a[],int n)
{
int[] l = new int [100]; int lmax;
l[0]=1;
for(int i=1; i<n;i++)
{
lmax=0;
for(int j=0; j<i; j++)
if(a[i]>a[j])
{
if(l[j]>lmax)
lmax=l[j];
}
l[i]=lmax+1;
}
int temp=0;
for(int i =0; i <n; i++)
{
if(l[i]>temp)
temp=l[i];
}
System.out.println(temp);
}



public static void main(String[] args) {

Scanner in = new Scanner(System.in);
int n=in.nextInt();
int[] a= new int [100];
for(int j=0; j<n; j++)
{
int m =in.nextInt();
for(int i =0; i <m; i++)
{
a[i]=in.nextInt();
}
tang(a,m);
}
}
}
hnh
I have so many questions?!
where do you write your code?
how do you know that is worked?
In general, how do you run any code?
What is the best text editor for Java?
I have so many questions?!
where do you write your code?
how do you know that is worked?
In general, how do you run any code?
What is the best text editor for Java?

Write a comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.