You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Stingray is an IDAPython plugin for finding function strings. The search is from the current position onwards in the current function.It can do it recursively also with configurable search depth.The results order is the natural order of strings in the BFS search graph.
For each found string it displays the xref address, the string address,the string type and the of course the string itself.
Stingray by Example
#include<stdio.h>voidbar(){printf("hello from bar\n");}voidfoo(){wprintf(L"hello from foo\n");bar();}voidfoo2(){wprintf(L"hello from foo2\n");bar();}voidmain(){printf("hello from main\n");foo();foo2();getchar();}
My Stingray was configured to recursive search we depth of 3.I put the cursor on main function and hit Shift+S.We get the following Stingray output:
Notice the Xrefs are clickable !:)
Requirements
IDA (Hex Rays Interactive Disassembler) version >= 6 with IDAPython
tested on IDA 6.1.1, 7.0,7.2
IDA 7.4 support was added in branch7.4 (kudos to @0xricksanchez)
Tell us about your experience on higher versions!
Installation
Copy src/Stingray.py file to the plugins directory of IDA (%IDAPATH%\plugins)and restart IDA.
You are ready to go :)
Usage and Menus
load your favourite binary with IDA.To find strings in the current function from your position onwardshitShift+s.
Stingray can also be found in Edit/Plguins/Stingray menu.
Stingray finds strings recursively ! you can configure the search depth inthe Stingray Config menu.
Stingray Config
You can configure Stingray anytime from Options\Stingray Config menu.
You can configure the search depth. For non-recursive search modechoose 0 depth.
By default, Stingray is in non-recursive mode.
About
IDAPython plugin for finding function strings recursively