Tuesday, July 13, 2021

Jeep Cherokee Radio Unlock Code Calculator & Generator

Generate the Jeep Cherokee (Chrysler) car radio unlock code.



Find your radio serial number, enter it into the calculator, and your car radio will be unlocked.



The Jeep radio will ask for a security code to become operational after a breakdown or disconnection of the car battery.

Don't get too stressed if you can't find the code for your radio. This site will assist you in calculating the automobile radio code.

https://www.pelock.com/products/jeep-cherokee-radio-unlock-code-calculator-generator

Our radio calculator supports all radio players installed on Jeep Cherokee and Grand Cherokee models with a supplier code starting with 17719 digits.

Monday, March 15, 2021

Ford V-Serial Radio Unlock Code Calculator

Generate the unlocking radio code for Ford car radio V Serial using our calculator.

Find the serial number (pre code) of your radio, enter it in the calculator & unlock your car radio.

Ford Radio Code V Serial Calculator & Generator


Find Ford radio pre-code

First of all, you should find the so-called pre-code of your car radio to unlock it using our calculator.

What is a pre code? It allows the identification of the car radio. You can find it on a radio placard, but you can also obtain it by selecting a specific radio keys sequence.



Generate the radio unlock code

Once you got your pre-code, you can use our Ford Radio Code V Serial Calculator to generate the unlock code instantly, all done online, you don't have to download any suspicious software or install some shady Android apps.

Our site provides clear instructions of how to read the pre-code using radio keys and how to enter the unlocking code once you have it.

Saturday, March 13, 2021

Toyota ERC Calculator - Radio Code for Japanese Player

What is ERC unlock code?

Usually, a dead battery or removing the device for repairs can cause units to be locked in some Japan imported cars. To unlock the unit it requires ERC unlock code or ERC password.

This website takes ERC serial numbers and decodes them into ERC unlock code / ERC password when entered in Audio Unit restores various functions of unit i.e. radio, cd, DVD player, BT, navigation and other functions of the unit where applicable.

Toyota ERC Calculator & Radio Unlock Code Generator

How to find ERC Serial Number?

Press and hold the main button on your navigation player and turn on & off your parking lights 3 to 4 times until a new screen appears. Press the only active button on the screen and you will get the screen where is your 18 digits serial number.

How to generate the unlock code for Toyota ERC?

Use our Toyota ERC Calculator & Radio Unlock Code Generator to generate the unlocking code from you ERC serial number.

Friday, March 12, 2021

Renault & Dacia Car Radio Code Calculator & Generator

Generate the unlocking code for Renault & Dacia car radio using our calculator.






Find the serial number (pre code) of your radio, enter it in the calculator & unlock your car radio.

Renault Radio Pre-Code

Why is my Renault or Dacia car radio locked down?

Following a breakdown or a disconnection of the car battery, the Renault (or Dacia) vehicle radio will ask for a security code to become operational.

However, if you can't find the code for your radio, do not panic. This guide will help you calculate the car radio code.

Link to the Renault & Dacia Car Radio Code Calculator & Generator.

Ford Radio Code M Serial Calculator & Generator

Generate the activation code for Ford car radio M Serial using our calculator.



Find the serial number (pre code) of your radio, enter it in the calculator & unlock your car radio.

Ford Radio Code M - Pre Code

Following a breakdown or a disconnection of the car battery, the Ford radio will ask for a security code to become operational.

However, if you can't find the code for your radio, do not panic. This guide will help you calculate the car radio code.

Link - Ford Radio Code M Serial Calculator & Generator

Monday, March 8, 2021

Twitter retweet automation - Auto-retweet tool

How to automate Twitter retweeting? Try Social Media Bot browser extension in its latest version. It allows for Twitter retweet automation for any #hashtag page and the search term result.

Twitter retweet automation with Social Media Bot
Twitter retweet automation with Social Media Bot

Features:
  • Retweet tweets from the #hashtag pages
  • Retweet single tweets & user comments
  • Retweet tweets from the search results
Social Media Bot is available for:

Ford Radio Codes for V Model - Online Radio Code Calculator

Radio asking for code? Unlock it now in a few simple steps. Works for any Ford radio V model. Instant and easy online process. 6000 CD, Sony, Travelpilot...


Generate the activation code for Ford car radio V Serial using our calculator. Find the serial number (pre-code) of your radio, enter it in the calculator & unlock your car radio.


Link - Ford Radio Codes Generator

Friday, January 1, 2021

Obfuscate AutoIt Scripts from Python code

If you would like to protect your AutoIt scripts from hackers and decompilation you might want to obfuscate their source code with an AutoIt Obfuscator.

Obfuscation protects the original AutoIt source code against analysis & reverse engineering. Unfortunately, AutoIt decompilation is easy with tools like aut2exe (try it yourself).

Obfuscation protects the AutoIt code against reversing, so even after decompilation the source code will stay safe from prying eyes, hackers, and competition.

Now it's possible to automate this process using Python 3 code with a dedicated Python 3 module:

https://pypi.org/project/autoitobfuscator/

Source code of this module along with usage examples is available at GitHub:

https://github.com/PELock/AutoIt-Obfuscator-Python

Sample usage example in Python:
#!/usr/bin/env python

###############################################################################
#
# AutoIt Obfuscator WebApi interface usage example.
#
# In this example we will obfuscate sample source with default options.
#
# Version        : v1.0
# Language       : Python
# Author         : Bartosz Wójcik
# Web page       : https://www.pelock.com
#
###############################################################################

#
# include AutoIt Obfuscator module
#
from autoitobfuscator import AutoItObfuscator

#
# if you don't want to use Python module, you can import directly from the file
#
#from pelock.autoitobfuscator import AutoItObfuscator

