Automatic SQL Injection Tool – SQLMAP




Sqlmap is an open source command-line automatic SQL injection tool and its goal is to detect and take advantage of SQL injection vulnerabilities in web applications. Once it detects one or more SQL injections on the target host, the user can choose among a variety of options to perform an extensive back-end database management system fingerprint, retrieve DBMS session user and database, enumerate users, password hashes, privileges, databases, dump entire or user’s specified DBMS tables/columns, run his own SQL statement, read or write either text or binary files on the file system, execute arbitrary commands on the operating system, establish an out-of-band stateful connection between the attacker box and the database server via Metasploit payload stager, database stored procedure buffer overflow exploitation or SMB relay attack and more.Enthusiastics can experiment with its opotions and pwn many of the servers around,or can test their skills to secure their servers..but remember,SQL map is a tool,its might help you to find and apply vulnerabilities and injections,but in the end,you really must have a good knowledge of SQL some real pwning out there..
You Can download sqlmap 0.7 here: 
Linux Source: sqlmap-0.7.tar.gz
Windows Portablesqlmap-0.7_exe.zip
........... 


Read More Add your Comment 0 comments


Hack Websites A Good Collection Of SQL Injection Tools




1.Havij 1.7 -

http://rapidshare.com/files/322555573/Havij_1.07.exe

2.SQLi Helper 2.7 -
http://rapidshare.com/files/322556434/sqliHelper_2.7.rar

3.SQLi Injecter V2.0 -

http://rapidshare.com/files/322559013/SqlInjv2.rar

4.m4x MSSQL Injection

http://rapidshare.com/files/322557397/m4xmssql.rar

5.m4x MySQL Injection
http://rapidshare.com/files/322559902/m4xmysql.rar

6.SQL TooL v2.3

http://rapidshare.com/files/322560724/SQL_TOOL_V2.3.rar

7.
Simple SQLi Dumper v0.1

http://rapidshare.com/files/322561134/Simple_SQLi_Dumper.rar


................................................................................................................................


Read More Add your Comment 0 comments


Hacking Tool (Emailer) For Sending Bulk Emails To Your Victim



ownload Free Hacking Tool  For Sending Bulk Emails To Your Victim (Emailer)Info:
This is a program meant to send bulk emails.
You put in your gmail account then fill in the rest of the boxes
Put how many emails you want sent and click send.
After it is done the message at the bottom will turn to sent.

This is my first program so please bare with me, and please leave your comments.

Download link
http://rapidshare.com/files/367298334/Emailer.exe


Read More Add your Comment 0 comments


Metasploit Explained A Tutorial For Beginners



Metaspoit Framework is a open source penetration tool used for developing and executing exploit code against a remote target machine it, Metasploit frame work has the world's largest database of public, tested exploits. In simple words, Metasploit can be used to test the vulnerability of computer systems in order to protect them and on the other hand it can  alsobe used to break into remote systems. 

Its a powerful tool used for penetration testing. Learning to work with metasploit needs a lot of efforts and time. Ofcourse to can learn metasploit overnight, it needs lots of practice and patience 
Download here(windows user) http://www.metasploit.com/releases/framework-3.2.exeDownload here(linux user) http://www.metasploit.com/releases/framework-3.2.tar.gz

Just give a look at following basic steps for beginners to break into a system using metasploit after gathering some information about the target system.
1. Select a right exploit and then set the target. 2.Verify the exploit options to determine whether the target system is vulnerable to the exploit. 3.Select a payload 4.Execute the exploit.You must be confused !!!!

Now carefully read the following basic terms to get an idea about these four steps mentioned above .I have defined the terms technically and side by side explained in layman language to clarify the things. I have taken an example that an attacker wants to break into a house . I hope my this approach will give you a great idea about these basic terms .
 

Vulnerability -A weakness which allows an attacker to break into or compromise a system's security.

