Made nmap a function, can now be imported as .src - First setup for get_bank details. Started tool.src, collection of automated attacks

This commit is contained in:
Ricardo Knoop
2025-02-14 12:03:10 +01:00
parent b6ef2e22d1
commit 930d9207d8
4 changed files with 21 additions and 71 deletions

View File

@@ -1,57 +0,0 @@
Password Greyhack
Tipenycizudefo4
E-mail
Vamufebotubery8
Bank
iHb1mhJQ-etrandcorpai.net
Bikasakopynehu3
t2pOGi5u-ardianaml.org
Wallet
user
NlqOHvrfgcpmjyJ
pass
XWMNImwLcGkXESD
Btc subwallet
MfGQVDCp#600
LBjLXCbGsTeAgJnVmokUdFhAwlEtvm
rshell server
ssh root@Camycahyzapera7 46.103.11.239
46.103.11.239
1222
router
Cekibadyvufibi5
attack server
ssh root@Tonorafyvazovo9 86.90.141.112
router
Vikisihypuzacu0
webhosts
Main
ssh root@Lanohulogyhyko1 62.142.200.139
router
Tecenufugicusy2
Home
router
Nygisosesunigu9
cvbnm

0
get_bank.src Normal file
View File

View File

@@ -1,20 +1,27 @@
if params.len == 0 then exit("<b>Usage: </b>nmap [IP]")
nmap = function(target_ip)
target_ip = params[0]
if not is_valid_ip(target_ip) then exit(target_ip + " is not a valid ip")
target_ip = params[0]
if not is_valid_ip(target_ip) then exit(target_ip + " is not a valid ip")
if nslookup(target_ip) == "Not found" then
exit("<color=red><b>That domain is not valid.</b></color>")
end if
if nslookup(target_ip) == "Not found" then
exit("<color=red><b>That domain is not valid.</b></color>")
end if
target_router = get_router(target_ip)
target_ports = target_router.used_ports
target_router = get_router(target_ip)
target_ports = target_router.used_ports
column = "<b>Number Type Version IP</b>"
router_data = []
column = "<b>Number Type Version IP</b>"
column = column + "\n" + "0" + " " + "kernel_router" + " " + target_router.kernel_version + " " + target_router.local_ip
for port in target_ports
column = column + "\n" + port.port_number + " " + target_router.port_info(port) + " " + port.get_lan_ip
end for
router_data.push({"port":"0", "port_info":"kernel_router", "port_info": target_router.kernel_version, "lan_ip":target_router.local_ip})
for port in target_ports
column = column + "\n" + port.port_number + " " + target_router.port_info(port) + " " + port.get_lan_ip
router_data.push({"port":port.port_number,"port_info":target_router.port_info(port),"lan_ip":port.get_lan_ip})
end for
print("\nIP Address : " + target_ip)
print(format_columns(column))
print("\nIP Address : " + target_ip)
print(format_columns(column))
return router_data
end function

0
tool.src Normal file
View File