This is a discussion on Cell Stalker Homebrew Decoded Source within the webOS forums; Ironically I came across the application "cell stalker" on precentral.net tonight and decided to see if I could take a ...
-
Cell Stalker Homebrew Decoded Source
Ironically I came across the application "cell stalker" on precentral.net tonight and decided to see if I could take a look at the source code to this application. The funny thing was that the programmer encoded the main-assistant.js file (the basic controller to the main scene) in SHELLCODE.
I did not feel that the source code should be closed so I am going to post the actual source code here after decompiling the Shell Code into standard ASCII....
Here is an exert of the shell code :
Removed by Admin
There are quite a few more lines to this, you can view the entire shell code by downloading the ipk file from precentral.net http://www.precentral.net/homebrew-apps/cell-stalker and extract the file which will yield 2 more files in tar.gz format, the information resids in data.tar.gz under app/assistance/main-assistant.js
The decoded program is as follows:
Removed by admin
Take special note at the end fo the last line....CookieNewKeySplit...;-)
I did this to illustrate the capabilities of my original post regarding cell tracking...Someone simply beat me to it.
Mind you that this is only the shell code portion of the code, the rest is in HEX and pretty easy to decode.
Enjoy.
Last edited by chris; 09-18-2009 at 03:24 PM.
-
WTF you talkin bout? No one on here knows what you talkin bout
-
thanks, op. i just made some delicious vegetable soup!
-

Originally Posted by
God
WTF you talkin bout? No one on here knows what you talkin bout
I am sure someone understands it.
-
are you just making stuff up honestly
-
...

Originally Posted by
kiwicarlos741
are you just making stuff up honestly
What more proof could you possible want. If you follow the directions you can verify for yourself.
1.) Download the Cell Stalker RIGHT HERE
2.) Extract the tar.gz files
3.) Extract the data.tar.gz file
4.) Navigate to the app/assistants folder
5.) Open main-assistant.js file
5.) READ THE CODE YOURSELF
I do not know how much more clear I can be.
If you wish to verify that my shell code is accurate, decode it yourself but I am assuming that you have no clue what I am talking about....
-

Originally Posted by
TheShadowMaster
What more proof could you possible want. If you follow the directions you can verify for yourself.
1.) Download the Cell Stalker
RIGHT HERE
2.) Extract the tar.gz files
3.) Extract the data.tar.gz file
4.) Navigate to the app/assistants folder
5.) Open main-assistant.
js file
5.) READ THE CODE YOURSELF
I do not know how much more clear I can be.
If you wish to verify that my shell code is accurate, decode it yourself but
I am assuming that you have no clue what I am talking about....
bingo. .
-
....

Originally Posted by
cooper1010
bingo. .
In that case here is a simple Perl script to decode shell code:
# Use perl decodeShellCode < fileWIthShellCode > outputFile
#!/usr/bin/perl
# shellcode2bin
while($line = <STDIN>)
{
chomp($line);
$line =~ s/[^xabcdef0-9]//gis;
@bytes = split /x/, $line;
shift(@bytes);
foreach (@bytes)
{
printf "%c", hex $_;
}
}
-
-
YOU felt that HIS source shouldn't be closed?
"If you stand behind me... Your gonna get kicked."
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks