Re: [sqlmap-users] Fwd: Bad Encoding

2013-08-20 Thread Miroslav Stampar
Hi. Use --binary-fields option for retrieving binary data. It will retrieve and represent data in it's hexadecimal form. Afterwards you can decode that data into it's binary form by yourself. Example: python sqlmap.py -u "http://testphp.vulnweb.com/artists.php?artist=2"; --technique=BU --dump -T

Re: [sqlmap-users] Fwd: Bad Encoding

2013-08-20 Thread Brandon Perry
The hash will be stored as binary data, so the pairs (0xab0xcd0xef) will give you the actual hash (abcdef) instead of expecting the 0xab to be an ASCII printable representation of a byte of the hash. Make sense? Sent from a computer On Aug 20, 2013, at 12:48, Douglas Brancaglion wrote: > >

Re: [sqlmap-users] Fwd: Bad Encoding

2013-08-20 Thread Douglas Brancaglion
Brandon, you know how I can extract a hash (md5 or sha) that? Tks! 2013/8/20 Brandon Perry > Or binary md5 > > Sent from a computer > > On Aug 20, 2013, at 7:56, Douglas Brancaglion > wrote: > > > Hello guys, I have researched a lot about my case even more could not get an > answer that resolv

Re: [sqlmap-users] Fwd: Bad Encoding

2013-08-20 Thread Brandon Perry
Or binary md5 Sent from a computer On Aug 20, 2013, at 7:56, Douglas Brancaglion wrote: > > Hello guys, I have researched a lot about my case even more could not get an > answer that resolves my problem. > > In some tests I came across a possible "hash" that is within a table in a > microso

Re: [sqlmap-users] Fwd: Bad Encoding

2013-08-20 Thread Brandon Perry
Sha-1 hash stored as binary? Sent from a computer On Aug 20, 2013, at 7:56, Douglas Brancaglion wrote: > > Hello guys, I have researched a lot about my case even more could not get an > answer that resolves my problem. > > In some tests I came across a possible "hash" that is within a table