Just some stuff

This commit is contained in:
2025-02-09 17:42:21 +01:00
parent 855a8e8234
commit cc5f2e488b
9 changed files with 435 additions and 106 deletions

17
kernel3.7.7.src Normal file
View File

@@ -0,0 +1,17 @@
if params.len != 1 or params[0] == "-h" or params[0] == "--help" then exit("<b>Usage: "+program_path.split("/")[-1]+" [ip_address]</b>")
metaxploit = include_lib("/lib/metaxploit.so")
if not metaxploit then
metaxploit = include_lib(current_path + "/metaxploit.so")
end if
if not metaxploit then exit("Error: Can't find metaxploit library in the /lib path or the current folder")
address = params[0]
net_session = metaxploit.net_use( address )
if not net_session then exit("Error: can't connect to net session")
metaLib = net_session.dump_lib
result = metaLib.overflow("0x9F13BA6", "letefferrorif")
if not result then exit("Program ended")