Re: Finding a text in raw data(size nearly 10GB) and Printing its memory address using python

2018-04-23 Thread Hac4u
On Tuesday, April 24, 2018 at 4:13:17 AM UTC+5:30, MRAB wrote: > On 2018-04-23 22:11, Hac4u wrote: > > On Tuesday, April 24, 2018 at 12:54:43 AM UTC+5:30, MRAB wrote: > >> On 2018-04-23 18:24, Hac4u wrote: > >> > I have a raw data of size nearly 10GB. I would like to

Re: Finding a text in raw data(size nearly 10GB) and Printing its memory address using python

2018-04-23 Thread Hac4u
On Tuesday, April 24, 2018 at 12:54:43 AM UTC+5:30, MRAB wrote: > On 2018-04-23 18:24, Hac4u wrote: > > I have a raw data of size nearly 10GB. I would like to find a text string > > and print the memory address at which it is stored. > > > > This is my code >

Re: Finding a text in raw data(size nearly 10GB) and Printing its memory address using python

2018-04-23 Thread Hac4u
On Tuesday, April 24, 2018 at 1:28:07 AM UTC+5:30, Paul Rubin wrote: > Hac4u writes: > > I have a raw data of size nearly 10GB. I would like to find a text > > string and print the memory address at which it is stored. > > The simplest way is probably to mmap the f

Re: Finding a text in raw data(size nearly 10GB) and Printing its memory address using python

2018-04-23 Thread Hac4u
On Monday, April 23, 2018 at 11:01:39 PM UTC+5:30, Chris Angelico wrote: > On Tue, Apr 24, 2018 at 3:24 AM, Hac4u wrote: > > I have a raw data of size nearly 10GB. I would like to find a text string > > and print the memory address at which it is stored. > > > > This i

Finding a text in raw data(size nearly 10GB) and Printing its memory address using python

2018-04-23 Thread Hac4u
I have a raw data of size nearly 10GB. I would like to find a text string and print the memory address at which it is stored. This is my code import os import re filename="filename.dmp" read_data=2**24 searchtext="bd:mongo:" he=searchtext.encode('hex') with open(filename, 'rb') as f: while T