Like the main gate of house with a weak lock (can be easily opened) , a glass window of house(can be easily broken) etc can be the vulnerabilities in the systems which make it easy for an attacker to break into.

Exploit - Code which allows an attacker to take advantage of a vulnerability system.

The set of different keys which he can try one by one to open the lock , the hammer with him which he can use to break the glass window etc can be the exploits.

Payload- Actual code which runs on the system after exploitation

Now Finally after exploiting the vulnerability and breaking in , he can have different things to do. He can steal money, destroy the things or just can give a look and come back.. Deciding this is what we mean by setting the Payload.

I hope its enough friends, You will learn more with further tutorials when you will start working with metasploit practically.


Read More Add your Comment 0 comments


Adobe Photoshop CS5 Serial Numbers




Adobe Photoshop CS5 is the latest version of photoshop.Adobe Photoshop CS5 is the industry-standard image editing software, used worldwide by professional photographers and designers who want to perfect their digital images,  but due to its high price a very few number of people can afford it

Here are a Few working 
Adobe Photoshop CS5 Serial Numbers 

1188-1702-9219-4234-2059-4581
1330-1281-8916-6015-7348-5124
1325-1558-5864-4422-1094-1126

1325-0621-9125-0765-3648-0614
1325-0365-5929-6118-8817-8422
1325-0150-1163-7532-1626-3430
1325-0178-1927-9019-0123-2254
1325-0702-3693-1544-9166-3515
1325-0549-2240-0071-3409-1342


Read More Add your Comment 0 comments


How to secure your web page against SQL injection




 

Here is a number of things you can do... I will show you a few here...

Alternative one
Lets say thins is your code:
Code:

$result = mysql_query('SELECT text FROM pages WHERE id=' . $_GET['id']);
echo($result);

?>


This means that you are selecting the page content witch is 'text' from 'pages' in the SQL database, and you are sorting out the right page content with $_GET['id'] and $_GET['id'] is the thing in the url... Example; http://google.com/index.php?id=123

This code is easely injecteble... But if you do this:
Code:

$result = mysql_query('SELECT text FROM pages WHERE id=' . mysql_real_escape_string($_GET['id']));
echo($result);

?>

You are 100% secure





Alternative two
This one is not as good as the first one... But still works

Again we say this is your php code:
Code:

$result = mysql_query('SELECT text FROM pages WHERE id=' . $_GET['id']);
echo($result);

?>


Again this is verry simple to inject... But if you check $_GET['id'] for "iligal" characters! Like this:
Code:

$pos = strrpos(strtolower($_GET['id']), "union");
if ($pos === false){}else
{
die;
}

$pos = strrpos(strtolower($_GET['id']), "select");
if ($pos === false){}else
{
die;
}

$pos = strrpos(strtolower($_GET['id']), "information_");
if ($pos === false){}else
{
die;
}

$result = mysql_query('SELECT text FROM pages WHERE id=' . $_GET['id']);
echo($result);

?> 


Read More Add your Comment 0 comments


Hack Websites, Vulnerable To Sql Injection



