Hola a todos, cómo están? Estaba revisando un poco de información sobre el programa de Google "bug hunter" y me estaba preguntando que bases o skills necesito o me recomiendan para comenzar?
Graciassssss
Graciassssss
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú[E: Release file for http://dl.google.com/linux/chrome/deb/dists/stable/InRelease is not valid yet (invalid for another 23min 25s). Updates for this repository will not be applied.
E: Release file for https://packages.microsoft.com/repos/vscode/dists/stable/InRelease is not valid yet (invalid for another 4h 30min 48s). Updates for this repository will not be applied.
date -s "dd/mm/yyyy hh:mm:ss"
Cita de: Tirenex en 16 Octubre 2021, 18:08 PM
Les dejo el link para que prueben qué le falta, ya que yo lo tengo probado y no sé al 100% si funcionará
http://www.mediafire.com/folder/hvh44yd4u0uw8hw,gq5xoa2e2jdctdo/shared
import os
import subprocess
import pathlib
import random
import time
from colorama import Fore
path = pathlib.Path()
ips_file_path = path / "ips_file" / "ips.txt"
ips_file_working_path = path / "ips_file" / "ips_working.txt"
clear_screen = lambda :(os.system("clear"))
one_second = 1
def ping(host) -> bool:
command = ['ping', '-c', '1', host]
response = subprocess.call(command,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
if response == 0:
return True
else:
return False
def ip_tester() -> None:
print("Testing ip's")
print("-be patient!-")
ips_file = open(ips_file_path,"r")
try:
ips_file_working = open(ips_file_working_path,"a")
except FileNotFoundError:
ips_file_working = open(ips_file_working_path,"w")
ips = ips_file.readlines()
len_ips = len(ips)
ip_counter = 0
for ip in ips:
ip_counter = ip_counter + 1
random_ip_chooser = random.choice(ips)
for x in random_ip_chooser:
random_ip_chooser = random_ip_chooser.replace("\n","")
ip_checker = ping(random_ip_chooser)
if ip_checker == 1:
print(f"[IP:{ip_counter}] {random_ip_chooser}" ,"STATE",Fore.GREEN + ":UP!")
print('\033[39m')
ips_file_working.writelines(random_ip_chooser + "\n")
elif ip_checker == 0:
print(f"[IP:{ip_counter}] {random_ip_chooser}","STATE", Fore.RED + ":DOWN")
print('\033[39m')
import random
import pathlib
import os
path = pathlib.Path()
ips_file_path = path / "ips_file" / "ips.txt"
ips_file_working_path = path / "ips_file" / "ips_working.txt"
clear_screen = lambda :(os.system("clear"))
def success():
print("Success!")
input("<ENTER>")
def file_ips() -> None:
try:
ip_file = open(ips_file_path,"r")
ips_lines = ip_file.readlines()
line_counter = 0
for ip_line in ips_lines:
line_counter = line_counter + 1
if line_counter <= 1:
pass
else:
print("The file already has ips generated, do you want to empty it?")
op = input("s/n: ").lower()
if op == "s":
ip_file = open(ips_file_path,"w")
success()
else:
pass
ip_file = open(ips_file_path,"a")
print("How many ips you want to generate?")
ip_range = int(input("Range: "))
for ip in range(0,ip_range + 1):
random_ip = f"{random.randint(0,255)}.{random.randint(0,255)}.{random.randint(0,255)}.{random.randint(0,255)}"
print(random_ip)
ip_file.writelines(random_ip + "\n")
print(f"GENERATED IPS {ip}")
success()
except FileNotFoundError:
print("The file does not exist, do you want to create it?")
os = input("s/n: ").lower()
if os == "s":
ip_file = open(ips_file_path,"w")
success()
clear_screen()
print("Select the option 1 again!")
else:
print("Start the script again!")
clear_screen()
def ips_working_file() -> None:
try:
ip_file = open(ips_file_working_path,"r")
ips_lines = ip_file.readlines()
line_counter = 0
for ip_line in ips_lines:
line_counter = line_counter + 1
if line_counter <= 1:
pass
except FileNotFoundError:
print("The file does not exist, do you want to create it?")
os = input("s/n: ").lower()
if os == "s":
ip_file = open(ips_file_working_path,"w")
success()
clear_screen()
from subprocess import check_output
from ip_tester import *
from ips_generator import *
if __name__ == "__main__":
clear_screen()
check_path = pathlib.Path("ip_public_browser/ips_file/").exists()
print(check_path)
if check_path == False:
try:
os.mkdir("ips_file")
except FileExistsError:
pass
else:
pass
while True:
print(" ██████╗░██╗░░░██╗██████╗░██╗░░░░░██╗░█████╗░ ██╗██████╗░")
print(" ██╔══██╗██║░░░██║██╔══██╗██║░░░░░██║██╔══██╗ ██║██╔══██╗")
print(" ██████╔╝██║░░░██║██████╦╝██║░░░░░██║██║░░╚═╝ ██║██████╔╝")
print(" ██╔═══╝░██║░░░██║██╔══██╗██║░░░░░██║██║░░██╗ ██║██╔═══╝░")
print(" ██║░░░░░╚██████╔╝██████╦╝███████╗██║╚█████╔╝ ██║██║░░░░░")
print(" ╚═╝░░░░░░╚═════╝░╚═════╝░╚══════╝╚═╝░╚════╝ ╚═╝╚═╝░░░░░ ", "\n")
print(" ░█████╗░██████╗░███████╗░█████╗░████████╗░█████╗░██████╗░")
print(" ██╔══██╗██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔══██╗██╔══██╗")
print(" ██║░░╚═╝██████╔╝█████╗░░███████║░░░██║░░░██║░░██║██████╔╝")
print(" ██║░░██╗██╔══██╗██╔══╝░░██╔══██║░░░██║░░░██║░░██║██╔══██╗")
print(" ╚█████╔╝██║░░██║███████╗██║░░██║░░░██║░░░╚█████╔╝██║░░██║")
print(" ░╚════╝░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝")
print()
print("1: Ip Files")
print("2: Ip tester")
print("e: Exit")
op = input("Option: ").upper()
if op == "1":
while True:
clear_screen()
print("What type of file do you want to generate?" ,"\n","\n")
print("1 : Ips for testing")
print("2 : To save ips")
print("b : Back", "\n")
op = str(input("Option: ")).lower()
if op == "1":
file_ips()
elif op == "2":
ips_working_file()
elif op == "b":
clear_screen()
break
elif op == "2":
clear_screen()
ip_tester()
elif op == "e":
print("Thanks for use!")
break
if ip_checker == 1:
print(f"[IP:{ip_counter}] {random_ip_chooser}" ,"STATE",Fore.GREEN + ":UP!")
print('\033[39m')
ips_file_working.writelines(random_ip_chooser + "\n")
for ip in ips:
ip_counter = ip_counter + 1
random_ip_chooser = random.choice(ips)
for x in random_ip_chooser:
random_ip_chooser = random_ip_chooser.replace("\n","")
ip_checker = ping(random_ip_chooser)
ips_file_working = open(ips_file_working_path,"a")
Cita de: BloodSharp en 15 Septiembre 2021, 03:09 AM
Metasploitable 3 si mal no tengo entendido es un Windows 7 / 2008 el cuál debería tener la vulnerabilidad de eternalblue si recuerdo haber leído alguna vez por internet...
[youtube=640,360]https://www.youtube.com/watch?v=_NBDn-0D4MQ[/youtube]
Por otra parte te dejo Metasploitable 2 el cuál tiene es un Ubuntu viejo con al menos 3 puertos al que se le pueden explotar y hacer un RCE (vsftpd, smb y unreal irc).
B#