Page 1 of 2 12 LastLast
Results 1 to 10 of 16
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 ...
  1. #1
    TheShadowMaster's Avatar
    Join Date
    Aug 2009
    Posts
    234
    Downloads
    0
    Uploads
    0

    Lightbulb 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.

  2. #2
    God
    God is offline
    Banned
    Join Date
    Aug 2009
    Posts
    58
    Downloads
    0
    Uploads
    0

    Default

    WTF you talkin bout? No one on here knows what you talkin bout

  3. #3
    cooper1010's Avatar
    Join Date
    May 2009
    Location
    cape cod, ma
    Posts
    142
    Downloads
    0
    Uploads
    0

    Default

    thanks, op. i just made some delicious vegetable soup!

  4. #4
    TheShadowMaster's Avatar
    Join Date
    Aug 2009
    Posts
    234
    Downloads
    0
    Uploads
    0

    Arrow

    Quote Originally Posted by God View Post
    WTF you talkin bout? No one on here knows what you talkin bout

    I am sure someone understands it.

  5. #5

    Join Date
    Jun 2009
    Posts
    171
    Downloads
    0
    Uploads
    0

    Default

    are you just making stuff up honestly

  6. #6
    TheShadowMaster's Avatar
    Join Date
    Aug 2009
    Posts
    234
    Downloads
    0
    Uploads
    0

    Lightbulb ...

    Quote Originally Posted by kiwicarlos741 View Post
    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....

  7. #7
    cooper1010's Avatar
    Join Date
    May 2009
    Location
    cape cod, ma
    Posts
    142
    Downloads
    0
    Uploads
    0

    Default

    Quote Originally Posted by TheShadowMaster View Post
    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. .

  8. #8
    TheShadowMaster's Avatar
    Join Date
    Aug 2009
    Posts
    234
    Downloads
    0
    Uploads
    0

    Lightbulb ....

    Quote Originally Posted by cooper1010 View Post
    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 $_;
    }
    }

  9. #9
    cooper1010's Avatar
    Join Date
    May 2009
    Location
    cape cod, ma
    Posts
    142
    Downloads
    0
    Uploads
    0

    Default


  10. #10
    fr4nk1yn's Avatar
    Join Date
    Aug 2008
    Posts
    1,606
    Downloads
    0
    Uploads
    0

    Default

    YOU felt that HIS source shouldn't be closed?
    "If you stand behind me... Your gonna get kicked."

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •