<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>itsme's Blog</title><link>http://blogger.xs4all.nl/itsme/</link><description /><managingEditor>itsme</managingEditor><dc:language>en-US</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>itsme</dc:creator><title>filip</title><link>http://blogger.xs4all.nl/itsme/archive/2008/06/16/396702.aspx</link><pubDate>Mon, 16 Jun 2008 14:47:00 GMT</pubDate><guid>http://blogger.xs4all.nl/itsme/archive/2008/06/16/396702.aspx</guid><wfw:comment>http://blogger.xs4all.nl/itsme/comments/396702.aspx</wfw:comment><comments>http://blogger.xs4all.nl/itsme/archive/2008/06/16/396702.aspx#Feedback</comments><slash:comments>16</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/itsme/comments/commentRss/396702.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/itsme/services/trackbacks/396702.aspx</trackback:ping><description>wednesday june, 11th 2008, our second son, filip was born.

&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/itsme/31298/r_20080613222535-0299-n.jpg"&gt;
&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/itsme/31298/r_s20080611202641-0223-n.jpg"&gt;

&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/itsme/31298/r_s20080613123022-0242-n.jpg"&gt;
&lt;hr&gt;
this is big brother now:
&lt;img src="http://blogger.xs4all.nl//images/blogger_xs4all_nl/itsme/31298/r_s20080614191516-0345-n.jpg"&gt;
&lt;img src ="http://blogger.xs4all.nl/itsme/aggbug/396702.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>itsme</dc:creator><title>itsutils</title><link>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393615.aspx</link><pubDate>Sun, 01 Jun 2008 21:56:00 GMT</pubDate><guid>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393615.aspx</guid><wfw:comment>http://blogger.xs4all.nl/itsme/comments/393615.aspx</wfw:comment><comments>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393615.aspx#Feedback</comments><slash:comments>1060</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/itsme/comments/commentRss/393615.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/itsme/services/trackbacks/393615.aspx</trackback:ping><description>itsutils is a set of tools that make life of the windows ce hacker easier.

for instance, with pmemdump you can inspect the memory of the kernel or running processes.&lt;br&gt;
with 'psetmem' you can modify memory&lt;br&gt;
with pregutl you can read or change the devices register.&lt;br&gt;
with pmemmap you can get a quick overview of what physical memory is mapped where.&lt;br&gt;
with pps you can get a list of processes, threads or modules.&lt;br&gt;
with pdocread, pdocwrite you can read disk-on-chip flash chips.&lt;br&gt;
with psdread, psdwrite you can read/write sdcards.&lt;br&gt;
with ppostmsg you can send windows messages to windows, or list all windows on the device.&lt;br&gt;
&lt;p&gt;
memdump, setmem, regutl, postmsg, sdread and sdwrite are win32 versions of these tools that do the same thing on your normal windows machine.&lt;br&gt;
&lt;p&gt;
other tools: prapi, to change settings using the configapi, like certificates, registrykeys, metabase entries.&lt;br&gt;
&lt;p&gt;
pget, pput, pdel, pdir, pmkdir can be used to copy from/to, delete, list files, or create directories.&lt;br&gt;
&lt;p&gt;
prun and pkill  can be used to start or stop processes&lt;br&gt;
preboot remotely reboots your device.&lt;br&gt;
&lt;p&gt;
then there is dump, which is a universal hexdump tool.&lt;br&gt;


this is all described on &lt;a href="http://www.xs4all.nl/~itsme/projects/xda/tools.html"&gt;this page&lt;/a&gt;.

you can leave remarks here on this blog.
&lt;img src ="http://blogger.xs4all.nl/itsme/aggbug/393615.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>itsme</dc:creator><title>IDA Perl Scripting</title><link>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393559.aspx</link><pubDate>Sun, 01 Jun 2008 13:16:00 GMT</pubDate><guid>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393559.aspx</guid><wfw:comment>http://blogger.xs4all.nl/itsme/comments/393559.aspx</wfw:comment><comments>http://blogger.xs4all.nl/itsme/archive/2008/06/01/393559.aspx#Feedback</comments><slash:comments>38</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/itsme/comments/commentRss/393559.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/itsme/services/trackbacks/393559.aspx</trackback:ping><description>i created a plugin for &lt;a href="http://www.hex-rays.com"&gt;ida (the interactive disassembler)&lt;/a&gt;, which allows you to script ida in perl.
the current api is identical to the ida idc scripting language.

current features:
&lt;ul&gt;
&lt;li&gt;api identical to the IDC scripting language.
&lt;li&gt;printing to STDOUT, is redirected to the ida message window
&lt;li&gt;you can choose to create a new perl instance for every script you want to run, or to reuse the last interpreter.
&lt;li&gt;every database can have some 'autorun' code, which is executed everytime you start ida, for instance to add hotkeys specific to this database.
&lt;li&gt;perl syntax errors are printed in the ida message window
&lt;/ul&gt;

todo:
&lt;ul&gt;
&lt;li&gt;create 'import idc' function, which can convert idc scripts to perl.
&lt;li&gt;create better ui to manage scripts.
&lt;li&gt;create method of interacting with IDA/IDAPerl from an externally running perl script
&lt;li&gt;add support for the complete IDA api.
&lt;li&gt;hook ida notification points
&lt;li&gt;make scripts interruptable
&lt;/ul&gt;

see &lt;a href="http://www.xs4all.nl/~itsme/projects/idcperl/"&gt;this page on my site&lt;/a&gt;, or &lt;a href="http://www.openrce.org/forums/topics/2"&gt;this openrce forum&lt;/a&gt;
&lt;img src ="http://blogger.xs4all.nl/itsme/aggbug/393559.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>itsme</dc:creator><title>strange byte sequence in arm binaries</title><link>http://blogger.xs4all.nl/itsme/archive/2008/03/21/363580.aspx</link><pubDate>Fri, 21 Mar 2008 22:17:00 GMT</pubDate><guid>http://blogger.xs4all.nl/itsme/archive/2008/03/21/363580.aspx</guid><wfw:comment>http://blogger.xs4all.nl/itsme/comments/363580.aspx</wfw:comment><comments>http://blogger.xs4all.nl/itsme/archive/2008/03/21/363580.aspx#Feedback</comments><slash:comments>34</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/itsme/comments/commentRss/363580.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/itsme/services/trackbacks/363580.aspx</trackback:ping><description>&lt;pre&gt;00000000 00004033 00444101 09401050 00004005 00534c01 09401050 00002078
00534c01 802910ec 0000c0f0 00534b01 812910ec 00000000 00545204 813910ec
0000900b 00545204 813910ec 0000d0c9 00545204 813910ec 0000e04c 00545204
13001186 000050ba 004c4404 0020100b 0000a0cc 00474e05 905010b7 00006008
00433306 920010b7 00000476 00433306&lt;/pre&gt;

these 0x90 bytes ( or 0x24 dwords ) occur often in windows ce arm binaries
&lt;p&gt;
does anyone know what it is for?&lt;br&gt;
my guess is that it is some kind of padding between static data sections of different modules.
&lt;p&gt;
another one is &lt;pre&gt;85E0B100 11D104FA A000DAB7 D64803C9&lt;/pre&gt;
that also seems to occur in many binaries without obvious reason.
&lt;hr&gt;
&lt;a href="http://www.hex-rays.com/forum/viewtopic.php?f=9&amp;t=2034"&gt;igorsk found out&lt;/a&gt; that the first block is defined in halether.h  - EdbgVendorIds&lt;img src ="http://blogger.xs4all.nl/itsme/aggbug/363580.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>itsme</dc:creator><title>starting to use xs4all's blogging service</title><link>http://blogger.xs4all.nl/itsme/archive/2008/03/12/360936.aspx</link><pubDate>Wed, 12 Mar 2008 09:33:00 GMT</pubDate><guid>http://blogger.xs4all.nl/itsme/archive/2008/03/12/360936.aspx</guid><wfw:comment>http://blogger.xs4all.nl/itsme/comments/360936.aspx</wfw:comment><comments>http://blogger.xs4all.nl/itsme/archive/2008/03/12/360936.aspx#Feedback</comments><slash:comments>47</slash:comments><wfw:commentRss>http://blogger.xs4all.nl/itsme/comments/commentRss/360936.aspx</wfw:commentRss><trackback:ping>http://blogger.xs4all.nl/itsme/services/trackbacks/360936.aspx</trackback:ping><description>hope to post more often than i used to update my static &lt;a href="http://www.xs4all.nl/~itsme/"&gt;homepage&lt;/a&gt;&lt;img src ="http://blogger.xs4all.nl/itsme/aggbug/360936.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>
