📚 OpenRCE is preserved as a read-only archive. Launched at RECon Montreal in 2005. Registration and posting are disabled.








Flag: Tornado! Hurricane!

 Forums >>  IDA Pro  >>  IDAPython and String List (strlist.hpp)

Topic created on: January 11, 2007 13:12 CST by bmazic .

I've noticed that string list manipulation API (strlist.hpp from IDA SDK) is not included with IDAPython 0.8.0. Does anybody have a ready made fix for it? How difficult would it be to include it in IDAPython? Are there any other functions available in IDAPython that deal with strings?

  Dyce     January 14, 2007 05:22.06 CST
Your wish is my command. ;)

A new version of the plugin, that has strlist wrapped, is coming soon. If you feel adventurous, you can fetch a copy of version 0.8.93 from the pre-releases page. There are Windows binaries for IDA 5.0 and Python 2.4 & 2.5.

This example will list all the strings from a 4KiB block, starting at the cursor:


refresh_strlist(here(), here()+0x1000)

for i in range(get_strlist_qty()):
  si = string_info_t()
  get_strlist_item(i, si)
  print "%x %d %d" % (si.ea, si.length, si.type)

  bmazic   January 15, 2007 12:32.53 CST
Thanks, I've tried it and it seems to work fine. Still, I have another question ;-) How do I get the actual string, once I have the EA and the length of the string. I think IDA API provides get_bytes() and get_many_bytes() for such thing, but it seems to me they are not available in IDAPython.

BTW, IDAPython rocks!

Note: Registration is required to post to the forums.

There are 31,328 total registered users.


Recently Created Topics
[help] Unpacking VMP...
Mar/12
Reverse Engineering ...
Jul/06
let 'IDAPython' impo...
Sep/24
set 'IDAPython' as t...
Sep/24
GuessType return une...
Sep/20
About retrieving the...
Sep/07
How to find specific...
Aug/15
How to get data depe...
Jul/07
Identify RVA data in...
May/06
Question about memor...
Dec/12


Recent Forum Posts
Finding the procedur...
rolEYder
Question about debbu...
rolEYder
Identify RVA data in...
sohlow
let 'IDAPython' impo...
sohlow
How to find specific...
hackgreti
Problem with ollydbg
sh3dow
How can I write olly...
sh3dow
New LoadMAP plugin v...
mefisto...
Intel pin in loaded ...
djnemo
OOP_RE tool available?
Bl4ckm4n


Recent Blog Entries
halsten
Mar/14
Breaking IonCUBE VM

oleavr
Oct/24
Anatomy of a code tracer

hasherezade
Sep/24
IAT Patcher - new tool for ...

oleavr
Aug/27
CryptoShark: code tracer ba...

oleavr
Jun/25
Build a debugger in 5 minutes

More ...


Recent Blog Comments
nieo on:
Mar/22
IAT Patcher - new tool for ...

djnemo on:
Nov/17
Kernel debugger vs user mod...

acel on:
Nov/14
Kernel debugger vs user mod...

pedram on:
Dec/21
frida.github.io: scriptable...

capadleman on:
Jun/19
Using NtCreateThreadEx for ...

More ...


Imagery
SoySauce Blueprint
Jun 6, 2008

[+] expand

View Gallery (11) / Submit