Top

Md5 Decoder


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  2.5 (of 4 scores)
Date Added  Aug 12, 2006
Last Updated  Aug 12, 2006
Tags  decoder  md5 

Introduction

This Code decodes md5 texts. Work /md5.decode text command eg.
/md5.decode 014fe11a93ce59a35f0a59a71dd87e89

Grab the Code

; Md5 Decoder By SCouNDReL
; This Addon Decodes Md5 texts
; Usage, /md5.decode text
; eg. /md5.decode 014fe11a93ce59a35f0a59a71dd87e89
 
alias md5.decode { if ($1) { set %md5.decode $1- | sockopen $+(md5,$ctime) md5.rednoize.com 80 } | else { echo -a write md5 text } }
on *:SockOpen:md5*:{
  var %s sockwrite -n $sockname
  %s GET $+(/,?q=,%md5.decode,&b=MD5-Search) HTTP/1.1
  %s host: md5.rednoize.com
  %s $crlf
}
on *:SockRead:md5*:{
  var %a
  sockread %a
  if ($sockerr) { echo -a Error! }  
  if ($str(&nbsp;,3) isin %a) { echo -a $remove(%a,<h3>,&nbsp;) | sockclose md5* }
}
on *:SockClose:md5*:{ echo -a Couldn't Find }
 

Comments

  (1)  RSS
Noutrious
Comments: 365
 
mIRC Snippet:  Md5 Decoder
Posted on Jun 15, 2007 12:29 pm
Doesn't work.

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom