Re: [sqlmap-users] File Dump Write Error
Brought to you by:
inquisb
From: Chris O. <chr...@gm...> - 2011-12-20 13:21:00
|
Hi Miroslav That, along with the dump-all stop=x fix, work perfectly. Thank you very much for such a prompt fix! Regards Chris On 20 December 2011 13:09, lnxg33k <ah...@is...> wrote: > On 12/20/2011 02:43 PM, Chris Oakley wrote: > > Hi > > The first table in a DB is called: "dbo. " (with spaces). After > dumping the table, the following output is received: > > [12:40:39] [CRITICAL] there has been a file opening error for filename > 'C:\Program Files\sqlmap\output\***\dump\ > ***\dbo." ".csv'. Please check write permissions on a file and that it's > not locked by another process. > > I think this is down to the spaces (certainly no permission problems). > > Regards > > Chris > > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/joinhttp://p.sf.net/sfu/intel-appdev > > > > _______________________________________________ > sqlmap-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/sqlmap-users > > If it's space related try to edit line 327 in sqlmap/lib/core/dump.py > from: dumpFileName = "%s%s%s.csv" % (dumpDbPath, os.sep, table) > to: dumpFileName = "%s%s%s.csv" % (dumpDbPath, os.sep, > table.rstrip().rstrip('.')) > |