http://www.freshoriginals.com/members.php?id='252
http://www.beaux-artsbrampton.com/members.php?id='42
http://upenndischord.com/members.php?id='45
http://www.case2000.com/members.php?id='3
http://www.gfcnet.com/members.php?id='1
http://www.theaterleague.com/theaterContent/Members.php?id='1
http://www.accelerent.com/market/members.php?id='14
http://www.yfcdavao.com/v4/members.php?id='3823
http://www.myocad.com/members.php?id='superkidepic
http://www.bcanva.com/market/members.php?id='46
http://www.fullmoongiveaway.com/members.php?id='69
http://www.jlp-law.com/members.php?id='6
http://www.chicagoloopalliance.com/members.php?id='165
http://www.mx-music.com/user/members.php?id='15737
http://www.gleeclub.com/about/bio.php?SUBSECTION_TITLE='Members&SUBSECTION_LINK='%2Fabout%2Fmembers.php&id='2044
http://www.giveawaymanager2.com/members.php?id='1086
http://datacenter.courier-journal.com/government/council/members.php?id='34
http://www.tianb.com/members.php?id='2216
http://www.efois.com/members.php?id='Textile
http://www.thecolumbusteam.com/team/members.php?id='1
http://www.headdrone.com/hd2/members.php?id='1
http://www.lunkerlogger.com/members.php?id='Crackbass
http://www.dk-viking.com/index_files/members.php?id='4
http://gattonamento.php-box.com/web/members.php?ID='&LANG='IT&page='9&PHPSESSID='ace8e8ae9ef79bf16b41066bf436c14b
http://www.nitzotzotonline.com/Members.php?id='25
http://e-lusion.net/india/members.php?id='all
http://www.guitarists.net/music/members.php?id='47624
http://fantasticas.odisseias.net/members.php?id='13
http://www.omaporno.net/members.php?id='1815
http://sabores.odisseias.net/members.php?id='17
http://www.aidforafrica.org/members.php?id='43
http://futebol.odisseias.net/members.php?id='18
http://www.iron.org/chamber/members.php?id='448
http://www.odfalliance.org/members.php?id='5
http://www.theatreleague.org/theaterContent/Members.php?id='1
http://www.loffice.org/affiliated-members.php?id='11
http://pmod.philjafa.org/pages/members.php?id='141
http://www.pmari.org/members.php?id='42
http://www.terradigm.org/members.php?id='15
http://www.leadsgroup.org/members.php?id='2
http://www.focus-international.org/market/members.php?id='8
http://tuvana.net/Members.php?ID='162
http://www.globalbioscience.org/members/members.php?id='2
http://www.valleyccc.org/members.php?id='103
http://www.fanlistings.org/paulina_porizkova/members.php?id='all
http://www.fanlistings.org/alicia_silverstone/members.php?id='all
http://www.grinvi.org/members.php?id='27
http://www.antique-alley.org/members.php?id='2
http://www.alpacas-waba.org/members.php?id='2
http://www.uiprail.org/members.php?id='5
http://www.akronareaarts.org/members.php?id='46
http://www.singara.org/members.php?id='5
http://www.centrevila.org/members.php?id='109
http://www.navr-bg.org/members.php?id='2
http://www.saber-riders.de/page/members.php?id='2
http://www.mooncry.de/de/members.php?id='2
http://www.dtkv-duesseldorf.de/members.php?id='25
http://www.tombraidergirl.de/community/members.php?id='1
http://www.kingsbench.co.uk/members.php?id='9
http://www.planet6.co.uk/members.php?id='177
http://www.gracec.info/members.php?id='31
http://digitest.info/members.php?id='14
http://news.vgchartz.com/news.php?id='1297
http://www.concordiasentinel.com/news.php?id='1870
http://www.richmond-dailynews.com/news.php?id='2674
http://ropeofsilicon.com/news.php?id='6846
http://www.gallifreyone.com/news.php?id='torchwood
http://www.solidstatelightingdesign.com/documents/view/news.php?id='11133
http://www.kvraudio.com/news.php?id='10823
http://www.equus.com/news/news.php?id='23
http://www.brew-monkey.com/news.php?id='712
http://www.obit-mag.com/news.php?id='230
http://www.aptima.com/news.php?id='47
http://www.franklinsun.com/news.php?id='1519
http://ps3.vggen.com/news/news.php?id='9157
http://www.nnovia.com/news.php?id='15
http://www.fairchild-controls.com/about/news.php?id='23
http://www.whitepinemusic.com/news/news.php?id='8
http://www.transitionceo.com/news.php?id='7
http://www.neonseven.com/news.php?id='19
http://www.labprints.com/website/news.php?id='84
http://www.theconcordiasentinel.com/news.php?id='3148
http://www.investkootenay.com/news.php?id='20
http://www.africasia.com/icnews/news.php?ID='1317
http://www.ouachitacitizen.com/news.php?id='3334
http://www.starfishmedical.com/news.php?id='16&PHPSESSID='c9fbc98caf952954707...
http://www.sensation-dundee.com/news.php?id='96
http://www.starfishengineering.com/news.php?id='2&PHPSESSID='ab889cc1f487af9133fdfeeb12cef5e0
http://www.beltrestling.com/en/news.php?id='4
http://wii.vggen.com/news/news.php?id='9987
http://www.barefootwater-ski.com/news.php?id='16
http://www.welsh-premier.com/news.php?ID='5644
http://www.mesquitelocalnews.com/news.php?id='17&t='Business+News
http://www.ibiza-voice.com/news/news.php?id='716
http://www.cowracommunitynews.com/news.php?id='96&t='COWRA+NEIGHBOURHOOD+CENTRE+NEWS
http://www.polonia-nova.com/news.php?id='148
http://ifpqatar.com/news.php?id='2931
http://www.netlimiter.com/news.php?id='22
http://www.at160.com/news/news.php?id='fceedc0ff69288b7fe0d1744df0fea78
http://southsnews.com/news.php?id='35
http://www.garudacompetition.com/news.php?id='40
http://www.theweeklypokerclub.com/news.php?id='news
http://www.ukclimbing.com/gear/news.php?id='1922
http://www.smash-uk.com/frf09/news.php?id='40
http://www.artspan.com/news.php?id='25
http://www.thefranklinsun.com/news.php?id='1918
http://www.arrouwad.com/news.php?id='18807
http://www.biostar-usa.com/app/en-us/news/news.php?id='31
http://qbnz.com/highlighter/news.php?id='123
http://www.rematic.com/news.php?id='22

http://www.scimagojr.com/news.php?id='112
http://www.deltasimons.com/news.php?id='56&title='Shining+Earth%92s%99+expertise+helps+achieve+first+ever+BREEAM+%91Outstanding%92+rating
http://www.1800law1010.com/news2/news.php?id='23
http://waterdown.magnoliahousespa.com/news.php?id='121
http://www.sinatrafamily.com/news/news.php?id='0
http://www.tbdc.com/news.php?id='78
http://ds.vggen.com/news/news.php?id='7413
http://www.absolutepictures.com/news.php?id='7999
http://www.atpictures.com/news.php?id='8672
http://www.comingsoon.net/news.php?id='10208
http://www.torry.net/news.php?id='26
http://www.sistersofprovidence.net/news.php?id='79
http://www.humanoidspublishing.com/news/news.php?id='119
http://www.vianetworks.net/news.php?id='14
http://www.humanoids-publishing.com/news/news.php?id='26
http://www.gamersinfo.net/content/news.php?id='168
http://www.euroled.net/2008/news.php?id='62
http://www.palfi.net/financial-news.php?id='18
http://www.spaceconnections.net/news.php?id='55
http://d3162.u24.comservers.net/news.php?id='5&PHPSESSID='a6419a7083162136a98e614eaca056d8
http://www.elbarca.net/news.php?id='225
http://www.lifemosaic.net/news.php?id='26
http://www.boleslawiec24.net/news.php?id='21234&rodzaj='2
http://www.enwell.net/news/news.php?id='2622
http://www.sslighting.net/documents/view/news.php?id='9302
http://sroda24.net/news.php?id='2201&PHPSESSID='d6daf2655e204ff66839d84817778989
http://www.wroclaw24.net/news.php?id='23777&PHPSESSID='ozyfeqlai
http://www.urfahaber.net/news.php?id='14862
http://zgorzelec24.net/news.php?id='11033&PHPSESSID='a7a6b336e3bdd7889e69563403744cfa
http://legnica24.net/news.php?id='15794
http://www.jenningsdailynews.net/news.php?id='3367
http://www.legnica24.net/news.php?id='13790&PHPSESSID='fvdymryllwxwp
http://www.daawa-info.net/news.php?id='9838
http://www.richard-kelly.net/news/news.php?id='396&from='home
http://www.edcf.net/news.php?id='17
http://www.unitedunderworld.net/news/news.php?id='126
http://www.citrox.net/news.php?id='53
http://www.zaglebie24.net/news.php?id='7157&rodzaj='2
http://billiard4u.net/news/news.php?id='18
http://www.uktourismpro.net/news.php?id='news
http://as30703.http.sasm3.net/gch/news.php?id='1151.htm
http://tillanet.net/news.php?id='37&PHPSESSID='f4b2473a6c9de07b243054793b659f49
http://www.thaiphoto.net/advertising_news/news.php?id='41&no_pic='have
http://democracyatlarge.net/eguide_site/country-news.php?ID='137
http://naszanysa24.net/news.php?id='19943
http://nanoconsortium.net/news/news.php?id='22
http://meoldchina.net/news.php?id='2
http://www.sapphirecs.net/news.php?id='15
http://www.itelite.net/news.php?id='55
http://www.pmc-uk.net/my-pmc/news.php?id='17
http://www.lcf.net/news.php?id='6
http://www.soundofart.net/news.php?id='53
http://dallassolar.net/news.php?id='281
http://www.privatizationbarometer.net/news.php?id='16557
http://www.seanclub.net/news.php?id='845
http://www.pearle.ws/news.php?ID='20
http://www.wfsj.org/news/news.php?id='110
http://www.ofvm.org/news.php?id='225
http://www.fourcty.org/news.php?id='39&p='7
http://www.electionguide.org/country-news.php?ID='16
http://www.ntbg.org/sharing/news.php?id='550.
http://www.luimo.org/news.php?id='NE000093
http://www.aspirewny.org/about/news.php?id='16
http://www.gachet.org/site/news.php?id='50
http://www.jskemper.org/news.php?id='22
http://www.gymcan.org/site/news.php?id='50
http://www.aupe.org/in_the_news/news.php?id='1122
http://www.greenecountyfoundation.org/news.php?id='10
http://www.chicagomediaaction.org/news.php?id='458
http://www.etc-nepal.org/news.php?id='3
http://www.cssanyu.org/news/news.php?id='14
http://www.ruig-gian.org/news/news.php?ID='49
http://www.mathrubhumi.org/news.php?id='17893&cat='1⊂='15&subit='0
http://www.movingpicturescollective.org/news/news.php?id='458
http://www.resnetnortheast.org/news.php?id='6
http://www.rox-invest.org/news.php?id='34
http://www.ilab.org/services/news.php?id='91
http://www.cityofcheney.org/news.php?id='101
http://www.belt-wrestling.org/en/news.php?id='4
http://www.drdb.org/newsletter/news.php?id='256%20
http://mathrubhumi.org/news.php?id='14354&cat='1⊂='33&subit='0
http://arabic-m.org/defaced/120700/www.dms.gov.mv/news.php?id='29'%22%3E%3C/title%3E%3Cscript%3Ealert(/TW!$T3D/)%3C/script%3E
http://leap-project.org/news.php?id='29eng/
http://www.epf-eu.org/Public/News.php?ID='3898&page='1
http://www.democracyjournal.org/news.php?ID='56
http://www.iapriweb.org/news.php?id='20
http://www.tpeprcic.org/news.php?id='17
http://www.cac-acc.org/news.php?id='69
http://www.nydolls.org/news.php?ID='66
http://www.isaz.org/news.php?id='28&PHPSESSID='407b99450c0303eb4e937c197b108f56
http://www.interculturemap.org/en/news.php?id='16
http://deadfall.org/news.php?id='3737
http://www.arthritis.org/chapters/northern-california/news.php?id='204
http://www.eapa-homepage.org/news.php?id='8&offset='0
http://www.hkipp.org/ver3/news.php?id='14
http://www.radworkshere.org/news.php?id='202
http://marysvillelib.org/about/news.php?id='380
http://www.vaceda.org/view-news.php?id='980
http://vegasfastener.org/news.php?id='3
http://www.csnsonline.org/news.php?id='35&archive='true
http://www.richnaba.org/news.php?id='18
http://www.healthworkforceinfo.org/states/news.php?id='149
http://www.chapelstreet.org/news.php?id='520&PHPSESSID='9c7711ee899f7c34e3f0a2114c52dff4
http://www.nanoparticulates.org/news/news.php?id='15
http://dev.tc-library.org/news.php?id='180
http://www.dell-arte.org/news.php?id='137
http://www.shelter.org/org/news.php?id='5
http://www.81femmes.org/uk/news.php?id='121
http://www.webwords.org/news.php?id='43
http://www.terradigm.org/news.php?id='24
http://www.faithandreason.org/news.php?id='42
http://www.dvds4vets.org/news.php?id='13
http://whitesidetheatre.org/news.php?id='2
http://www.tigerwoodsfoundation.org/worldchallenge/news.php?id='152&page='1
http://www.beliefproductions.org/news.php?id='9
http://www.marysvillelib.org/about/news.php?id='383
http://www.peacewithnature.org/news.php?id='27
http://www.dernewsticker.de/news.php?id='118766&i='jdtmnm
http://www.ugrap.de/news.php?id='231
http://www.coaching-report.de/news.php?id='350
http://www.oabb.de/news.php?id='23
http://www.aupair-worldwide.de/lang_all/news.php?id='
http://www.kami-stylez.de/news.php?id='45
http://www.witec.de/en/company/witecnews/news.php?id='38
http://www.adventurecorner.de/news.php?id='2063
http://www.kanzlei-tmfg.de/news.php?id='60&r='13
http://www.rebecca-online.de/cont_en/news.php?id='64
http://www.sphinxcomputer.de/html/news.php?id='657
http://cms.nichtbezahlt.de/news.php?id='288
http://www.wiiinsider.de/news.php?id='86590
http://www.houseedition.de/news.php?id='134
http://www.projekt-verwaltung.de/news.php?id='35〈='en
http://www.radmarkt.de/rm/content/home/news.php?id='1749
http://www.hmsweb.de/site/news.php?id='0301〈='en
http://www.codmods.de/codmodsalt/news.php?id='682
http://www.extraguide.de/show-news.php?id='2&type='lastnews
http://www.atomicforce.de/News.php?ID='32
http://www.mpicc.de/eucrim/news.php?id='0803043
http://www.schlecht-toasten.de/news.php?id='45
http://www.lauftipps.de/newsletter/news.php?id='40
http://www.salsa-stuttgart.de/home/news.php?id='575
http://musikdownloaden.mu.ohost.de/webnews/news.php?id='101
http://www.alternative-art.de/interviews/news.php?id='512
http://www.alcatraz-backpacker.de/news.php?id='4&sprache='en
http://www.fliessgewaesserbewertung.de/news/news.php?id='23
http://sebastianhomeier.de/news.php?id='2
http://www.hb-people.de/news/news.php?id='2684&rubrik='musik
http://www.schlangendschungel.de/news/news.php?id='74
http://www.taxi-heute.de/nachricht/news.php?id='60582
http://www.aoe3.de/news.php?id='0&news_id='116
http://www.partnerprogramme.de/news.php?id='50322
http://www.bebmg.de/v3/app/de/news/news.php?id='31
http://www.row-people.de/news/news.php?id='1446
http://www.biostar-europe.de/v3/app/de/news/news.php?id='49
http://web8.server8.webplus24.de/bib/cms/admin/vorlagen/news.php?id='142
http://www.scriptworld.de/news.php?id='242
http://utaleasing.de/news.php?id='10
http://www.gamecaptain.de/?file='news.php&id='5000
http://www.bn-software.de/news/news.php?id='744
http://www.omwy.cc/en/news.php?id='4
http://evromat.co.cc/news.php?id='4
http://www.jpsp.cc/news.php?id='908
http://www.yugaopian.co.cc/news.php?id='4
http://zt.hefei.cc/4zbh/news.php?id='65
http://ly.hefei.cc/bao/news.php?id='364
http://www.sensation-dundee.co.uk/news.php?id='108
https://www.nynet.co.uk/news.php?id='76
http://nipper.titania.co.uk/news.php?id='19
http://www.robertmartell.co.uk/news.php?id='21&robertmartell='74e478a11f0914b8551918e5792ec096
http://www.c8imc.co.uk/news.php?id='21
http://www.parkwood-holdings.co.uk/news.php?id='43
http://www.ng2.co.uk/news.php?id='184&newsid='22&date='2006-06-13
http://www.goldcoastoceanfest.co.uk/news.php?id='1
http://www.ng2nottingham.co.uk/news.php?id='184&newsid='28&date='2008-06-26
http://www.dpconnect.co.uk/main/news.php?id='13
http://www.falkirkstadium.co.uk/news.php?ID='17
http://www.emmamason.co.uk/news.php?id='32
http://www.henleystandard.co.uk/news/news.php?id='475639
http://www.furnessacademy.co.uk/news.php?ID='21
http://www.himalayanjourneys.co.uk/dynamic/news.php?id='27
http://samgregory.co.uk/Soundwave/Main/news.php?id='92
http://www.drewry.co.uk/news.php?id='3
http://www.oak-fm.co.uk/news.php?id='1014
http://www.tagittins.co.uk/news.php?id='1
http://www.lichfields.co.uk/news.php?id='280
http://www.bayviewsystems.co.uk/main/news.php?id='31
http://sensation-dundee.co.uk/news.php?id='80
http://www.costadelparadise.co.uk/news.php?id='177
http://www.thehairforce.co.uk/news.php?id='3
http://www.webmotion.co.uk/news.php?id='17
http://www.beebeedevelopments.co.uk/news.php?id='000019
http://www.ictsqt.co.uk/news.php?id='28
http://www.digitalmischief.co.uk/news.php?id='28
http://www.aspirare.co.uk/news.php?id='27
http://www.arkpro.co.uk/news.php?id='3
http://www.abridaldream.co.uk/news.php?id='12
http://naszakadra.info/news.php?id='2717&PHPSESSID='c1fa616169235c7d05ea426e83a29dbd
http://icisa.info/news/news.php?id='9
http://www.icisa.info/news/news.php?id='15
http://www.suwalki.info/news.php?id='4790
http://www.lamarmotte.info/news.php?ID='58
http://www.goforwood.info/en/news.php?id='9127
http://rilian.info/news.php?id='25
http://www.puac.info/News.php?ID='28
http://www.suederelbe.info/news.php?id='9&newsid='403
http://www.probilliard.info/news.php?id='1384
http://www.maistros.info/htmls/news.php?id='1
http://www.yarochester.info/news.php?id='63
http://www.hyip-reflection.info/news.php?id='19
http://etipack.info/en/communication/news.php?id='15&title='Bema
http://www.joshers.info/news.php?id='40
http://www.bbis.info/news/news.php?ID='5
http://www.leprosymission.info/news.php?id='9
http://www.adna.info/news.php?id='7
http://www.artemisfowl.info/news.php?id='12
http://www.metal1.info/news/news.php?id='7216
http://pannar.info/news.php?id='27&country_id='1
http://www.pannar.info/news.php?id='65&country_id='13
http://hal9000.visioni.info/dibimel/html/news.php?id='44&area='1
http://www.discostrefa.info/news.php?id='824
http://www.coating.info/gongzi/news.php?id='25
http://www.lemuse.info/news.php?id='9


Read More Add your Comment 0 comments


 

Categories

OWNER

ISLAMABAD, PAKISTAN, Pakistan
BASICS OF HACKING

© 2010 CAIN & ABLE All Rights Reserved Blogger Template by FAIZAN