Skip to content
View alexandrehrk's full-sized avatar
🤓
🤓

Block or report alexandrehrk

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. linux linux Public

    Guia de Linux para iniciantes: Comandos fundamentais do Linux/Unix para o aprendiz de linha de comando Linux/Unix. Se você for experiente com Linux/Unix: você provavelmente já dominou estes comando…

    1

  2. simple port scan simple port scan
    1
    #!/usr/bin/env python
    2
    import socket
    3
    import subprocess
    4
    import sys
    5
    from datetime import datetime
  3. bloqueador de navegador em horario p... bloqueador de navegador em horario pre-estabelecido e sites especificados
    1
    import time
    2
    from datetime import datetime as dt
    3
    hostsPath=r"C:\Windows\System32\drivers\etc\hosts"
    4
    redirect="127.0.0.1"
    5
    #Defina os dominios a bloquear
  4. uma pequena barra de progresso em py... uma pequena barra de progresso em python
    1
    from tqdm import tqdm
    2
    from time import sleep
    3
    
                  
    4
    for i in tqdm(range(100)):
    5
        sleep(0.2)
  5. keyloger.py keyloger.py
    1
    from pynput.keyboard import Listener
    2
    
                  
    3
    def writetofile(key):
    4
        keydata = str(key)
    5
        keydata = keydata.replace("'", "")
  6. pequena pesquisa de dominios web pequena pesquisa de dominios web
    1
    import whois
    2
    
                  
    3
    dominio = input("Pesquise o dominio: ")
    4
    def is_registered(domain_name):
    5
        """