B16f00t / whapa

WhatsApp Parser Toolset v1.59
1.13k stars 263 forks source link

passwords with special characters are getting interpolated by configparser #66

Closed RMHogervorst closed 4 years ago

RMHogervorst commented 4 years ago

The configparser does interpolation of values automatically and it messes up the process when you have special characters.

A solution is to initialize the class with interpolation set to none, example whagodri.py line 55

def getConfigs():
    global gmail, passw, celnumbr
    config = ConfigParser(interpolation=None)
B16f00t commented 4 years ago

Thanks for the advice, I'll change it. Fix v1.21