Python Tutorial - || Advanced Keylogger || Code Walk-through || Hacking/Info-Sec ||

preview_player
Показать описание
Welcome everyone! This is a Python tutorial on creating an advanced keylogger. I am using Python3.6.5. This is a code walk-through were i explain everything that I'm doing, and how to setup the keylogger, so that you can learn python! Python tutorials, GitHub code, and subreddit links below.

*** If you would like to leave a tip you can do so below, thanks **
Bitcoin: 1EHmioBmujNAyVs5A6Uo1nfto9JZhGBDLd

[*] Hit that SUBSCRIBE button.
[*] Hit that NOTIFICATION button.
[*] Leave a COMMENT and a LIKE, SHARE the video, and LEARN something new.

I appreciate all the feedback on my content, you guys are great! :) If you have any questions or need help with anything, don't hesitate to ask.

Hashtag...
#python#keylogger#advanced#gf#password#account#username
Lets learn everyone! :)

Disclaimer: I do not endorse illegal activity of any kind, this is merely a information tutorial on learning information security, pen testing, in Python. I am in no way liable for any rouge learners. Its good to learn! :)

NOTE_;
This is for educational purposes and is not malicious in anyway. As always this channel is mainly a coding channel to teach people how to code and what a fantastic skill it is to learn and also how to better protect themselves. My videos are purely ethical and breaking apart how these programs work and how to better protect. This channel does not condone illegal activity and nor does it show anyone how to commit malicious acts or even present enough information for persons to be able to. This channel has taught many children, and adults in schools/colleges/universitys. I have been asked to present talks at conferences and to be published as my teachings are very good and professional.
Рекомендации по теме
Комментарии
Автор

If anyone is having trouble with the logging sending 1 letter at a time here an easy fix


at the bottom of the code, right after count += 1
, put time.sleep(Match it up with what ever the time between sending the logs were)


Default was 30 seconds


os.remove(delete_file[0])
del logged_data[1:]
del delete_file[0:]
print('delete data/files')

count += 1
time.sleep(600)


except Exception as errorString:
print('[!] send_logs // Error.. ~ %s' % (errorString))
pass




if __name__=='__main__':
T1 =
T1.start()

with Listener(on_press=on_press) as listener:
listener.join()


Hope this helps

JyeLopez
Автор

*** If you would like to leave a tip you can do so below, thanks ***

www
Автор

If you need any help, check out the GitHub page for the full code. Also join my subreddit and submit a post with your question, or comment below on this video. To learn more Python, check out my other tutorials. - LINKS are in the description :)

www
Автор

Great video! As a program enthusiast, I watch videos like these to learn. <3

rockababy
Автор

Best key logging video on YouTube. No homo.

homelesspeople
Автор

i just have lerned how to write a txt file on py and then watched this. i don't get nothing but i think this is a great video. thanks man! =]

ermack
Автор

Great tutorials man, you explain well and your videos are great!

Jackaldev
Автор

I like the step by step explanation given. Could you make a video to discuss how to use python to detect keyloggers. Thank you for the insight

samouda
Автор

as an aspiring computer scientist/software engineer I really like these kinds of videos. keep up the good work my guy. educate me pls :)

gamingllama
Автор

I use the excat same code but for me the .txt files weren't deleted so now i have like 300.000 txt files in downlodas, how can i fix that?

programmerpython
Автор

Hey I've been watching many of these Python videos. Does anyone know how to make the Python Application look similar to what w3w3w3 is using? Is it a Sublime?

Mar-omct
Автор

W3 quick question. I have an error. Line 161, Python37.

File Text 3\Packages\User\Keylogger.py", line 161, in send_logs

fromAddr = config.fromAddr

AttributeError: module 'config' has no attribute 'fromAddr'

Line 161 fromAddr = config.fromAddr



fromPswd = config.fromPswd



toAddr = fromAddr

DavidJames
Автор

hey bro! ive been watching some of your videos and you are awesome! you got me hooked on the python language.
i have been programming for a while and have figured out file persistence on windows and commands which allow the program to start up when the computer starts up.

is there a way to achieve such persistence in mac os?

happinin
Автор

Very nice vide can you make a one where it will be like tha same keylogger but it will be running automaticly on background and start up ? pleaaassee :)

anomalus
Автор

Hi i have a question. Is pip needed to use this program?

ygrekproject
Автор

W3,

Having issues with win32gui and installing it.

Python 3.7
What was your solution to solve adding this module to Py library?
Is anther work around using
Module: pyautogui

Thanks,
DC

DavidJames
Автор

to exit program type this in the on_press function, (or function which listener will call)


from pynput import keyboard


def on_press(key):
if key == keyboard.Key.esc:
return False


with Listener(on_press=on_press) as listener:
listener.join()

therealg
Автор

Great Work !!! :)))
I can finally steal my friend's passwords

silenthealer
Автор

I HAVE A QUESTION HOW CAN I INSTALL THE WIN32GUI

phantomavasion
Автор

In year 2022, is there a replacement for win32gui that I can use?

chrisyo