#
# create AutoIt Obfuscator class instance (we are using our activation key)
#
myAutoItObfuscator = AutoItObfuscator("ABCD-ABCD-ABCD-ABCD")

#
# source code in AutoIt v3 format
#
scriptSourceCode = 'ConsoleWrite("Hello World")'

#
# by default all options are enabled, both helper random numbers
# generation & obfuscation strategies, so we can just simply call:
#
result = myAutoItObfuscator.obfuscate_script_source(scriptSourceCode)

#
# it's also possible to pass script path instead of a string with the source e.g.
#
# result = myAutoItObfuscator.obfuscate_script_file("/path/to/script/source.au3")

#
# result[] array holds the obfuscation results as well as other information
#
# result["error"]         - error code
# result["output"]        - obfuscated code
# result["demo"]          - was it used in demo mode (invalid or empty activation key was used)
# result["credits_left"]  - usage credits left after this operation
# result["credits_total"] - total number of credits for this activation code
# result["expired"]       - if this was the last usage credit for the activation key it will be set to True
#
if result and "error" in result:

    # display obfuscated code
    if result["error"] == AutoItObfuscator.ERROR_SUCCESS:

        # format output code for HTML display
        print(result["output"])

    else:
        print(f'An error occurred, error code: {result["error"]}')

else:
  print("Something unexpected happen while trying to obfuscate the code.")

Saturday, July 25, 2020

String & File Encryption Extension for Visual Studio Code

Encrypt and hide plain text strings & files contents within your source code in a secure & encrypted form with the help of a polymorphic engine, generating random-looking decryption code every time.

https://www.stringencrypt.com

Now available as a Visual Studio Code extension.

https://marketplace.visualstudio.com/items?itemName=PELock.stringencrypt

Simple & fast encryption — try it yourself!

Encrypt new string directly from the Visual Studio Editor



Encrypt selected strings



Insert and encrypt files into your source code



Monday, July 20, 2020

Top ten reverse engineering tools

Are you interested in software reverse engineering? You would like to know how to peek inside compiled applications, how to restore source code from binary code? Here is a list of top ten reverse engineering tools to do that.

IDA Disassembler, debugger & decompiler
IDA Disassembler, debugger & decompiler



Thursday, July 16, 2020

The best reverse engineering tools for .NET apps

The best reverse engineering tools for .NET applications. It is very different from classic tools used for the reversing of native x86 / x64 applications in PE (Windows EXE/DLL Portable Executable) or ELF (Linux Executable and Linkable Format) formats.



Different code architecture forced to create a whole range of dedicated tools for .NET executable files, I will try to present some of them that may be useful in software reversing.

Read the full article at:

Sunday, July 5, 2020

Assembly Optimization Tips - Optimize Assembler Code For Size

There is one particular area of assembly programming that focues on size optimization. I have used this knowledge many times in many of my software reverse engineering projects to modify compiled binaries with a limited amount of space available to include the modified code or to develop shellcodes for 0 day exploits, where again the size of the shellcode is limited.



Read the free article about assenbly optimization tips at:

https://dev.to/pelock/assembly-code-size-optimization-tricks-2abd

I also recommend this one:

http://mark.masmcode.com/

Thursday, July 2, 2020

Total Commander FTP Password Recovery Tool

Total Commander is a popular file manager for Windows, Windows CE, Windows Phone, and now also Android.

Total Commander has a built-in FTP client and it keeps the FTP logins and passwords in wcx_ftp.ini configuration file in an encrypted format.

Total Commander FTP Password Recovery Tool


Total Commander FTP Password Recovery Tool allows you to recover the FTP account password information for all versions of Total Commander / Windows Commander.

https://www.pelock.com/products/total-commander-ftp-password-recovery

Additionally, you will find there the original reverse engineered source code of the decryption algorithm in x86 assembly and in a more friendly PHP source code format.

Friday, May 29, 2020

Steganography Online Tool & Codec - Hide Message in Image

What is steganography and how it works?


The art and science of hiding information by embedding messages within other, seemingly harmless files like images and photos.

With our steganography online tool you will be able to conceal any text message in the image in a secure manner and send it without raising any suspicion. It will only be possible to read the message after entering the decryption password.

https://www.pelock.com/products/steganography-online-codec

In this case, the individual bits of the encrypted hidden message is saved as the least significant bits in the RGB color components in the pixels of the selected image.

Our steganographic code uses strong AES encryption with 256-bit key derived with another strong crypto function PBKDF2.

What are the practical uses of steganography?


  • Undercover journalism
  • Whistleblowing
  • Bypassing highly monitored Internet (state-monitored)
  • Watermarking images

Sunday, April 5, 2020

Instagram Bot - Autoclicker Growbot for Instagram, Twitter & SoundCloud

Social Media Bot is an automatic growbot for social media sites such as Instagram, Twitter and SoundCloud.



By automatically and mass liking other users' posts, selected #hashtags, and by automatically following other users' fans you will quickly attract a group of your new followers. It's in the human nature, you are clicking likes for other, they will do it for you too.

Instagram bot tutorial




Social Media Bot is a browser extension (otherwise known as a plug-in) that allows you to automate your typical social media activities. It's available both for Firefox and for Chrome compatible browsers.

Instagram bot for Chrome


Instagram bot for Firefox



Privacy


All of the operations are performed directly from your computer and from your IP address as if you were doing it yourself. This way you can rest assured that your account will not be blocked.

More information about Social Media Bot at:

PowerShell Obfuscator & Virtualizer - How to Protect PowerShell Scripts

Looking for a PowerShell obfuscator that can protect .ps1 source without turning your automation into a maintenance nightmare? In this pos...