quentinhardy / odat

ODAT: Oracle Database Attacking Tool
1.6k stars 345 forks source link

Detect new version Oracle (18 and later) #32

Closed zw0nner closed 5 years ago

zw0nner commented 5 years ago

My code for versions 18 and later: if len(hexVsnnum) == 7: hexVersionList = struct.unpack('cc2sc2s',hexVsnnum) elif len(hexVsnnum) == 8: hexVersionList = struct.unpack('2sc2sc2s',hexVsnnum)

quentinhardy commented 5 years ago

Thank you. I have done some modifications and ODAT is now compatible with Oracle Database 18c.