Skip to main content

Posts

Featured Post

Spirit Talker

Inside the Spirit Talker App: How It Works — And Why It Scores 10/10 on the “Fake” Scale Conclusion upfront: 10/10 FAKE. Today I focused on another massively popular “spirit communication” app called Spirit Talker . It’s widely used in paranormal communities, and many people believe it provides intelligent, contextual responses from spirits. After fully decompiling the application and analyzing every part of its code, here’s what it actually does — and more importantly — what it doesn’t do. Dictionary Type → Encrypted, pre-written word lists. Instead of hard-coding the words like ParaTek or Ovilus-style App Inventor apps, Spirit Talker stores its vocabulary inside encrypted files . When the app opens, it simply decrypts these files into memory. No words are generated by AI. No words come from external sources. Everything the app can ever say is written ahead of time. There is no communication channel with spirits or anything external. Dictionary ...
Recent posts

ITC Paralus

Today I checked out  ITC Paralus . Not much to say here as this is just a different copy of ParaTek. It's actually created by ParaTek, as seen in the source here . I did update the wordlist, as it's slightly different, but barely. UPDATE: Looks like they deleted this app from the play store. Unsure as to why, but either way it's no longer a valid link.  Dictionary Type:     -> Hard coded word list. ( View here ) Dictionary Source Used:     -> Ovilus Word List. ( https://www.digitaldowsing.com/word-list/) Developed with:     -> App Inventor. ( https://appinventor.mit.edu/ ) Conclusion: 10/10 FAKE. Decompiled Source: HERE .

Paratek AI Speech Generator

Today I focused on a popular a paranormal hunting application called ParaTek . It uses random AI status bars, and magnetic field readings to show any fluctuations.  Dictionary Type:     -> Hard coded word list. ( View here ) Dictionary Source Used:     -> Ovilus Word List. ( https://www.digitaldowsing.com/word-list/ ) Developed with:     -> App Inventor. ( https://appinventor.mit.edu/ ) To keep this short, I'll refer to AppInventors main website, displaying examples of how you can use a list of words to be randomly selected from, then have it speak to you out loud. Here is the example:  https://appinventor.mit.edu/explore/ai2/magic-8-ball . In this example tutorial, they demonstrate creating a "list" of words, and having it select random items from it and speak out the results to the users using a text to speech engine. Now, to the actual code that is decompiled. For the r...