Friday, August 31, 2012

Hash Types & Tips

DES(Unix)
Example: IvS7aeT4NzQPM
Used in Linux and other similar OS.
Length: 13 characters.
Description: The first two characters are the salt (random characters; in our example the salt is the string “Iv”), then there follows the actual hash.
Notes: [1] [2]

Domain Cached Credentials
Example: Admin:b474d48cdfc4974d86ef4d24904cdd91
Used for caching passwords of Windows domain.
Length: 16 bytes.
Algorithm: MD4(MD4(Unicode($pass)).Unicode(strtolower($username)))
Note: [1]

MD5(Unix)
Example: $1$12345678$XM4P3PrKBgKNnTaqG9P0T/
Used in Linux and other similar OS.
Length: 34 characters.
Description: The hash begins with the $1$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string “12345678?), then there goes one more $ character, followed by the actual hash.
Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.
Notes: [1] [2]

MD5(APR)
Example: $apr1$12345678$auQSX8Mvzt.tdBi4y6Xgj.
Used in Linux and other similar OS.
Length: 37 characters.
Description: The hash begins with the $apr1$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string “12345678?), then there goes one more $ character, followed by the actual hash.
Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.
Notes: [1] [2]

MD5(phpBB3)
Example: $H$9123456785DAERgALpsri.D9z3ht120
Used in phpBB 3.x.x.
Length: 34 characters.
Description: The hash begins with the $H$ signature, then there goes one character (most often the number ’9'), then there goes the salt (8 random characters; in our example the salt is the string “12345678?), followed by the actual hash.
Algorithm: Actually that is a loop calling the MD5 algorithm 2048 times.
Notes: [1] [2]

MD5(WordPress)
Example: $P$B123456780BhGFYSlUqGyE6ErKErL01
Used in WordPress.
Length: 34 characters.
Description: The hash begins with the $P$ signature, then there goes one character (most often the number ‘B’), then there goes the salt (8 random characters; in our example the salt is the string “12345678?), followed by the actual hash.
Algorithm: Actually that is a loop calling the MD5 algorithm 8192 times.
Notes: [1] [2]

MySQL
Example: 606717496665bcba
Used in the old versions of MySQL.
Length: 8 bytes.
Description: The hash consists of two DWORDs, each not exceeding the value of 0x7fffffff.

MySQL5
Example: *E6CC90B878B948C35E92B003C792C46C58C4AF40
Used in the new versions of MySQL.
Length: 20 bytes.
Algorithm: SHA-1(SHA-1($pass))
Note: The hashes are to be loaded to the program without the asterisk that stands in the beginning of each hash.

RAdmin v2.x
Example: 5e32cceaafed5cc80866737dfb212d7f
Used in the application Remote Administrator v2.x.
Length: 16 bytes.
Algorithm: The password is padded with zeros to the length of 100 bytes, then that entire string is hashed with the MD5 algorithm.

MD5
Example: c4ca4238a0b923820dcc509a6f75849b
Used in phpBB v2.x, Joomla version below 1.0.13 and many other forums and CMS.
Length: 16 bytes.
Algorithm: Same as the md5() function in PHP.

md5($pass.$salt)
Example: 6f04f0d75f6870858bae14ac0b6d9f73:1234
Used in WB News, Joomla version 1.0.13 and higher.
Length: 16 bytes.
Note: [1]

md5($salt.$pass)
Example: f190ce9ac8445d249747cab7be43f7d5:12
Used in osCommerce, AEF, Gallery and other CMS.
Length: 16 bytes.
Note: [1]

md5(md5($pass))
Example: 28c8edde3d61a0411511d3b1866f0636
Used in e107, DLE, AVE, Diferior, Koobi and other CMS.
Length: 16 bytes.

md5(md5($pass).$salt)
Example: 6011527690eddca23580955c216b1fd2:wQ6
Used in vBulletin, IceBB.
Length: 16 bytes.
Notes: [1] [3] [4]

md5(md5($salt).md5($pass))
Example: 81f87275dd805aa018df8befe09fe9f8:wH6_S
Used in IPB.
Length: 16 bytes.
Notes: [1] [3]

md5(md5($salt).$pass)
Example: 816a14db44578f516cbaef25bd8d8296:1234
Used in MyBB.
Length: 16 bytes.
Note: [1]

md5($salt.$pass.$salt)
Example: a3bc9e11fddf4fef4deea11e33668eab:1234
Used in TBDev.
Length: 16 bytes.
Note: [1]

md5($salt.md5($salt.$pass))
Example: 1d715e52285e5a6b546e442792652c8a:1234
Used in DLP.
Length: 16 bytes.
Note: [1]

SHA-1
Example: 356a192b7913b04c54574d18c28d46e6395428ab
Used in many forums and CMS.
Length: 20 bytes.
Algorithm: Same as the sha1() function in PHP.

sha1(strtolower($username).$pass)
Example: Admin:6c7ca345f63f835cb353ff15bd6c5e052ec08e7a
Used in SMF.
Length: 20 bytes.
Note: [1]

sha1($salt.sha1($salt.sha1($pass)))
Example: cd37bfbf68d198d11d39a67158c0c9cddf34573b:1234
Used in Woltlab BB.
Length: 20 bytes.
Note: [1]

SHA-256(Unix)
Example: $5$12345678$jBWLgeYZbSvREnuBr5s3gp13vqi
Used in Linux and other similar OS.
Length: 55 characters.
Description: The hash begins with the $5$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string “12345678?), then there goes one more $ character, followed by the actual hash.
Algorithm: Actually that is a loop calling the SHA-256 algorithm 5000 times.
Notes: [1] [2]

SHA-512(Unix)
Example: $6$12345678$U6Yv5E1lWn6mEESzKen42o6rbEm
Used in Linux and other similar OS.
Length: 98 characters.
Description: The hash begins with the $6$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string “12345678?), then there goes one more $ character, followed by the actual hash.
Algorithm: Actually that is a loop calling the SHA-512 algorithm 5000 times.


Tips:
1st put you hash in google. SOme time it bring result if already cracked
Crack Those with "Password Pro" & "Cat hash"
There are many online sites which crack hashes.
Make a good word list of crack hashes. May be about 100GB. Best way to crack fast :P

Thursday, August 30, 2012

50 EU Government sites Hacked & Defaced By Robot Pirates

  ____        _           _     ____  _           _           
 |  _ \  ___ | |__   ___ | |_  |  _ \(_)_ __ __ _| |_  ___ ___
 | |_) |/ _ \| '_ \ / _ \| __| | |_) | | '__/ _` | __|/ _ | __|
 |  _ <| (_) | |_) | (_) | |_  |  __/| | | | (_| | |_|  __|__ \
 |_| \_\\___/|_.__/ \___/ \__| |_|   |_|_|  \__,_|\__|\___|___/
 


[#] 50 EU Government Sites Hacked by Rob0t Pirates
[#] August 30, 2012
[#] http://robotpirates1337.blogspot.com

Hacked Sites List:

http://www.quero.gob.ec/cfr.html
http://www.eloyalfaro.gob.ec/cfr.html
http://www.municipiosanmiguel.gob.ec/cfr.html
http://www.biblian.gob.ec/cfr.html
http://www.municipiobanos.gob.ec/cfr.html
http://www.ame.gob.ec/cfr.html
http://www.ame.gov.ec/cfr.html
http://www.epapap.gob.ec/cfr.html
http://www.ventanas.gob.ec/cfr.html
http://www.valencia.gob.ec/cfr.html
http://www.municipiotaisha.gob.ec/cfr.html
http://www.santaana.gob.ec/cfr.html
http://www.sanvicente.gob.ec/cfr.html
http://www.santaclara.gob.ec/cfr.html
http://www.sanfernando.gob.ec/cfr.html
http://www.sancristobalgalapagos.gob.ec/cfr.html
http://www.quininde.gob.ec/cfr.html
http://www.caluma.gob.ec/cfr.html
http://www.gonzalopizarro.gob.ec/cfr.html
http://www.pimampiro.gob.ec/cfr.html
http://www.penipe.gob.ec/cfr.html
http://www.municipiodepaute.gob.ec/cfr.html
http://www.pangua.gob.ec/cfr.html
http://www.municipiodepalenque.gob.ec/cfr.html
http://www.pajan.gob.ec/cfr.html
http://www.olmedo.gob.ec/cfr.html
http://www.montecristi.gob.ec/cfr.html
http://www.municipiomocha.gob.ec/cfr.html
http://www.chillanes.gob.ec/cfr.html
http://www.limonindanza.gob.ec/cfr.html
http://www.municipiodejunin.gob.ec/cfr.html
http://www.munjoyasachas.gob.ec/cfr.html
http://www.jaramijo.gob.ec/cfr.html
http://www.elchaco.gob.ec/cfr.html
http://www.municipiodecolta.gob.ec/cfr.html
http://www.elcarmen.gob.ec/cfr.html
http://www.latacunga.gob.ec/cfr.html
http://www.huaca.gob.ec/cfr.html
http://www.marcabeli.gob.ec/cfr.html
http://www.pedernales.gob.ec/cfr.html
http://www.mocache.gob.ec/cfr.html
http://www.municipiocuyabeno.gob.ec/cfr.html
http://www.canar.gob.ec/cfr.html
http://www.24demayo.gob.ec/cfr.html
http://www.gobiernodechambo.gob.ec/cfr.html
http://www.municipiopujili.gob.ec/cfr.html
http://www.gobiernomunicipaldecolimes.gob.ec/cfr.html
http://www.municipioarosemenatola.gob.ec/cfr.html
http://www.tisaleo.gob.ec/cfr.html
http://www.municipionaranjito.gob.ec/cfr.html

Mirrors:

http://hack-db.com/team/Robot%20Pirates/all.html
http://www.hack-mirror.com/onhold.html
http://zone-hc.com/onhold/

Wednesday, August 29, 2012

Blogger.com.np Hacked By Robot Pirates


Pakistani hacker name as "cfr" from Robot Pirates hacked blooger.com.np. This site is consider as one on huge and well secured site
Hacked site says:
"
Game is not 0ver Yet!
Pwn3d By Cfr
[#] Too hot to handle, Too cold to hold . . . Inernet belong to Us! Not we Belong to net
We Are
Cfr - Zqor - Cos - Reaper - Dr Ninja
"

Hacked Site:
http://blogger.com.np/
http://zone-hc.com/archive/mirror/081c468_blogger.com.np_mirror_.html

Traffic info:
http://www.alexa.com/siteinfo/blogger.com.np

Viruses & Malwares Please!


Tuesday, August 28, 2012

35+ India's sites Hacked By Robot Pirates

  ____       _      ___  _     ____  _           _           
 |  _ \ ___ | |__  / _ \| |_  |  _ \(_)_ __ __ _| |_ ___  ___
 | |_) / _ \| '_ \| | | | __| | |_) | | '__/ _` | __/ _ \/ __|
 |  _ < (_) | |_) | |_| | |_  |  __/| | | | (_| | ||  __/\__ \
 |_| \_\___/|_.__/ \___/ \__| |_|   |_|_|  \__,_|\__\___||___/


 [#] Offical Blog :
 http://robotpirates1337.blogspot.com/

 [#] Reason to Hack :
 Indian's try 2 Enter In Pakistani Cyber Space

[#] ISO Certification
http://www.iso9001certification.in/cfr.html
http://zone-h.org/mirror/id/18260280

[#] Indian Bank Pwned :)
http://www.iasqbank.com/
Bank Database:
http://www.mediafire.com/?56258sb1sau6a3d

[#] Media Sites
http://www.webservemedia.com/
http://blog.webservemedia.com/

http://msminstitute.co.in/cfr.php
http://wowtein.com/cfr.html
http://wowtein.in/
http://bestinbuy.in/
http://bestinbuy.com/
http://valenciagreen.com/
http://khadau.com/cfr.html
http://wowarts.net/
http://wowartsmagazine.in/cfr.html
http://stpetersschool.in/cfr.html
http://fmsschools.in/cfr.html
http://sitmeducation.in/
http://blueblazer.in/cfr.html
http://dhetrawalgroup.co.in/cfr.html
http://indiantraditionalclothes.com/cfr.html
http://karniro.com/cfr.html
http://sarthiindia.in/cfr.html
http://thehotelrajpalace.com/cfr.html
http://viragsagar.co.in/cfr.html
http://bhilwarafebpro.com/
http://bagsandfabrics.com/cfr.html
http://bsis.co.in/cfr.html
http://indiaseoexpert.org/
http://backlinksbuilder.pro/
http://personalblog.in/
http://althea-webdesigner.com/
http://altheafashion.com/
http://generatebacklinks.com
http://generatebacklinks.org/
http://iphone-app-developer.info/
http://websitedevelopment-india.com/

 Mirrors:
 http://www.zone-h.org/archive/notifier=Robot%20Pirates

Thursday, August 16, 2012

MaDLeeTs KeyLogger Coded by Cfr

Author : Cfr
Crew   : MadLeets
Tool   : MadLeeTs Keylogger 
Greetz : h4x0rL1f3, L1nux3rr0r, PhpBugz, Sho0ter,  1337 & Hitcher
We Are : 3rr0rb0t(Dr Ninja),Cb0t(Reaper), Cos & Zqor

Demo:

Download From http://www.madleets.com/showthread.php?tid=97 

Enjoy! 

Robot Pirates Hacked 980 plus Indian 15 Aug 2012

Hey Rob0t Pirates is Back :P

Today is really Awesome Morning for Hacking. Today is 15 August 2012.

And we was ready to hack 3 thousand plus Indian sites but at noon we came to know that we have peace deal with India. :( So after that we did not hack any more site. Only due to H4x0rL1f3.

But this was morning break fast. This was proof. :P

 Regards!